/* ============================================================
   UNSAID — Single-page LP
   ============================================================ */

:root {
  --black: #000;
  --ink: #0a0a0a;
  --ink-2: #111;
  --ink-3: #181818;
  --line: #2a2a2a;
  --line-soft: #1a1a1a;
  --paper: #f4f1ea;
  --paper-2: #ece8df;
  --paper-3: #e3ddd0;
  --paper-line: rgba(10,10,10,.14);
  --gold: #C8A96E;
  --gold-bright: #D9BC85;
  --gold-deep: #8d7549;
  --muted: #8a8a8a;
  --muted-2: #5a5a5a;

  --display: "Bodoni Moda", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;
  --jp-serif: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --jp-sans:  "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

  --container: 1280px;
  --gutter: 32px;
  --transition: 320ms cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: #000; scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #000; }
button { font-family: inherit; cursor: pointer; }

.jp-serif { font-family: var(--jp-serif); }
.jp-sans  { font-family: var(--jp-sans); letter-spacing: .03em; }
.gold     { color: var(--gold); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition), border-color var(--transition);
}
.nav-logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .12em;
}
.nav-links {
  display: flex; gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  color: rgba(255,255,255,.78);
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--gold); color: #000; }
.nav-cta .arrow { font-size: 14px; }

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  background: transparent; border: 1px solid rgba(255,255,255,.2);
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 8px; right: 8px; height: 1px; background: #fff;
  transition: transform var(--transition), top var(--transition);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 21px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn .arrow { font-size: 14px; transition: transform var(--transition); }
.btn:hover .arrow { transform: translate(2px,-2px); }
.btn-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-lg { padding: 20px 36px; font-size: 13px; }

.section-light .btn-ghost { color: #0a0a0a; border-color: rgba(10,10,10,.3); }
.section-light .btn-ghost:hover { border-color: #0a0a0a; background: rgba(10,10,10,.04); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 64px 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: #000;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(200,169,110,.10), transparent 50%),
    radial-gradient(ellipse at 75% 65%, rgba(200,169,110,.06), transparent 55%),
    linear-gradient(135deg, #1a1410 0%, #000 60%);
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
  /* 動画が読み込めない時は透過して下のhero-bg-imgを見せる */
}
.hero-bg-grad {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,.7) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, transparent 35%, transparent 65%, rgba(0,0,0,.55) 100%);
}
.hero-bg-grain {
  position: absolute; inset: 0;
  z-index: 3;
  opacity: .14;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-meta-l, .hero-meta-r {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.45);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
.hero-meta-l { left: 24px; }
.hero-meta-r { right: 24px; }
.hero-meta-l .line, .hero-meta-r .line {
  width: 1px; height: 40px; background: rgba(255,255,255,.2);
  writing-mode: initial;
}

.hero-inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
}
.section-light .eyebrow { color: rgba(10,10,10,.5); }
.eyebrow.gold { color: var(--gold); }

.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 160px);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0 0 36px;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding: .04em 0;
}
.hero-title .line > span {
  display: inline-block;
  transform: translateY(102%);
  animation: heroLineUp 1.1s cubic-bezier(.2,.85,.2,1) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: .15s; }
.hero-title .line:nth-child(2) > span { animation-delay: .30s; }
.hero-title .line:nth-child(3) > span { animation-delay: .45s; }
@keyframes heroLineUp {
  from { transform: translateY(102%); }
  to   { transform: translateY(0); }
}

