/* ╔══════════════════════════════════════════════════════════════════╗
   ║  ICTC LANDING PAGE — STYLES                                       ║
   ║  Visual system:                                                   ║
   ║    palette : ink navy + paper cream + brand blue                  ║
   ║    type    : Shippori Mincho B1 (display JP) / Noto Sans JP /     ║
   ║              Inter (display EN, numerals)                         ║
   ╚══════════════════════════════════════════════════════════════════╝ */

:root {
  /* — colors — */
  --paper      : #f6f4ef;        /* warm off-white */
  --paper-2    : #edeae3;        /* deeper cream */
  --rule       : rgba(40,32,28,.12);
  --ink        : #171b21;        /* near-black navy */
  --ink-2      : #262d36;
  --navy       : #2a323c;        /* brand navy */
  --navy-2     : #333c48;
  --blue       : #d6301b;        /* primary brand blue */
  --blue-2     : #e8481f;
  --sky        : #f4826a;        /* pyramid tip */
  --gold       : #b8965a;        /* premium accent */
  --gold-2     : #c8a86b;
  --paper-faint: #fbfaf7;

  /* — type — */
  --f-mincho   : "Shippori Mincho B1", "Hiragino Mincho ProN", serif;
  --f-sans     : "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --f-en       : "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --w-max      : 1320px;
  --pad-x      : clamp(28px, 5vw, 88px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
em  { font-style: normal; }

/* ── Grain overlay ───────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .12;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  TOP NAV                                                          ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 16px var(--pad-x);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(246,244,239,.82);
  border-bottom: 1px solid rgba(40,32,28,.07);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.topbar.on-dark {
  background: rgba(18,22,28,.55);
  color: #eceff3;
  border-bottom-color: rgba(255,255,255,.06);
}
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand-mark {
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.02em;
}
.brand-sub {
  font-family: var(--f-en);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: currentColor; opacity: .55;
}
.nav {
  display: flex; gap: clamp(14px, 1.6vw, 28px);
  font-size: 13px; font-weight: 500;
}
.nav a {
  position: relative;
  opacity: .76;
  transition: opacity .2s;
}
.nav a:hover { opacity: 1; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: currentColor; transform: scaleX(0);
  transform-origin: left; transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px 11px 20px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px; font-weight: 600;
  border-radius: 999px;
  transition: transform .2s, background .2s;
}
.cta-pill:hover { background: var(--navy); transform: translateY(-1px); }
.topbar.on-dark .cta-pill { background: var(--paper); color: var(--ink); }
.topbar.on-dark .cta-pill:hover { background: #fff; }

@media (max-width: 920px) {
  .nav { display: none; }
}

/* ── Side rail ───────────────────────────────────────────────────── */
.rail {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  z-index: 60;
}
.rail ol { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.rail li {
  position: relative;
  font-family: var(--f-en); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(18,22,28,.4);
  padding-right: 28px;
  text-align: right;
  cursor: pointer;
  transition: color .3s, padding .3s;
}
.rail li::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 16px; height: 1px; background: currentColor;
  transition: width .3s;
}
.rail li.active { color: var(--blue); padding-right: 38px; font-weight: 700; }
.rail li.active::after { width: 26px; background: var(--blue); height: 2px; }
.rail.on-dark li { color: rgba(232,236,246,.4); }
.rail.on-dark li.active { color: #fff; }
.rail.on-dark li.active::after { background: var(--sky); }
@media (max-width: 1100px) { .rail { display: none; } }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  REVEAL                                                           ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1),
              transform 1s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.on { opacity: 1; transform: none; }

/* ── shared bits ─────────────────────────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-en);
  font-size: 11px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.kicker::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}
section h2 {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.22;
  letter-spacing: .01em;
  color: var(--ink);
}
section h2 em {
  color: var(--blue);
  font-style: normal;
}
.on-dark h2, section.dark h2 { color: #f4f3ef; }
section.dark h2 em { color: var(--sky); }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  HERO                                                             ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--pad-x) 80px;
  background:
    radial-gradient(120% 80% at 70% 10%, #2b333e 0%, #171b21 55%, #12151a 100%);
  color: #eceff3;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,22,28,.4) 0%, rgba(18,22,28,.85) 80%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(180deg, rgba(255,255,255,.025) 0 1px, transparent 1px 80px);
  background-blend-mode: normal;
  z-index: 0;
}
.hero-bg::after {
  /* faux cityscape silhouette: layered bars */
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(14,17,21,.65) 100%),
    /* stripe of mid-rise buildings */
    linear-gradient(180deg, transparent 55%, #20262e 55% 70%, #171c22 70% 78%, #20262e 78% 88%, #12151a 88% 100%);
  opacity: .9;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 25% 70%, transparent 0%, rgba(14,17,21,.55) 100%);
  z-index: 1;
}
.hero-wordmark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-en);
  font-weight: 900;
  font-size: clamp(280px, 36vw, 620px);
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,170,150,.12);
  text-stroke: 1px rgba(255,170,150,.12);
  z-index: 1;
  user-select: none;
  pointer-events: none;
  line-height: .85;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--w-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 200px);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-en); font-size: 11px;
  letter-spacing: .26em; text-transform: uppercase;
  font-weight: 600;
  color: #f6c3b6;
  padding: 8px 18px;
  border: 1px solid rgba(246,195,182,.25);
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 38px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--sky); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(244,130,106,.18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(244,130,106,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(244,130,106,0); }
}