.hero-tagline {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: .02em;
  opacity: 0;
  animation: fadeUp .9s .8s cubic-bezier(.2,.85,.2,1) forwards;
}
.hero-tagline-em {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  background-image: linear-gradient(transparent 78%, rgba(200,169,110,.18) 78%);
  padding: 0 .08em;
}
.hero-sub {
  max-width: 640px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,.78);
  margin: 0 0 40px;
  opacity: 0;
  animation: fadeUp .9s 1s cubic-bezier(.2,.85,.2,1) forwards;
}
.hero-sub-fine {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--jp-serif);
  font-style: italic;
  font-size: .92em;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0;
  animation: fadeUp .9s 1.15s cubic-bezier(.2,.85,.2,1) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 36px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, rgba(255,255,255,.5), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute; top: -20px; left: 0; right: 0;
  height: 20px;
  background: var(--gold);
  animation: scrollDot 2s linear infinite;
}
@keyframes scrollDot {
  0%   { top: -20px; }
  100% { top: 56px; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative;
  padding: 140px 0 80px;
}
.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-light {
  background: var(--paper);
  color: var(--ink);
}

.sec-head {
  margin-bottom: 80px;
  max-width: 920px;
}
.sec-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 24px;
}
.sec-num.gold { color: var(--gold); }
.section-light .sec-num { color: rgba(10,10,10,.45); }
.section-light .sec-num.gold { color: var(--gold-deep); }

.display-md {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}
.display-lg {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 132px);
  line-height: .92;
  letter-spacing: -.025em;
  margin: 0;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
  text-transform: none;
}
.section-light .display-md .gold,
.section-light .display-lg .gold { color: var(--gold-deep); }

.sec-desc {
  margin-top: 24px;
  max-width: 600px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,.7);
}
.section-light .sec-desc { color: rgba(10,10,10,.6); }

.sec-cue {
  display: block;
  text-align: center;
  margin: 80px auto 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.sec-cue:hover { color: var(--gold); }
.section-light .sec-cue { color: rgba(10,10,10,.4); }
.section-light .sec-cue:hover { color: var(--gold-deep); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-lead { max-width: 560px; }
.lead {
  font-size: 18px;
  line-height: 2.1;
  color: var(--ink);
}
.lead strong { color: var(--gold-deep); font-weight: 600; }

.about-points {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 28px;
}
.about-points li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--paper-line);
}
.about-points li:last-child { border-bottom: 0; }
.point-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  color: var(--gold-deep);
  line-height: 1;
}
.about-points p { margin: 0; font-size: 15px; line-height: 1.9; color: rgba(10,10,10,.78); }
.about-points p strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   STRENGTH
   ============================================================ */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strength-card {
  padding: 56px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background var(--transition);
}
.strength-card:last-child { border-right: 0; }
.strength-card:hover { background: rgba(200,169,110,.04); }
.card-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 28px;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}
.card-title {
  font-family: var(--jp-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 20px;
  letter-spacing: .02em;
}
.strength-card p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,.72);
  margin: 0 0 24px;
}
.card-tags {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.card-tags li {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding: 6px 10px;
  border: 1px solid var(--line);
}

.strength-stats {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.stat { display: flex; flex-direction: column; gap: 12px; }
.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  color: var(--gold);
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}
.stat-num sup {
  font-size: .42em;
  vertical-align: super;
  margin-left: 2px;
  color: var(--gold-bright);
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.svc-card {
  padding: 48px 40px 56px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background var(--transition);
  display: flex; flex-direction: column;
}
.svc-card:hover { background: rgba(200,169,110,.04); }
.svc-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.svc-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0 0 20px;
  text-transform: uppercase;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}
.svc-desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,.72);
  margin: 0 0 24px;
}
.svc-list {
  list-style: none;
  margin: 0; padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.svc-list li {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  position: relative;
  padding-left: 16px;
}
.svc-list li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 6px; height: 1px;
  background: var(--gold);
}

/* ============================================================
   WORKS
   ============================================================ */
.section-works { padding-bottom: 60px; }
.works-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.works-rail {
  margin: 60px 0 32px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 var(--gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.works-rail::-webkit-scrollbar { height: 6px; }
.works-rail::-webkit-scrollbar-track { background: var(--ink-2); }
.works-rail::-webkit-scrollbar-thumb { background: var(--gold-deep); }
.works-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 4px 0 24px;
}
.work {
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 460px);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  transition: transform var(--transition);
}
.work:hover { transform: translateY(-4px); }
.work-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 24px;
  overflow: hidden;
}
.work-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,169,110,.18), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 6px);
  pointer-events: none;
}
.work-cat {
  position: relative; z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--gold);
  background: rgba(0,0,0,.4);
  padding: 6px 10px;
  border: 1px solid rgba(200,169,110,.35);
}
.work-meta {
  padding: 20px 4px 0;
}
.work-meta h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.005em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.work-meta p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.works-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.works-foot-note { font-size: 13px; color: rgba(255,255,255,.6); margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.section-pricing { padding-bottom: 100px; }
.section-pricing .sec-desc { color: rgba(255,255,255,.78); }
.section-pricing .sec-desc strong { color: #fff; font-weight: 700; border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.pricing-note {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(200,169,110,.08);
  border-left: 2px solid var(--gold);
  font-size: 12.5px;
  line-height: 1.85;
  color: rgba(255,255,255,.72);
}

.pricing-compare {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 96px;
}
.compare-col {
  padding: 40px 36px 32px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.compare-them {
  background: rgba(255,255,255,.015);
  position: relative;
  opacity: .92;
}
.compare-them::after {
  content: "";
  position: absolute; top: 50%; right: -1px; width: 1px; height: 60%;
  transform: translateY(-50%);
  background: var(--line);
}
.compare-us {
  background:
    linear-gradient(180deg, rgba(200,169,110,.14) 0%, rgba(200,169,110,.04) 40%, rgba(255,255,255,.02) 100%);
  border: 2px solid var(--gold);
  position: relative;
  box-shadow: 0 16px 56px rgba(0,0,0,.45);
}
.compare-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 16px;
}
.compare-us .compare-label { color: var(--gold); }
.compare-headline {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 24px;
  color: #fff;
  letter-spacing: .02em;
}
.compare-headline .big {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6em;
  letter-spacing: -.01em;
  margin: 0 4px;
}
.compare-headline .gold { color: var(--gold); }

.compare-list {
  list-style: none;
  margin: 0; padding: 0 0 24px;
  flex: 1;
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.compare-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid var(--line);
}
.compare-list .add { letter-spacing: 0; }
.compare-list .cost { font-family: var(--mono); color: rgba(255,255,255,.5); font-size: 12px; }
.compare-list .add.inc { color: var(--gold-bright); font-weight: 600; }

.compare-total {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.compare-total-label {
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
}
.compare-total-amt {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  letter-spacing: -.01em;
}
.compare-total-amt sup {
  font-size: .55em;
  vertical-align: super;
  margin-left: 2px;
  color: #fff;
}
.compare-total-us {
  border-top-color: var(--gold);
}
.compare-total-us .compare-total-amt {
  color: var(--gold);
  font-size: 42px;
}

.compare-vs {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .04em;
}

/* Plans */
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.plan {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  padding: 40px 32px 36px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
  background: rgba(200,169,110,.04);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.plan-feature {
  border: 2px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(200,169,110,.18) 0%, rgba(200,169,110,.04) 35%, rgba(255,255,255,.02) 100%);
  box-shadow: 0 16px 56px rgba(0,0,0,.45), 0 0 0 1px rgba(200,169,110,.15) inset;
}
.plan-feature:hover {
  background:
    linear-gradient(180deg, rgba(200,169,110,.22) 0%, rgba(200,169,110,.06) 35%, rgba(255,255,255,.03) 100%);
}
.plan-badge {
  position: absolute; top: -1px; right: 24px;
  transform: translateY(-50%);
  background: var(--gold);
  color: #000;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  padding: 6px 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.plan-head {
  margin-bottom: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.plan-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--gold-deep);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.plan-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  text-transform: none;
  color: #fff;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}
.plan-sub {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,.7);
  margin: 0;
}

.plan-price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 24px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan-amt {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -.01em;
  color: #fff;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}
.plan-feature .plan-amt { color: var(--gold); }
.plan-amt-note { font-size: 12px; color: rgba(255,255,255,.55); }

.plan-list {
  list-style: none;
  margin: 0 0 24px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.plan-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}
.plan-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}
.plan-feature .plan-list li::before { color: var(--gold-bright); }

.plan-note {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

/* Add-on menu (YouTube / 単発) */
.pricing-addon {
  margin: 0 0 56px;
  padding: 40px 40px 36px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  position: relative;
}
.addon-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 32px;
  row-gap: 4px;
  align-items: baseline;
}
.addon-eyebrow {
  grid-row: 1;
  grid-column: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0;
}
.addon-title {
  grid-row: 1;
  grid-column: 2;
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.005em;
  margin: 0;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}
.addon-sub {
  grid-row: 2;
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,.66);
  margin: 8px 0 0;
}
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.addon-item {
  padding: 28px 28px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), background var(--transition);
}
.addon-item:hover {
  border-color: var(--gold);
  background: rgba(200,169,110,.04);
}
.addon-item-head {
  display: flex; align-items: center; gap: 12px;
}
.addon-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 5px 9px;
  font-weight: 600;
}
.addon-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
}
.addon-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,.66);
  flex: 1;
}
.addon-price {
  display: flex; align-items: baseline; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.addon-amt {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: -.01em;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}
.addon-unit { font-size: 12px; color: rgba(255,255,255,.55); }

@media (max-width: 720px) {
  .pricing-addon { padding: 28px 22px 24px; }
  .addon-head { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
}

.pricing-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 36px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
}
.pricing-foot-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.95;
  color: rgba(255,255,255,.7);
}