.hero-h {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 1.22;
  letter-spacing: .01em;
  color: #f4f4ef;
  margin-bottom: 36px;
}
.hero-h-line { display: block; }
.hero-h em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 65%, #d6301b 65%, #d6301b 88%, transparent 88%);
  padding: 0 .12em;
}
.hero-sub {
  font-size: 17px;
  line-height: 2.0;
  color: #c6ccd4;
  max-width: 640px;
  margin-bottom: 56px;
  font-weight: 400;
}
.hero-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 96px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-size: 14px; font-weight: 600;
  border-radius: 999px;
  transition: transform .25s, background .25s, border-color .25s;
}
.btn.primary {
  background: var(--paper);
  color: var(--ink);
}
.btn.primary:hover { background: #fff; transform: translateY(-2px); }
.btn.ghost {
  background: transparent;
  color: #eceff3;
  border: 1px solid rgba(232,236,246,.3);
}
.btn.ghost:hover { border-color: #eceff3; transform: translateY(-2px); }

.hero-scroll {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-en);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(232,236,246,.5);
}
.hero-scroll-line {
  display: block; width: 80px; height: 1px; background: rgba(232,236,246,.18);
  position: relative; overflow: hidden;
}
.hero-scroll-line span {
  position: absolute; left: 0; top: 0; height: 100%; width: 30%;
  background: var(--sky);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { left: -30%; }
  100% { left: 100%; }
}
.hero-hex {
  position: absolute;
  right: 6vw; top: 18vh;
  width: clamp(120px, 14vw, 220px);
  opacity: .22; z-index: 2;
  animation: drift 18s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-20px, 30px) rotate(8deg); }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  STATS                                                            ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.stats {
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  background: var(--paper);
  position: relative;
}
.stats::before {
  /* fine horizontal hairline rule */
  content: none;
}
.stats-header {
  max-width: var(--w-max); margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 64px;
}
.stats-grid {
  max-width: var(--w-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat {
  padding: 56px 36px 48px;
  background: var(--paper);
  position: relative;
}
.stat-hex {
  position: relative;
  width: 56px; height: 64px;
  margin-bottom: 36px;
  display: flex; align-items: center; justify-content: center;
}
.stat-hex::before {
  content: ""; position: absolute; inset: 0;
  background: var(--blue);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.stat-hex span {
  position: relative; z-index: 1;
  font-family: var(--f-en); font-weight: 800;
  color: #fff; font-size: 16px;
  letter-spacing: .02em;
}
.stat-label {
  font-size: 13px; letter-spacing: .12em;
  color: #6a7388;
  margin-bottom: 16px;
}
.stat-num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: clamp(80px, 9vw, 132px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 22px;
}
.stat-num em {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink);
  letter-spacing: 0;
}
.stat p {
  font-size: 14.5px;
  color: #4b5266;
  line-height: 1.95;
}

@media (max-width: 860px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  ABOUT                                                            ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.about {
  padding: clamp(100px, 12vw, 180px) var(--pad-x);
  background: var(--paper);
}
.about-grid {
  max-width: var(--w-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.about-left h2 {
  margin-bottom: 32px;
}
.about-left h2 em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 70%, rgba(214,48,27,.18) 70%);
  padding: 0 .08em;
}
.about-left p {
  font-size: 15.5px;
  line-height: 2.1;
  color: #2c344b;
}
.about-right { display: flex; flex-direction: column; gap: 36px; }
.quote-card {
  background: var(--ink);
  color: #eceff3;
  padding: 36px 36px 28px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(18,22,28,.4);
}
.quote-mark {
  font-family: var(--f-mincho);
  font-size: 88px; line-height: 1;
  color: var(--sky);
  position: absolute; top: 14px; right: 24px;
  opacity: .6;
}
.quote-card blockquote {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.95;
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.quote-card figcaption {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
}
.quote-card figcaption img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; object-position: 50% 22%;
  filter: grayscale(.2);
}
.quote-card figcaption strong {
  display: block; font-family: var(--f-mincho);
  font-weight: 600; font-size: 16px;
  margin-bottom: 2px;
}
.quote-card figcaption span {
  font-size: 11px;
  font-family: var(--f-en);
  letter-spacing: .12em;
  color: rgba(232,236,246,.6);
}

.about-mini {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.about-mini > div {
  background: var(--paper);
  padding: 18px 20px;
  font-size: 13.5px;
  line-height: 1.7;
}
.about-mini span {
  display: block;
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
  font-weight: 600;
}

@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* movie block (top of stats) */
.about-video {
  max-width: 1100px;
  margin: 0 auto clamp(72px, 8vw, 120px);
}
.about-video-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.about-video-head .kicker { margin-bottom: 0; }
.about-video-head h3 {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink);
}
.about-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(18,22,28,.35);
  cursor: pointer;
  overflow: hidden;
}
.about-video-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s ease;
}
.about-video-frame:hover > img { transform: scale(1.02); }
.video-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  filter: drop-shadow(0 10px 30px rgba(18,22,28,.5));
  transition: transform .25s ease;
}
.video-play svg { width: 90px; height: 64px; display: block; }
.about-video-frame:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.about-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  PROGRAM                                                          ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.program {
  padding: clamp(100px, 12vw, 180px) var(--pad-x);
  background: var(--ink);
  color: #eceff3;
  position: relative;
  overflow: hidden;
}
.program-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(214,48,27,.18) 0%, transparent 70%),
    radial-gradient(50% 40% at 0% 100%, rgba(244,130,106,.08) 0%, transparent 70%);
}
.program-head {
  position: relative;
  max-width: var(--w-max);
  margin: 0 auto 56px;
}
.program-head h2 { margin-bottom: 24px; color: #f4f3ef; }
.program-head h2 em { color: var(--sky); }
.program-head p {
  max-width: 640px;
  font-size: 15.5px; color: #b6bcc6;
  line-height: 2.0;
}

.pyramid-stage {
  position: relative;
  max-width: var(--w-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 56px;
  align-items: center;
}
.pyramid-svg {
  width: 100%; height: auto;
}
.pyramid-svg .pyr-layer { opacity: 0; transform: translateY(20px); transform-origin: 600px 800px; transition: opacity .9s ease, transform .9s ease; }
.pyramid-stage.in .pyr-tip      { opacity: 1; transform: none; transition-delay: .1s; }
.pyramid-stage.in .pyr-vfb      { opacity: 1; transform: none; transition-delay: .25s; }
.pyramid-stage.in .pyr-base     { opacity: 1; transform: none; transition-delay: .4s; }
.pyramid-stage.in .pyr-coaching { opacity: 1; transform: none; transition-delay: .55s; }
.pyramid-stage.in .pyr-phase    { opacity: 1; transition-delay: .8s; }
.pyramid-stage.in .pyr-axis     { opacity: 1; transition-delay: .95s; }
.pyr-phase, .pyr-axis { opacity: 0; transition: opacity .9s ease; }

.pyramid-callouts { display: flex; flex-direction: column; gap: 28px; }
.cl {
  padding: 24px 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  position: relative;
}
.cl-no {
  display: block;
  font-family: var(--f-en); font-weight: 800;
  font-size: 12px; letter-spacing: .2em;
  color: var(--sky);
  margin-bottom: 10px;
}
.cl h3 {
  font-family: var(--f-mincho);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f4f3ef;
}
.cl p { font-size: 13.5px; color: #b6bcc6; line-height: 1.85; }

@media (max-width: 920px) {
  .pyramid-stage { grid-template-columns: 1fr; }
}

/* Timeline */
.timeline {
  max-width: var(--w-max);
  margin: 88px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
}
.tl-phase {
  padding: 36px 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
}
.tl-pill {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sky);
  border: 1px solid var(--sky);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.tl-1 .tl-pill { color: var(--sky); border-color: var(--sky); }
.tl-2 .tl-pill { color: #f6c3b6; border-color: rgba(246,195,182,.5); }
.tl-phase h4 {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 12px;
  color: #f4f3ef;
}
.tl-phase > p {
  font-size: 14px; color: #b6bcc6;
  line-height: 1.9;
  margin-bottom: 22px;
}
.tl-phase ol {
  list-style: none;
}
.tl-phase ol li {
  font-size: 13.5px;
  color: #d4d9e0;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.tl-phase ol li:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.tl-phase ol li b {
  font-family: var(--f-en);
  font-weight: 700;
  color: var(--sky);
  font-size: 11px;
  letter-spacing: .14em;
  min-width: 80px;
}
.tl-divider {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  min-width: 40px;
}
.tl-divider::before {
  content: "→";
  font-family: var(--f-en);
  font-size: 40px;
  color: var(--sky);
  opacity: .6;
}

@media (max-width: 920px) {
  .timeline { grid-template-columns: 1fr; }
  .tl-divider::before { content: "↓"; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  COACHING PILLARS                                                 ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.coaching {
  padding: clamp(100px, 12vw, 180px) var(--pad-x);
  background: var(--paper);
}
.coaching-head {
  max-width: var(--w-max);
  margin: 0 auto 64px;
  text-align: center;
}
.coaching-head .kicker { justify-content: center; }
.coaching-head .kicker::before { content: ""; }
.coaching-head h2 em {
  background: linear-gradient(180deg, transparent 70%, rgba(214,48,27,.2) 70%);
  padding: 0 .08em;
}
.coaching-head p {
  margin-top: 24px;
  max-width: 640px; margin-left: auto; margin-right: auto;
  font-size: 15px; color: #4b5266; line-height: 2.0;
}
.pillars {
  max-width: var(--w-max);
  margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillar {
  background: var(--paper);
  padding: 44px 32px;
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background .3s ease;
}
.pillar:hover { background: var(--paper-faint); }
.pillar-fig {
  width: 64px; height: 64px;
  color: var(--blue);
  margin-bottom: 12px;
}
.pillar-fig svg { width: 100%; height: 100%; }
.pillar h3 {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
}
.pillar h3 em { color: var(--ink); }
.pillar h3 span {
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8a92a8;
}
.pillar p {
  font-size: 13.5px;
  color: #4b5266;
  line-height: 1.9;
}

@media (max-width: 920px) {
  .pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  CASE STUDY: SUZETTE                                              ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.case {
  background: var(--paper-faint);
  position: relative;
}
.case-photo {
  position: relative;
  width: 100%;
  height: clamp(420px, 70vh, 720px);
  overflow: hidden;
}
.case-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 130%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}
.case-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,22,28,.25) 0%, rgba(18,22,28,.05) 30%, rgba(18,22,28,.7) 100%);
}
.case-photo-mark {
  position: absolute;
  left: var(--pad-x); bottom: clamp(36px, 5vw, 64px);
  color: #fff;
  z-index: 2;
}
.case-photo-mark span {
  display: block;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
  font-weight: 600;
}
.case-photo-mark strong {
  display: block;
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: .02em;
}
.case-photo-mark small {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
  letter-spacing: .08em;
}
.case-head {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: clamp(44px, 5.5vw, 72px) var(--pad-x) 32px;
}
.case-head h2 em {
  background: linear-gradient(180deg, transparent 70%, rgba(214,48,27,.2) 70%);
  padding: 0 .08em;
}
.case-body {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(56px, 6vw, 90px);
}
.case-cols {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding: 32px 0 64px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 64px;
}
.case-pull p {
  font-size: 16px;
  line-height: 2.1;
  color: #2c344b;
  margin-bottom: 18px;
}
.case-pull p:first-child::first-letter {
  font-family: var(--f-mincho);
  font-weight: 700;
  font-size: 3.6em;
  line-height: .9;
  float: left;
  margin: .04em .12em 0 0;
  color: var(--blue);
}
/* before / after revenue */
.case-ba {
  max-width: var(--w-max);
  margin: clamp(40px, 5vw, 64px) auto 0;
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
@media (max-width: 1400px) {
  .case-ba { margin-left: var(--pad-x); margin-right: var(--pad-x); }
}
.case-ba-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #5a6178;
}
.case-ba-row {
  display: flex;
  align-items: baseline;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  justify-content: center;
}
.ba-item { display: flex; align-items: baseline; gap: 14px; }
.ba-year {
  font-family: var(--f-en);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: .06em;
  color: #5a6178;
}
.ba-val {
  font-family: var(--f-en);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.ba-val em {
  font-style: normal;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: .42em;
  letter-spacing: 0;
  margin-left: .06em;
}
.ba-before .ba-val {
  font-size: clamp(40px, 4.5vw, 64px);
  color: #8a92a8;
}
.ba-after .ba-val {
  font-size: clamp(64px, 7vw, 104px);
  color: var(--blue);
}
.ba-arrow {
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--blue);
  align-self: center;
}

.case-team {
  position: relative;
}
/* big pull-stat (replaces removed team photo) */
.case-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  border-left: 1px solid var(--rule);
  padding-left: clamp(28px, 4vw, 64px);
}
.case-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  color: #5a6178;
  margin-bottom: 10px;
}
.case-stat-head {
  font-family: var(--f-mincho);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--ink);
  letter-spacing: .06em;
}
.case-stat-num {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: clamp(96px, 11vw, 180px);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--blue);
  display: flex;
  align-items: baseline;
}
.case-stat-num em {
  font-style: normal;
  font-size: .38em;
  font-weight: 800;
}
.case-stat-num b {
  font-size: .5em;
  font-weight: 800;
  margin-left: .08em;
}
@media (max-width: 920px) {
  .case-stat { border-left: 0; padding-left: 0; margin-top: 32px; }
}
.case-team img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 25%;
}
.case-team figcaption {
  font-size: 11px;
  color: #5a6178;
  margin-top: 10px;
  font-family: var(--f-en);
  letter-spacing: .08em;
}