@media (max-width: 1100px) {
  .pricing-compare { grid-template-columns: 1fr; }
  .compare-vs { padding: 16px 0; }
  .compare-them::after { display: none; }
  .pricing-plans { grid-template-columns: 1fr; }
  .pricing-foot { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   VOICE
   ============================================================ */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  margin: 0;
  padding: 36px 32px 32px;
  background: #fff;
  border: 1px solid var(--paper-line);
  display: flex; flex-direction: column; gap: 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.voice-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.voice-card blockquote {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .01em;
}
.voice-card .voice-jp {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  line-height: 2;
  color: rgba(10,10,10,.72);
  font-weight: 400;
}
.voice-card figcaption {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--paper-line);
  font-size: 12px;
  color: rgba(10,10,10,.6);
  letter-spacing: .04em;
}
.voice-card figcaption strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   FLOW
   ============================================================ */
.flow-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.flow-step {
  padding: 40px 28px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background var(--transition);
}
.flow-step:hover { background: rgba(200,169,110,.04); }
.flow-num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14;
}
.flow-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.flow-step p {
  font-size: 13px;
  line-height: 1.95;
  color: rgba(255,255,255,.72);
  margin: 0;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  display: flex; flex-direction: column;
}
.team-card-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
.team-card-link .team-photo {
  transition: var(--transition);
}
.team-card-link:hover .team-photo {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
}
.section-light .team-card-link:hover .team-photo {
  box-shadow: 0 12px 36px rgba(10, 10, 10, .12);
}
.team-card-cue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
}
.section-light .team-card-cue { color: var(--gold-deep); }
.team-card-link:hover .team-card-cue {
  opacity: 1;
  transform: translateX(0);
}
.team-card-link:hover .team-name {
  color: var(--gold);
}
.section-light .team-card-link:hover .team-name {
  color: var(--gold-deep);
}
.team-photo {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.team-photo-ph {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(200,169,110,.18), transparent 50%),
    linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}
.team-photo-ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 4px);
}
.team-photo-art {
  background-color: #fffdf8;
  background-size: 70% auto;
  background-position: center;
  background-repeat: no-repeat;
  border-color: var(--paper-line);
}
.team-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  min-height: calc(1.7em * 3);
  display: flex;
  align-items: flex-end;
}
.team-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.005em;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.team-name-jp {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: 0 0 14px;
}
.team-bio {
  font-size: 12.5px;
  line-height: 1.95;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.team-network {
  margin-top: 64px;
  padding: 36px 36px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.team-network p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,.78);
}
.team-network strong { color: var(--gold); font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  position: relative;
  background: #000;
  padding: 160px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.contact-bg { position: absolute; inset: 0; z-index: -1; }
.contact-bg-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,169,110,.15), transparent 50%),
    radial-gradient(ellipse at 25% 75%, rgba(200,169,110,.07), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}
.contact-bg-grain {
  position: absolute; inset: 0;
  opacity: .12;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.contact-head { text-align: center; max-width: 920px; margin: 0 auto 80px; }
.contact-head .sec-num { display: block; }
.contact-tag {
  margin-top: 28px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,.78);
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-side { display: flex; flex-direction: column; gap: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 6px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.contact-info-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
}
.contact-info a, .contact-info span { font-size: 13px; line-height: 1.9; color: #fff; }
.contact-info a { transition: color var(--transition); }
.contact-info a:hover { color: var(--gold); }

.contact-form {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.form-field .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--jp-sans);
  font-size: 14px;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  outline: none;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--gold); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(-45deg, transparent 50%, var(--gold) 50%); background-position: calc(100% - 12px) 18px, calc(100% - 6px) 18px; background-size: 6px 6px; background-repeat: no-repeat; }