.case-chapters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.ch { display: block; }
.ch-no {
  display: inline-block;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--blue);
  margin-bottom: 12px;
}
.ch h3 {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 14px;
}
.ch p {
  font-size: 14.5px;
  line-height: 2.0;
  color: #2c344b;
}

@media (max-width: 920px) {
  .case-cols { grid-template-columns: 1fr; }
  .case-chapters { grid-template-columns: 1fr; gap: 40px; }
}

.case-quote {
  margin: 72px auto 0;
  max-width: 800px;
  text-align: center;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.case-quote p {
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.7;
  color: var(--ink);
}
.case-quote .q {
  color: var(--blue);
  font-size: 1.5em;
  vertical-align: -.1em;
  margin: 0 4px;
}
.case-quote figcaption {
  margin-top: 18px;
  font-size: 12px;
  color: #6a7388;
  letter-spacing: .1em;
}

.case-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.kpi {
  background: var(--paper-faint);
  padding: 36px 24px;
}
.kpi-num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.kpi-num em {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 20px);
  color: var(--ink);
  letter-spacing: 0;
}
.kpi-lbl {
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  color: #5a6178;
}
@media (max-width: 920px) {
  .case-kpis { grid-template-columns: 1fr 1fr; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  VOICES / TESTIMONIALS                                            ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.voices {
  padding: clamp(70px, 8vw, 110px) var(--pad-x);
  background: var(--paper);
}
.voices-head {
  max-width: var(--w-max);
  margin: 0 auto 64px;
}
.voices-head h2 em {
  background: linear-gradient(180deg, transparent 70%, rgba(214,48,27,.2) 70%);
  padding: 0 .08em;
}
.voices-head p {
  font-size: 15px;
  color: #4b5266;
  margin-top: 20px;
  max-width: 700px;
  line-height: 2.0;
}
.voices-grid {
  max-width: var(--w-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.voice {
  background: var(--paper);
  padding: 40px 34px 34px;
  display: flex;
  flex-direction: column;
  transition: background .3s ease;
}
.voice:hover { background: var(--paper-faint); }
.voice-metric {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--blue);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.voice-metric em {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink);
  letter-spacing: 0;
}
.voice-metric-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .06em;
  margin: 8px 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.voice blockquote {
  font-size: 13.5px;
  line-height: 1.95;
  color: #3a4157;
  flex: 1;
  margin-bottom: 24px;
}
.voice footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}
.voice-face {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}
.voice-id {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.voice footer strong {
  font-family: var(--f-mincho);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
}
.voice footer span {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 6px;
  min-height: 34px;
}
.voice footer small {
  font-size: 11px;
  color: #6a7388;
  line-height: 1.6;
  letter-spacing: .02em;
  min-height: 53px; /* 3 lines — keeps footer height equal so rows align */
}
@media (max-width: 980px) {
  .voices-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .voices-grid { grid-template-columns: 1fr; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  PRINCIPAL                                                        ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.principal {
  padding: clamp(100px, 12vw, 180px) var(--pad-x);
  background: var(--ink);
  color: #eceff3;
  position: relative;
  overflow: hidden;
}
.principal::before {
  content: "MORI";
  position: absolute;
  right: -2vw; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  font-family: var(--f-en);
  font-weight: 900;
  font-size: clamp(160px, 22vw, 380px);
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,130,106,.08);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.principal-grid {
  max-width: var(--w-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.principal-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(244,130,106,.18);
  padding: 28px;
}
.principal-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  filter: grayscale(.15) contrast(1.05);
}
.principal-label {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--sky);
  color: var(--ink);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 8px 16px;
}
.principal-body h2 {
  font-family: var(--f-mincho);
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 600;
  margin-bottom: 24px;
  color: #f4f3ef;
  display: block;
}
.principal-body h2 em {
  display: block;
  margin-top: 14px;
}
.principal-body h2 em {
  font-family: var(--f-en);
  font-style: italic;
  font-weight: 400;
  font-size: .35em;
  letter-spacing: .12em;
  color: var(--sky);
  text-transform: uppercase;
}
.principal-body .lede {
  font-family: var(--f-mincho);
  font-size: 18px;
  line-height: 2.0;
  color: #d3d8df;
  margin-bottom: 40px;
}
.principal-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(244,130,106,.12);
  border: 1px solid rgba(244,130,106,.12);
  margin-bottom: 40px;
}
.principal-facts > div {
  background: var(--ink);
  padding: 22px 24px;
}
.principal-facts dt {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 6px;
  font-weight: 700;
}
.principal-facts dd {
  font-size: 15px;
  color: #eceff3;
  line-height: 1.6;
}
.principal-facts dd strong {
  font-family: var(--f-en);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-right: 4px;
}
.principal-quote {
  font-family: var(--f-mincho);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.85;
  color: var(--sky);
  padding-left: 24px;
  border-left: 2px solid var(--sky);
}
.principal-quote em {
  color: #f4f3ef;
  text-decoration: underline;
  text-decoration-color: rgba(244,130,106,.6);
  text-underline-offset: 6px;
}
@media (max-width: 920px) {
  .principal-grid { grid-template-columns: 1fr; }
  .principal-facts { grid-template-columns: 1fr; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  SCHEDULE                                                         ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.schedule {
  padding: clamp(100px, 12vw, 180px) var(--pad-x);
  background: var(--paper);
}
.sched-head {
  max-width: var(--w-max);
  margin: 0 auto 64px;
}
.sched-head h2 em {
  background: linear-gradient(180deg, transparent 70%, rgba(214,48,27,.2) 70%);
  padding: 0 .08em;
}
.sched-head p {
  font-size: 15px;
  color: #4b5266;
  margin-top: 20px;
  max-width: 640px;
  line-height: 2.0;
}
.sched-tables {
  max-width: var(--w-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.sched-card {
  background: var(--paper);
  padding: 40px 36px;
}
.sched-card header {
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.sched-tag {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  padding: 5px 12px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  margin-bottom: 16px;
}
.sched-card h3 {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 8px;
  color: var(--ink);
}
.sched-meta {
  font-size: 13px;
  color: #5a6178;
  letter-spacing: .04em;
}
.sched-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.sched-list li {
  padding: 14px 4px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: baseline;
  font-size: 13.5px;
}
.sched-list li:nth-child(2n) { border-left: 1px solid var(--rule); padding-left: 14px; }
.sched-list li b {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 10.5px;
  color: var(--blue);
  letter-spacing: .14em;
}
.sched-list li span {
  font-family: var(--f-en);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
}
.sched-list li em {
  font-size: 11px;
  color: #5a6178;
  font-family: var(--f-sans);
  letter-spacing: .08em;
}
@media (max-width: 920px) {
  .sched-tables { grid-template-columns: 1fr; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  AFTER ICTC                                                       ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.after {
  padding: clamp(100px, 12vw, 180px) var(--pad-x);
  background: var(--ink);
  color: #eceff3;
  position: relative;
}
.after-inner {
  max-width: var(--w-max);
  margin: 0 auto;
}
.after h2 { margin-bottom: 64px; color: #f4f3ef; }
.after h2 em { color: var(--sky); }
.after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.after-card {
  background: var(--ink);
  padding: 44px 32px;
}
.ac-no {
  display: block;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--sky);
  margin-bottom: 14px;
}
.after-card h3 {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: 22px;
  color: #f4f3ef;
  margin-bottom: 14px;
  line-height: 1.4;
}
.after-card p {
  font-size: 13.5px;
  line-height: 1.95;
  color: #b6bcc6;
}
@media (max-width: 920px) {
  .after-grid { grid-template-columns: 1fr; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  CASE STUDY LINKS                                                 ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.cases-link {
  padding: clamp(70px, 8vw, 110px) var(--pad-x) clamp(56px, 6vw, 90px);
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.cases-link-inner {
  max-width: var(--w-max);
  margin: 0 auto;
}
.cases-link-head { margin-bottom: 48px; }
.cases-link-head h2 em {
  background: linear-gradient(180deg, transparent 70%, rgba(214,48,27,.2) 70%);
  padding: 0 .08em;
}
.cases-link-head p {
  font-size: 15px;
  color: #4b5266;
  margin-top: 18px;
  line-height: 2.0;
}
.cases-list {
  list-style: none;
  border-top: 1px solid var(--rule);
}
.cases-list a {
  display: grid;
  grid-template-columns: 168px 1fr 40px;
  align-items: center;
  gap: 32px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--rule);
  transition: background .25s ease, padding .25s ease;
}
.cases-list a:hover { background: var(--paper-faint); padding-left: 20px; }
.cs-thumb {
  display: block;
  width: 168px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-faint);
}
.cs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cases-list a:hover .cs-thumb img { transform: scale(1.05); }
.cs-body { display: flex; flex-direction: column; gap: 10px; }
.cases-list b {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--blue);
}
.cs-title {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
  color: var(--ink);
}
.cases-list i {
  font-style: normal;
  font-family: var(--f-en);
  font-size: 20px;
  color: var(--blue);
  text-align: right;
  transition: transform .25s ease;
}
.cases-list a:hover i { transform: translateX(6px); }
@media (max-width: 720px) {
  .cases-list a { grid-template-columns: 110px 1fr; gap: 18px; }
  .cs-thumb { width: 110px; }
  .cases-list i { display: none; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  CONTACT                                                          ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.contact {
  padding: clamp(70px, 8vw, 110px) var(--pad-x) clamp(90px, 10vw, 140px);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "GET STARTED";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-en);
  font-weight: 900;
  font-size: clamp(120px, 18vw, 320px);
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(214,48,27,.08);
  pointer-events: none; user-select: none;
  z-index: 0;
  white-space: nowrap;
  line-height: 1;
}
.contact-inner {
  position: relative;
  max-width: var(--w-max);
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.contact .kicker { justify-content: center; margin-left: auto; margin-right: auto; }
.contact h2 em {
  background: linear-gradient(180deg, transparent 70%, rgba(214,48,27,.2) 70%);
  padding: 0 .08em;
}
.contact > .contact-inner > p {
  margin-top: 28px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  font-size: 15px;
  line-height: 2.1;
  color: #2c344b;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  margin-bottom: 48px;
}
.contact-card {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  text-align: left;
  position: relative;
  border: 1px solid var(--rule);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(18,22,28,.25);
  border-color: var(--blue);
}
.contact-card.primary {
  background: var(--ink);
  color: #eceff3;
  border-color: var(--ink);
}
.contact-card.primary:hover { border-color: var(--sky); }
.cc-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.contact-card.primary .cc-icon { background: rgba(244,130,106,.12); color: var(--sky); }
.contact-card h3 {
  font-family: var(--f-mincho);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 13.5px;
  color: #5a6178;
  line-height: 1.85;
}
.contact-card.primary p { color: #b6bcc6; }
.cc-arrow {
  position: absolute;
  right: 24px; top: 32px;
  font-family: var(--f-en);
  font-size: 20px;
  color: var(--blue);
  transition: transform .3s ease;
}
.contact-card:hover .cc-arrow { transform: translateX(6px); }
.contact-card.primary .cc-arrow { color: var(--sky); }

.contact-note {
  font-family: var(--f-en);
  font-size: 13px;
  color: #5a6178;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* contact form */
.contact-form {
  max-width: 880px;
  margin: 64px auto 56px;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(32px, 4vw, 56px);
}
.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.cf-full { grid-column: 1 / -1; }
.cf-field { display: flex; flex-direction: column; gap: 10px; }
.cf-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cf-label b {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  padding: 2px 7px;
  letter-spacing: .12em;
}
.cf-field input,
.cf-field textarea {
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper-faint);
  border: 1px solid var(--rule);
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
  resize: vertical;
}
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--blue);
  background: #fff;
}
.cf-field ::placeholder { color: #a8aebf; }
.cf-radios { display: flex; flex-wrap: wrap; gap: 12px; }
.cf-pill { cursor: pointer; }
.cf-pill input { position: absolute; opacity: 0; pointer-events: none; }
.cf-pill span {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
  border: 1px solid var(--rule);
  background: var(--paper-faint);
  padding: 11px 22px;
  transition: all .2s ease;
}
.cf-pill input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.cf-pill:hover span { border-color: var(--ink); }
.cf-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cf-submit {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #fff;
  background: var(--blue);
  border: 0;
  cursor: pointer;
  padding: 18px 46px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background .25s ease, transform .25s ease;
}
.cf-submit:hover { background: #b8250f; transform: translateY(-2px); }
.cf-note {
  font-size: 11.5px;
  color: #8a92a8;
  line-height: 1.7;
  max-width: 420px;
}
@media (max-width: 680px) {
  .cf-grid { grid-template-columns: 1fr; }
}

.contact-tel { letter-spacing: .04em; }
.contact-tel a { color: var(--ink); font-weight: 700; }
.contact-tel a:hover { color: var(--blue); }
  letter-spacing: .04em;
  margin-top: 36px;
}
.contact-note b {
  color: var(--blue);
  font-weight: 700;
}
@media (max-width: 920px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  FOOTER                                                           ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.foot {
  padding: 72px var(--pad-x) 36px;
  background: var(--ink);
  color: #eceff3;
}
.foot-grid {
  max-width: var(--w-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-brand strong {
  display: block;
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.foot-brand span {
  display: block;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(232,236,246,.55);
  margin-bottom: 16px;
}
.foot-brand small {
  font-size: 12px;
  color: rgba(232,236,246,.6);
}
.foot-nav { display: flex; flex-direction: column; gap: 10px; }
.foot-nav h5 {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 10px;
}
.foot-nav a {
  font-size: 13px;
  color: rgba(232,236,246,.75);
  transition: color .2s;
}
.foot-nav a:hover { color: #fff; }
.foot-base {
  max-width: var(--w-max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(232,236,246,.4);
}
@media (max-width: 920px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-base { flex-direction: column; gap: 8px; text-align: center; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  RESPONSIVE                                                       ║
   ╚══════════════════════════════════════════════════════════════════╝ */
@media (max-width: 720px) {
  .hero-sub br { display: none; }
  .hero-h-line { display: inline; }
}


/* ═══ Type emphasis (メリハリ): mincho headings, slightly bolder ═══ */
section h2,
.hero-h,
.principal-body h2 {
  font-weight: 800;
  letter-spacing: .01em;
}
.about-video-head h3,
.cl h3,
.tl-phase h4,
.pillar h3,
.ch h3,
.after-card h3,
.sched-card h3,
.contact-card h3,
.cs-title,
.case-photo-mark strong,
.quote-card figcaption strong {
  font-weight: 700;
}
.quote-card blockquote,
.case-quote p,
.principal-quote,
.principal-body .lede,
.case-pull p:first-child::first-letter {
  font-weight: 600;
}
.cf-hint {
  font-size: 11px;
  color: #8a92a8;
  line-height: 1.6;
}

/* ═══ Scenes strip ═══ */
.scenes {
  background: var(--paper);
  padding: 0 0 clamp(48px, 5vw, 72px);
}
.scenes-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 3px;
  height: clamp(220px, 26vw, 400px);
}
.scenes-grid figure {
  overflow: hidden;
  margin: 0;
}
.scenes-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.scenes-grid figure:hover img { transform: scale(1.04); }
.scenes-caption {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8a92a8;
  text-align: right;
  padding: 14px var(--pad-x) 0;
}
@media (max-width: 720px) {
  .scenes-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .scenes-grid figure { aspect-ratio: 3 / 2; }
}

/* LINE QR in contact card */
.contact-card-line { cursor: default; }
.cc-qr {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cc-qr image-slot {
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  background: #fff;
}
.cc-qr span {
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: rgba(232,236,246,.75);
}