.form-field select option { color: #000; }
.checkbox-row { display: flex; align-items: center; gap: 10px; }
.checkbox-row label {
  font-family: var(--jp-sans);
  font-size: 13px;
  color: rgba(255,255,255,.78);
  letter-spacing: 0; text-transform: none;
}
.checkbox-row label a { color: var(--gold); border-bottom: 1px solid currentColor; }
.form-submit { margin-top: 36px; display: flex; justify-content: flex-end; }

.contact-thanks {
  display: none;
  grid-column: 1 / -1;
  padding: 80px 40px;
  border: 1px solid var(--gold);
  text-align: center;
  background: rgba(200,169,110,.04);
}
.contact-thanks h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -.02em;
  color: var(--gold);
  margin: 0 0 16px;
}
.contact-thanks p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 2; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.foot-logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: .08em;
  margin: 0 0 16px;
}
.foot-desc, .foot-addr {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  line-height: 2;
  margin: 0;
}
.foot-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.foot-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-nav a {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.foot-nav a:hover { color: var(--gold); }
.foot-mail {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-size: 14px;
  border-bottom: 1px solid currentColor;
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.foot-tag {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  background: var(--gold);
  color: #000;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 4px 14px rgba(200,169,110,.25);
  transition: background var(--transition), transform var(--transition);
}
.float-cta:hover { background: var(--gold-bright); transform: translateY(-2px); }
.float-cta .arrow { font-size: 14px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.85,.2,1), transform .9s cubic-bezier(.2,.85,.2,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.85,.2,1), transform .9s cubic-bezier(.2,.85,.2,1); }
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: .45s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .strength-grid { grid-template-columns: 1fr; border-left: 1px solid var(--line); }
  .strength-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .strength-card:last-child { border-bottom: 0; }
  .strength-stats { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: 0; }
  .voice-grid { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .works-head { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 120px 24px 100px; }
  .hero-meta-l, .hero-meta-r { display: none; }
  .section { padding: 100px 0 60px; }
  .container { padding: 0 24px; }
  .sec-head { margin-bottom: 56px; }
  .strength-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .flow-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .foot-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .float-cta { right: 16px; bottom: 16px; padding: 14px 18px; font-size: 11px; }
  .float-cta-text { display: inline; }
  .nav-cta { display: none; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}

/* sub-section header (merged sub-block within a section) */
.sub-sec-head {
  margin-top: 120px;
  padding-top: 64px;
  border-top: 1px solid var(--paper-line);
}
.section-dark .sub-sec-head { border-top-color: var(--line); }

/* ============================================================
   THEME OVERRIDES — sections flipped to light/dark
   ============================================================ */

/* STRENGTH on light */
.section-light .strength-grid { border-top-color: var(--paper-line); border-bottom-color: var(--paper-line); }
.section-light .strength-card { border-right-color: var(--paper-line); border-bottom-color: var(--paper-line); }
.section-light .strength-card:hover { background: rgba(200,169,110,.06); }
.section-light .strength-card p { color: rgba(10,10,10,.72); }
.section-light .card-num { color: var(--gold-deep); }
.section-light .card-tags li { color: rgba(10,10,10,.6); border-color: var(--paper-line); }
.section-light .strength-stats { border-top-color: var(--paper-line); }
.section-light .stat-num { color: var(--gold-deep); }
.section-light .stat-num sup { color: var(--gold); }
.section-light .stat-label { color: rgba(10,10,10,.6); }

/* SERVICES on light */
.section-light .svc-grid { border-top-color: var(--paper-line); border-left-color: var(--paper-line); }
.section-light .svc-card { border-right-color: var(--paper-line); border-bottom-color: var(--paper-line); }
.section-light .svc-card:hover { background: rgba(200,169,110,.06); }
.section-light .svc-num { color: var(--gold-deep); }
.section-light .svc-desc { color: rgba(10,10,10,.72); }
.section-light .svc-list { border-top-color: var(--paper-line); }
.section-light .svc-list li { color: rgba(10,10,10,.78); }
.section-light .svc-list li::before { background: var(--gold-deep); }

/* WORKS on light */
.section-light .works-foot { border-top-color: var(--paper-line); }
.section-light .works-foot-note { color: rgba(10,10,10,.6); }
.section-light .works-rail::-webkit-scrollbar-track { background: var(--paper-3); }

/* VOICE on dark */
.section-dark .voice-card { background: rgba(255,255,255,.025); border-color: var(--line); }
.section-dark .voice-card:hover { border-color: var(--gold); }
.section-dark .voice-card blockquote { color: #fff; }
.section-dark .voice-card .voice-jp { color: rgba(255,255,255,.72); }
.section-dark .voice-card figcaption { color: rgba(255,255,255,.6); border-top-color: var(--line); }
.section-dark .voice-card figcaption strong { color: #fff; }

/* FLOW on light */
.section-light .flow-list { border-top-color: var(--paper-line); border-left-color: var(--paper-line); }
.section-light .flow-step { border-right-color: var(--paper-line); border-bottom-color: var(--paper-line); }
.section-light .flow-step:hover { background: rgba(200,169,110,.06); }
.section-light .flow-num { color: var(--gold-deep); }
.section-light .flow-step p { color: rgba(10,10,10,.72); }

/* TEAM on light */
.section-light .team-photo { border-color: var(--paper-line); }
.section-light .team-name { color: var(--ink); }
.section-light .team-name-jp { color: rgba(10,10,10,.6); }
.section-light .team-bio { color: rgba(10,10,10,.7); }
.section-light .team-network { background: rgba(141,117,73,.05); border-color: var(--paper-line); }
.section-light .team-network p { color: rgba(10,10,10,.78); }
.section-light .team-network strong { color: var(--gold-deep); }

/* ============================================================
   NAV — scrolled (light)
   ============================================================ */
.nav.is-light {
  background: rgba(244,241,234,.85);
  border-bottom-color: rgba(10,10,10,.08);
  color: var(--ink);
}
.nav.is-light .nav-logo,
.nav.is-light .nav-links a { color: var(--ink); }
.nav.is-light .nav-links a:hover { color: var(--gold-deep); }
.nav.is-light .nav-cta { color: var(--gold-deep); border-color: var(--gold-deep); }
.nav.is-light .nav-cta:hover { background: var(--gold-deep); color: #fff; }
