  :root {
    --bg: #FFFFFF;
    --bg-soft: #F4F4F2;
    --bg-faint: #FAFAF8;
    --bg-dark: #0E1116;
    --ink: #0E1116;
    --ink-2: #4A4F58;
    --mute: #8B909A;
    --line: #E5E7EB;
    --line-soft: #EFEFED;
    --hair: #1A1F27;

    --font-en: 'Manrope', 'Inter', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --nav-h: 72px;
    --pad-x: clamp(20px, 5vw, 64px);

    /* DG motion system */
    --ease-dg: cubic-bezier(0.3, 0.2, 0, 1);
    --ease-img: cubic-bezier(0.1, 0.5, 0.3, 1);
    /* garage.co.jp ease-main */
    --ease-main: cubic-bezier(0.24, 0.12, 0.09, 1);
  }

  /* Boot splash retired — content shows immediately, header slides in (garage.co.jp pattern) */
  .boot-splash { display: none !important; }

  * {
    margin: 0; padding: 0; box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }
  html {
    scroll-behavior: smooth;
    overflow-x: clip;
  }
  body {
    font-family: var(--font-jp);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'palt';
    overflow-x: clip;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  /* Lenis touch fix */
  html.lenis { height: auto; }
  html.lenis.lenis-smooth { scroll-behavior: auto !important; }
  html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
  html.lenis.lenis-stopped { overflow: hidden; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  ::selection { background: var(--ink); color: var(--bg); }

  .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }

  /* ===== utility ===== */
  .en {
    font-family: var(--font-en);
    letter-spacing: -0.01em;
  }
  .mono {
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
  }

  /* ===== NAV — floating glass pill (garage.co.jp style) ===== */
  .nav {
    position: fixed;
    top: 20px;
    left: clamp(20px, 4vw, 56px);
    right: clamp(20px, 4vw, 56px);
    width: auto;
    height: 64px;
    z-index: 100;
    background: rgba(255,255,255,0.82);
    -webkit-backdrop-filter: blur(50px) saturate(160%);
    backdrop-filter: blur(50px) saturate(160%);
    border-radius: 14px;
    border: 1px solid rgba(11,13,16,0.05);
    box-shadow: 0 5px 14px rgba(0,0,0,0.10);
    /* Initial state for site-load slide-in (released by html.is-loaded) */
    transform: translate3d(0, -130%, 0);
    transition:
      transform 0.8s var(--ease-main),
      background 0.3s ease,
      box-shadow 0.3s ease;
  }
  html.is-loaded .nav { transform: none; }
  .nav .inner {
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 0 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .nav .brand img {
    height: 22px;
    width: auto;
  }
  .nav .brand .tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--mute);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding-left: 12px;
    border-left: 1px solid var(--line);
  }
  .nav .links {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  .nav .links a {
    font-family: var(--font-en);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
    /* Lay out as: [En label] [+]   /   [JP label wraps below] */
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 8px;
  }
  .nav .links a .ja {
    display: block;
    flex-basis: 100%;
    order: 2;
    font-family: var(--font-jp);
    font-size: 9.5px;
    color: var(--mute);
    letter-spacing: 0.1em;
    margin-top: 2px;
    font-weight: 400;
  }
  .nav .links a:hover { color: var(--mute); }

  .nav .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
    transition: all 0.2s;
  }
  .nav .nav-cta:hover {
    background: transparent;
    color: var(--ink);
  }
  .nav .nav-cta .arrow { font-family: var(--font-mono); transition: transform 0.2s; }
  .nav .nav-cta:hover .arrow { transform: translate(2px, -2px); }

  /* mobile drawer */
  .nav-toggle {
    display: none;
    width: 40px; height: 40px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
  }
  .nav-toggle .bar {
    display: block;
    width: 16px; height: 1.4px;
    background: var(--ink);
    transition: transform 0.3s, opacity 0.2s;
  }
  body.nav-open .nav-toggle .bar:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
  body.nav-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle .bar:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }

  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(14,17,22,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 90;
  }
  body.nav-open .nav-overlay { opacity: 1; pointer-events: auto; }

  .nav-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px);
    background: var(--bg);
    border-left: 1px solid var(--line);
    z-index: 95;
    padding: 92px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2,0.65,0.2,1);
    overflow-y: auto;
  }
  body.nav-open .nav-drawer { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav-drawer a {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    transition: padding-left 0.2s;
  }
  .nav-drawer a:hover { padding-left: 6px; }
  .nav-drawer a .num {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--mute);
    letter-spacing: 0.1em;
    min-width: 22px;
  }
  .nav-drawer a .jp {
    font-family: var(--font-jp);
    font-weight: 500;
    font-size: 13px;
    color: var(--ink-2);
    margin-left: auto;
  }

  @media (max-width: 880px) {
    .nav .links, .nav .nav-cta { display: none; }
    .nav-toggle { display: flex; }
  }
  @media (min-width: 881px) {
    .nav-overlay, .nav-drawer { display: none !important; }
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    padding: calc(var(--nav-h) + 96px) 0 140px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    isolation: isolate;
    background: #0E1116;
    min-height: 100svh;
  }
  @supports not (height: 100svh) {
    .hero { min-height: 100vh; }
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .hero-bg video,
  .hero-bg img.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hero-bg img.hero-poster {
    z-index: 1;
  }
  .hero-bg video {
    z-index: 2;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s var(--ease-img) 0.2s, transform 1.6s var(--ease-img) 0.2s;
  }
  .hero-bg video.is-ready { opacity: 1; transform: scale(1); }
  .hero-bg img.hero-poster {
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.6s var(--ease-img), transform 1.6s var(--ease-img);
  }
  html.is-loaded .hero-bg img.hero-poster { opacity: 1; transform: scale(1); }
  .hero-veil {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
      rgba(0,0,0,0.58),
      rgba(0,0,0,0.72)
    );
  }
  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background-image: linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 100px 100%;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-bg video { display: none; }
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 5;
  }
  .hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 32px;
  }
  .hero-meta .mono-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .hero-meta .mono-label .dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: #2bd486;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    transform: translateY(-1px);
    box-shadow: 0 0 12px rgba(43,212,134,0.6);
  }
  .hero h1 {
    font-family: var(--font-en);
    font-weight: 300;
    font-size: clamp(44px, 6.5vw, 104px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 48px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .hero h1 .line { display: block; }
  .hero h1 .accent {
    font-style: italic;
    font-weight: 200;
    color: rgba(255,255,255,0.55);
  }
  .hero-sub {
    font-family: var(--font-jp);
    font-weight: 600;
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.55;
    letter-spacing: 0.005em;
    color: #fff;
    margin-bottom: 48px;
  }
  .hero-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.22);
  }
  .hero-body .lede {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 15.5px;
    line-height: 2;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
  }
  .hero-body .lede strong { font-weight: 700; color: #fff; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .hero-stats .stat .k {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .hero-stats .stat .v {
    font-family: var(--font-en);
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.1;
  }
  .hero-stats .stat .v small {
    font-family: var(--font-jp);
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    margin-left: 6px;
  }
  @media (max-width: 880px) {
    .hero { padding: calc(var(--nav-h) + 56px) 0 130px; min-height: 100svh; }
    .hero-meta { margin-bottom: 36px; flex-wrap: wrap; gap: 6px; }
    .hero-meta .mono-label { font-size: 10.5px; letter-spacing: 0.12em; width: 100%; }
    .hero h1 {
      font-size: clamp(46px, 13.5vw, 88px);
      line-height: 1.0;
      margin-bottom: 28px;
      letter-spacing: -0.03em;
    }
    .hero-sub {
      font-size: clamp(18px, 5.4vw, 26px);
      line-height: 1.5;
      margin-bottom: 28px;
    }
    .hero-body { grid-template-columns: 1fr; gap: 28px; padding-top: 24px; }
    .hero-body .lede { font-size: 14.5px; line-height: 1.95; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .hero-stats .stat .k { font-size: 9.5px; letter-spacing: 0.1em; }
    .hero-stats .stat .v { font-size: 19px; }
    .hero-stats .stat .v small { font-size: 11px; margin-left: 3px; }
  }
  @media (max-width: 420px) {
    .hero h1 { font-size: clamp(40px, 12.5vw, 60px); }
  }

  /* ===== Section base ===== */
  section.block {
    padding: clamp(96px, 14vw, 180px) 0;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .section-head {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    margin-bottom: 88px;
    align-items: start;
  }
  .section-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding-top: 12px;
    border-top: 1px solid var(--ink);
    display: inline-block;
    min-width: 180px;
  }
  .section-tag .num {
    color: var(--ink);
    font-weight: 500;
    margin-right: 14px;
  }
  .section-title {
    font-family: var(--font-en);
    font-weight: 300;
    font-size: clamp(40px, 6.4vw, 92px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 32px;
  }
  .section-title .accent { font-style: italic; font-weight: 200; color: var(--ink-2); }
  .section-jp {
    font-family: var(--font-jp);
    font-weight: 600;
    font-size: clamp(18px, 1.8vw, 22px);
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .section-lede {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 15.5px;
    line-height: 2;
    color: var(--ink-2);
    max-width: 580px;
  }
  @media (max-width: 880px) {
    .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
    .section-tag { min-width: 140px; }
  }

  /* ===== ABOUT ===== */
  .about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 72px;
    align-items: start;
  }
  .about-statement {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: clamp(17px, 1.55vw, 19px);
    line-height: 2;
    color: var(--ink-2);
  }
  .about-statement p { margin-bottom: 28px; }
  .about-statement p:last-child { margin-bottom: 0; }
  .about-statement .hl {
    color: var(--ink);
    font-weight: 600;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 1px;
  }

  .about-meta {
    background: var(--bg-faint);
    border: 1px solid var(--line);
    padding: 40px;
  }
  .about-meta-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .about-meta dl {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px 24px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }
  .about-meta dl:last-child { border-bottom: 1px solid var(--line); }
  .about-meta dt {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-top: 2px;
  }
  .about-meta dd {
    font-family: var(--font-jp);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }
  @media (max-width: 880px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-meta { padding: 32px 24px; }
  }

  /* ===== PURPOSE ===== */
  .purpose {
    background: var(--bg-dark);
    color: #fff;
    border-bottom: none;
  }
  .purpose .section-tag {
    color: rgba(255,255,255,0.5);
    border-top-color: rgba(255,255,255,0.8);
  }
  .purpose .section-tag .num { color: #fff; }
  .purpose .section-title { color: #fff; }
  .purpose .section-title .accent { color: rgba(255,255,255,0.5); }

  .purpose-body {
    padding-top: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .purpose-statement-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
  }
  .purpose-statement-wrap .sidekick {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-top: 6px;
  }
  .purpose-statement {
    font-family: var(--font-jp);
    font-weight: 300;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.85;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.005em;
    max-width: 880px;
  }
  .purpose-statement p { margin-bottom: 28px; }
  .purpose-statement p:last-child { margin-bottom: 0; }
  .purpose-statement .em {
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    padding-bottom: 2px;
  }

  .purpose-big {
    margin-top: 24px;
    padding-top: 64px;
    border-top: 1px solid rgba(255,255,255,0.18);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
  }
  .purpose-big h3 {
    font-family: var(--font-en);
    font-weight: 200;
    font-size: clamp(56px, 9vw, 140px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    color: #fff;
  }
  .purpose-big h3 em { font-style: italic; color: rgba(255,255,255,0.5); font-weight: 200; }
  .purpose-big .ja-large {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 56px);
    line-height: 1.35;
    color: #fff;
    letter-spacing: 0.005em;
  }
  .purpose-big .ja-large small {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: 400;
  }
  @media (max-width: 880px) {
    .purpose-statement-wrap { grid-template-columns: 1fr; gap: 24px; }
    .purpose-big { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  }

  /* ===== FOCUS ===== */
  .focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .focus-statement {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: var(--ink-2);
    max-width: 540px;
  }
  .focus-statement p { margin-bottom: 24px; }
  .focus-statement .hl { color: var(--ink); font-weight: 600; }
  .focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  .focus-tags span {
    font-family: var(--font-jp);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 16px;
    border: 1px solid var(--ink);
    color: var(--ink);
    letter-spacing: 0.04em;
  }
  .focus-numbers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .focus-num-row {
    display: grid;
    grid-template-columns: 80px 1fr 1.6fr;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
  }
  .focus-num-row .num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.1em;
  }
  .focus-num-row .ttl {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    line-height: 1.5;
  }
  .focus-num-row .body {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--ink-2);
  }
  .focus-bridge {
    margin-top: 80px;
    padding: 48px;
    border: 1px solid var(--ink);
    background: var(--bg-faint);
    font-family: var(--font-jp);
    font-weight: 500;
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.85;
    color: var(--ink);
    letter-spacing: 0.005em;
  }
  .focus-bridge .em { font-weight: 800; }
  .focus-bridge .lbl {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--mute);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 400;
  }
  @media (max-width: 880px) {
    .focus-grid { grid-template-columns: 1fr; gap: 40px; }
    .focus-num-row { grid-template-columns: 50px 1fr; gap: 16px; }
    .focus-num-row .body { grid-column: 1 / -1; }
    .focus-bridge { padding: 32px 24px; }
  }

  /* ===== BUSINESS ===== */
  .biz-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 72px;
    padding: 32px;
    background: var(--bg-faint);
    border: 1px solid var(--line);
  }
  .biz-flow-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .biz-flow-step {
    text-align: center;
    padding: 14px 12px;
    position: relative;
  }
  .biz-flow-step + .biz-flow-step::before {
    content: "→";
    position: absolute;
    left: -10px; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--mute);
  }
  .biz-flow-step .ph {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--mute);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .biz-flow-step .jp {
    font-family: var(--font-jp);
    font-weight: 800;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--ink);
    letter-spacing: 0.02em;
  }

  .biz-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .biz-row {
    display: grid;
    grid-template-columns: 80px 1fr 2fr 200px 40px;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid var(--line);
    align-items: start;
    transition: padding-left 0.25s ease;
    cursor: pointer;
    position: relative;
  }
  .biz-row:last-child { border-bottom: 1px solid var(--line); }
  .biz-row:hover { padding-left: 12px; background: var(--bg-faint); }
  .biz-row .biz-id {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.1em;
    padding-top: 6px;
  }
  .biz-row .biz-name {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    line-height: 1.4;
  }
  .biz-row .biz-name small {
    display: block;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 400;
  }
  .biz-row .biz-desc {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.85;
    color: var(--ink-2);
  }
  .biz-row .biz-meta {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--mute);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-top: 8px;
  }
  .biz-row .biz-meta .tier {
    color: var(--ink);
    font-weight: 600;
    margin-right: 8px;
  }
  .biz-row .biz-arrow {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--ink-2);
    padding-top: 6px;
    text-align: right;
    transition: transform 0.2s;
  }
  .biz-row:hover .biz-arrow { transform: translate(4px, -4px); color: var(--ink); }
  @media (max-width: 880px) {
    .biz-flow { padding: 20px; }
    .biz-flow-row { grid-template-columns: 1fr 1fr; gap: 8px; }
    .biz-flow-step + .biz-flow-step::before { display: none; }
    .biz-row {
      grid-template-columns: 60px 1fr 30px;
      grid-template-areas: "id name arrow" "id desc desc" "id meta meta";
      gap: 10px 12px;
      padding: 24px 0;
    }
    .biz-row .biz-id { grid-area: id; }
    .biz-row .biz-name { grid-area: name; font-size: 16px; }
    .biz-row .biz-desc { grid-area: desc; }
    .biz-row .biz-meta { grid-area: meta; padding-top: 4px; }
    .biz-row .biz-arrow { grid-area: arrow; }
    .biz-row:hover { padding-left: 0; }
  }

  /* ===== GROUP / RUFFNOTE ===== */
  .group-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 72px;
    align-items: start;
  }
  .group-statement {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 15.5px;
    line-height: 2;
    color: var(--ink-2);
  }
  .group-statement p { margin-bottom: 24px; }
  .group-statement .hl { color: var(--ink); font-weight: 700; }
  .group-mission {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }
  .group-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    margin-top: 32px;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    transition: all 0.2s;
  }
  .group-cta:hover { background: transparent; color: var(--ink); }
  .group-cta .arrow { font-family: var(--font-mono); transition: transform 0.2s; }
  .group-cta:hover .arrow { transform: translate(2px, -2px); }

  .group-diagram {
    background: var(--bg-faint);
    border: 1px solid var(--line);
    padding: 40px 32px;
  }
  .group-diagram .lbl {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--mute);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: center;
  }
  .group-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .group-layer {
    background: #fff;
    border: 1px solid var(--line);
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: center;
  }
  .group-layer.shared {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  .group-layer .badge {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--mute);
    text-transform: uppercase;
  }
  .group-layer.shared .badge { color: rgba(255,255,255,0.55); }
  .group-layer .info .name {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 14.5px;
    margin-bottom: 4px;
  }
  .group-layer .info .role {
    font-family: var(--font-jp);
    font-size: 12.5px;
    color: var(--ink-2);
    line-height: 1.55;
  }
  .group-layer.shared .info .role { color: rgba(255,255,255,0.78); }
  .group-arrow {
    text-align: center;
    font-family: var(--font-mono);
    color: var(--mute);
    font-size: 14px;
  }

  .group-meta {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .group-meta dl dt {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .group-meta dl dd {
    font-family: var(--font-jp);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }
  @media (max-width: 880px) {
    .group-grid { grid-template-columns: 1fr; gap: 40px; }
    .group-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
    .group-diagram { padding: 28px 20px; }
  }

  /* ===== STRENGTH ===== */
  .strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
  }
  .strength-card {
    padding: 40px 32px 40px 0;
    border-right: 1px solid var(--line);
    position: relative;
  }
  .strength-card:last-child { border-right: none; padding-right: 0; }
  .strength-card .num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.15em;
    margin-bottom: 32px;
  }
  .strength-card .icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
  }
  .strength-card .icon svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
  .strength-card h3 {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 16px;
    min-height: 84px;
  }
  .strength-card h3 small {
    display: block;
    font-family: var(--font-en);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .strength-card p {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 13.5px;
    line-height: 1.9;
    color: var(--ink-2);
  }
  @media (max-width: 880px) {
    .strength-grid { grid-template-columns: 1fr; }
    .strength-card { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 0; }
    .strength-card:last-child { border-bottom: none; }
    .strength-card h3 { min-height: 0; }
  }

  /* ===== WORKS ===== */
  .works-stage {
    margin-bottom: 80px;
  }
  .works-stage-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
  }
  .works-stage-head .ttl {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--ink);
  }
  .works-stage-head .ttl .jp {
    font-family: var(--font-jp);
    font-size: 13px;
    color: var(--ink-2);
    font-weight: 500;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid var(--line);
  }
  .works-stage-head .src {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.08em;
  }
  .works-stage-head .src a:hover { color: var(--ink); }

  .logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .logo-cell {
    background: #fff;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: background 0.2s;
  }
  .logo-cell:hover { background: var(--bg-faint); }
  .logo-cell img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.25s, opacity 0.25s;
  }
  .logo-cell:hover img { filter: grayscale(0%); opacity: 1; }
  @media (max-width: 880px) {
    .logos-grid { grid-template-columns: repeat(3, 1fr); }
    .works-stage-head { flex-direction: column; gap: 8px; }
  }

  .engagements {
    margin-top: 88px;
    padding-top: 64px;
    border-top: 1px solid var(--line);
  }
  .engagements .sub-title {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .engagements .sub-lede {
    font-family: var(--font-jp);
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--ink-2);
    margin-bottom: 48px;
    max-width: 720px;
  }
  .eng-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .eng-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 32px;
    transition: border-color 0.2s, transform 0.25s;
  }
  .eng-card:hover { border-color: var(--ink); transform: translateY(-2px); }
  .eng-card .head {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    align-items: center;
  }
  .eng-card .code {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    background: var(--ink);
    color: #fff;
  }
  .eng-card .tag {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mute);
  }
  .eng-card .stage {
    margin-left: auto;
    font-family: var(--font-jp);
    font-size: 11.5px;
    font-weight: 600;
    color: #1ea069;
    padding: 4px 10px;
    border: 1px solid #1ea069;
    border-radius: 2px;
  }
  .eng-card .industry {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .eng-card dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .eng-card .row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    font-family: var(--font-jp);
    font-size: 13px;
    line-height: 1.8;
  }
  .eng-card .row dt {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 4px;
  }
  .eng-card .row dd { color: var(--ink-2); }
  @media (max-width: 880px) {
    .eng-grid { grid-template-columns: 1fr; }
    .eng-card { padding: 24px 20px; }
    .eng-card .row { grid-template-columns: 84px 1fr; }
  }

  /* ===== CONTACT ===== */
  .contact {
    background: var(--bg-dark);
    color: #fff;
    padding: clamp(120px, 18vw, 220px) 0;
    border-bottom: 1px solid var(--hair);
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100px 100%;
    pointer-events: none;
  }
  .contact .container { position: relative; z-index: 2; }
  .contact-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-top: 1px solid #fff;
    padding-top: 12px;
    display: inline-block;
    min-width: 180px;
    margin-bottom: 56px;
  }
  .contact-tag .num { color: #fff; font-weight: 500; margin-right: 14px; }
  .contact h2 {
    font-family: var(--font-en);
    font-weight: 200;
    font-size: clamp(48px, 8vw, 128px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 40px;
    max-width: 1100px;
  }
  .contact h2 em { font-style: italic; color: rgba(255,255,255,0.45); font-weight: 200; }
  .contact .jp-sub {
    font-family: var(--font-jp);
    font-weight: 600;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.6;
    color: #fff;
    margin-bottom: 48px;
    max-width: 760px;
  }
  .contact .lede {
    font-family: var(--font-jp);
    font-weight: 300;
    font-size: 16px;
    line-height: 2;
    color: rgba(255,255,255,0.72);
    max-width: 620px;
    margin-bottom: 56px;
  }
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .contact .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: #fff;
    color: var(--ink);
    border: 1px solid #fff;
    transition: all 0.2s;
  }
  .contact .btn:hover { background: transparent; color: #fff; }
  .contact .btn.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
  }
  .contact .btn.ghost:hover { border-color: #fff; }
  .contact .btn .arrow { font-family: var(--font-mono); transition: transform 0.2s; }
  .contact .btn:hover .arrow { transform: translate(2px, -2px); }
  .contact-note {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.16);
    font-family: var(--font-jp);
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    max-width: 620px;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.72);
    padding: 80px 0 32px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    margin-bottom: 56px;
  }
  .foot-brand { grid-column: 1 / -1; }
  .foot-brand .logo {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 16px;
  }
  .foot-brand p {
    font-family: var(--font-jp);
    font-weight: 300;
    font-size: 13px;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    max-width: 320px;
  }
  .foot-col h5 {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .foot-col li {
    font-family: var(--font-jp);
    font-size: 13px;
    color: rgba(255,255,255,0.78);
  }
  .foot-col li a { transition: color 0.2s; }
  .foot-col li a:hover { color: #fff; }
  .foot-col h5 .ja {
    font-family: var(--font-jp);
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    text-transform: none;
    margin-left: 8px;
    font-weight: 400;
  }
  .foot-col li a .ja {
    font-family: var(--font-jp);
    font-size: 11px;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.04em;
    margin-left: 8px;
    font-weight: 400;
  }
  .foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.12em;
  }
  .foot-bottom .signature .en { color: rgba(255,255,255,0.65); font-weight: 600; }

  /* ===== REVEAL (DG motion system) ===== */
  .reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.8s var(--ease-dg), transform 0.8s var(--ease-dg);
    transition-delay: var(--d, 0s);
  }
  .reveal.in, .reveal.is-v { opacity: 1; transform: translate3d(0,0,0); }
  .reveal.d1 { --d: 0.08s; }
  .reveal.d2 { --d: 0.16s; }
  .reveal.d3 { --d: 0.24s; }
  .reveal.d4 { --d: 0.32s; }
  .reveal.d5 { --d: 0.40s; }

  /* r-hdn: line-mask slide-up (DG a--hdn / a--lineSplit equivalent) */
  .r-hdn {
    display: block;
    overflow: hidden;
    padding-bottom: 0.04em;
    line-height: inherit;
  }
  .r-hdn-i {
    display: inline-block;
    transform: translate3d(0, 110%, 0);
    transition: transform 0.95s var(--ease-dg);
    transition-delay: var(--d, 0s);
    will-change: transform;
  }
  .r-grp.is-v .r-hdn-i, .r-hdn.is-v .r-hdn-i, .is-v .r-hdn-i {
    transform: translate3d(0, 0, 0);
  }

  /* r-ty: translate+opacity (DG a--ty) */
  .r-ty {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.7s var(--ease-dg), transform 0.8s var(--ease-dg);
    transition-delay: var(--d, 0s);
  }
  .r-ty.is-v, .is-v .r-ty { opacity: 1; transform: translate3d(0,0,0); }

  /* r-op / r-sop: opacity-only (DG a--op / a--sop) */
  .r-op {
    opacity: 0;
    transition: opacity 0.5s var(--ease-dg);
    transition-delay: var(--d, 0s);
  }
  .r-op.is-v, .is-v .r-op { opacity: 1; }
  .r-sop {
    opacity: 0;
    transition: opacity 1s var(--ease-dg);
    transition-delay: var(--d, 0s);
  }
  .r-sop.is-v, .is-v .r-sop { opacity: 1; }

  /* r-line: scaleX line (DG a--line) */
  .r-line {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.95s var(--ease-dg);
    transition-delay: var(--d, 0s);
  }
  .r-line.is-v, .is-v .r-line { transform: scaleX(1); }

  /* r-scale: scale+opacity (DG a--scale) */
  .r-scale {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s var(--ease-dg), transform 0.7s var(--ease-dg);
    transition-delay: var(--d, 0s);
  }
  .r-scale.is-v, .is-v .r-scale { opacity: 1; transform: scale(1); }

  /* r-img: image scale 1.08 -> 1 + opacity (DG c--img) */
  .r-img {
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.5s var(--ease-img), transform 0.9s var(--ease-img);
    transition-delay: var(--d, 0s);
  }
  .r-img.is-v, .is-v .r-img { opacity: 1; transform: scale(1); }

  /* r-card: small lift + opacity (DG a--card) */
  .r-card {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 0.6s var(--ease-dg), transform 0.7s var(--ease-dg);
    transition-delay: var(--d, 0s);
  }
  .r-card.is-v, .is-v .r-card { opacity: 1; transform: translate3d(0,0,0); }

  /* r-blop: blur fade (DG a--blop) */
  .r-blop {
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.9s var(--ease-dg), filter 0.9s var(--ease-dg);
    transition-delay: var(--d, 0s);
  }
  .r-blop.is-v, .is-v .r-blop { opacity: 1; filter: none; }

  /* r-icon: scale + rotate (DG a--icon) */
  .r-icon {
    opacity: 0;
    transform: scale(0.85) rotate(-8deg);
    transition: opacity 0.9s var(--ease-dg), transform 1s var(--ease-dg);
    transition-delay: var(--d, 0s);
  }
  .r-icon.is-v, .is-v .r-icon { opacity: 1; transform: scale(1) rotate(0deg); }

  /* ===== BOOT SPLASH ===== */
  .boot-splash {
    position: fixed; inset: 0;
    z-index: 9999;
    background: #0E1116;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.8s var(--ease-dg) 0.25s, visibility 0s linear 1.05s;
  }
  .boot-splash .bs-line {
    width: 240px;
    height: 1px;
    background: rgba(255,255,255,0.18);
    position: relative;
    overflow: hidden;
  }
  .boot-splash .bs-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    animation: bs-load 1.4s cubic-bezier(0.5, 0, 0.2, 1) forwards;
  }
  .boot-splash .bs-mark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, calc(-50% - 36px));
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    opacity: 0;
    animation: bs-mark-in 0.6s var(--ease-dg) 0.1s forwards;
  }
  @keyframes bs-load { 0%{transform:scaleX(0);} 100%{transform:scaleX(1);} }
  @keyframes bs-mark-in { to { opacity: 1; } }
  html.is-loaded .boot-splash {
    opacity: 0;
    visibility: hidden;
  }

  /* ===== CUSTOM CURSOR (dot follower, PC only) ===== */
  .dg-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transition:
      opacity 0.3s var(--ease-dg),
      width 0.35s var(--ease-dg),
      height 0.35s var(--ease-dg),
      background 0.3s var(--ease-dg);
    mix-blend-mode: difference;
    will-change: transform;
  }
  html.has-cursor .dg-cursor { opacity: 1; }
  /* Hover state: enlarged dot */
  html.cursor-hover .dg-cursor {
    width: 28px;
    height: 28px;
  }
  html.cursor-out .dg-cursor { opacity: 0; }
  @media (hover: none), (pointer: coarse) {
    .dg-cursor { display: none !important; }
  }

  /* ===== Nav link underline (DG-style) — disabled per request ===== */
  .nav .links a {
    overflow: hidden;
    position: relative;
  }
  .nav .links a::before { display: none; }

  /* ===== Hero scroll parallax helper ===== */
  .hero-bg {
    transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(var(--hero-scale, 1));
    transform-origin: center top;
    transition: transform 0.05s linear;
  }
  @media (max-width: 880px) {
    /* SPでは重いのでパララックス控えめ */
    .hero-bg {
      transform: none !important;
      transition: none !important;
    }
  }

  /* ===== Splash on SP: 軽量化（短縮） ===== */
  @media (max-width: 880px) {
    .boot-splash .bs-line { width: 180px; }
    .boot-splash .bs-line::after { animation-duration: 1.0s; }
    .boot-splash { transition: opacity 0.55s var(--ease-dg) 0.15s, visibility 0s linear 0.7s; }
    .boot-splash .bs-mark { font-size: 11px; letter-spacing: 0.28em; }
  }

  /* ===== Section padding tighter on SP ===== */
  @media (max-width: 880px) {
    section.block { padding: 64px 0; }
    .section-head { margin-bottom: 36px; gap: 14px; }
    .section-title { font-size: clamp(30px, 8.6vw, 54px) !important; line-height: 1.1; letter-spacing: -0.005em; }
    .section-jp { font-size: clamp(15px, 4vw, 19px) !important; }
    .section-lede { font-size: 14px; line-height: 1.9; }
    .focus-bridge { font-size: 14.5px; line-height: 1.85; padding: 26px 20px; margin-top: 40px; }
    .strength-card h3 { font-size: 16px; }
    .group-mission { font-size: clamp(18px, 4.6vw, 22px) !important; padding-bottom: 22px; margin-bottom: 22px; }
    .group-statement { font-size: 14px; }
    .biz-flow-step .jp { font-size: clamp(16px, 4.6vw, 20px); }
    .biz-flow-step .ph { font-size: 9.5px; letter-spacing: 0.12em; }
    .eng-card .industry { font-size: 14.5px; }
    .eng-card .head { gap: 6px; }
    .eng-card .stage { margin-left: 0; }
    .contact { padding: 72px 0; }
    .contact h2 { font-size: clamp(32px, 9.5vw, 58px) !important; line-height: 1.1; }
    .contact .jp-sub { font-size: clamp(16px, 4.4vw, 21px) !important; }
    .contact .lede { font-size: 14px; line-height: 1.9; }
    .contact-actions { flex-direction: column; }
    .contact .btn { width: 100%; justify-content: space-between; }
    .contact-tag { margin-bottom: 28px; min-width: 140px; }
  }

  /* ===== SP typography calibration (baseline: /group/ page hero) ===== */
  @media (max-width: 880px) {
    /* Page hero (sub-pages) — Group baseline */
    .page-hero h1 { font-size: clamp(40px, 12vw, 64px) !important; margin-bottom: 20px; line-height: 1.05; letter-spacing: -0.01em; }
    .page-hero .jp-sub { font-size: clamp(17px, 4.8vw, 22px) !important; padding-bottom: 20px; margin-bottom: 20px; line-height: 1.5; }
    .page-hero .lede { font-size: 14px !important; line-height: 1.85; }
    .page-hero .crumb { font-size: 11px; }

    /* Top hero (index) */
    .hero h1 { font-size: clamp(38px, 11.5vw, 60px) !important; line-height: 1.05; }
    .hero .lede, .hero .hero-sub { font-size: 14.5px !important; line-height: 1.85; }

    /* Hero card titles on top */
    .hero-card .hc-title { font-size: 14.5px !important; line-height: 1.5; }

    /* Brief / Works headers */
    .brief-head .lhs h2 { font-size: clamp(28px, 8.2vw, 48px) !important; line-height: 1.1; }
    .brief-head .lhs .jp { font-size: 13.5px; line-height: 1.7; }

    /* News list */
    .news-title { font-size: 15px !important; line-height: 1.55; }
    .news-body { font-size: 13px !important; line-height: 1.75; }

    /* Article body (insights / method) */
    .article-body p, .article-body li { font-size: 14.5px !important; line-height: 1.9; }
    .article-section h2 { font-size: clamp(22px, 6vw, 30px) !important; line-height: 1.3; }
    .article-section h3 { font-size: clamp(17px, 4.6vw, 22px) !important; }
    .article-lede { font-size: 15px !important; line-height: 1.9; }
    .article-toc { font-size: 13px; }

    /* Member cards */
    .member-card .m-name { font-size: 18px !important; }
    .member-card .m-role { font-size: 11px; letter-spacing: 0.12em; }
    .member-card .m-bio { font-size: 13.5px !important; line-height: 1.85; }

    /* About statement */
    .about-statement p { font-size: 14.5px !important; line-height: 1.95; }
    .about-meta dt { font-size: 11px; }
    .about-meta dd { font-size: 13.5px; }

    /* Stats / numbers */
    .stat .v, .hero-stat-value { font-size: clamp(28px, 7.5vw, 40px) !important; }
    .stat .k, .hero-stat-label { font-size: 11px; }

    /* Article figure title */
    .article-figure .af-title { font-size: 15.5px !important; line-height: 1.6; }
    .article-figure .af-label { font-size: 10px; letter-spacing: 0.16em; }
    .article-figure .af-caption { font-size: 12.5px !important; line-height: 1.85; }

    /* Footer */
    footer .foot-brand p { font-size: 12.5px; line-height: 1.85; }
    .foot-col h5 { font-size: 10px; }
    .foot-col li { font-size: 13px; }
  }

  /* Force hero h1 to render strictly as 2 lines (no auto-wrap inside each .r-hdn span) */
  .page-hero h1 .r-hdn-i,
  .hero h1 .r-hdn-i { white-space: nowrap; }

  /* ===== Smaller phones (≤ 400px) ===== */
  @media (max-width: 400px) {
    .page-hero h1 { font-size: clamp(34px, 11vw, 50px) !important; }
    .hero h1 { font-size: clamp(34px, 10.5vw, 50px) !important; }
    .section-title { font-size: clamp(26px, 8vw, 44px) !important; }
    .contact h2 { font-size: clamp(28px, 8.5vw, 48px) !important; }
    .brief-head .lhs h2 { font-size: clamp(24px, 7.5vw, 40px) !important; }
    section.block { padding: 56px 0; }
  }

  /* ===== Tap feedback on cards/rows ===== */
  @media (hover: none) and (pointer: coarse) {
    .biz-row:active { background: var(--bg-faint); }
    .eng-card:active { border-color: var(--ink); transform: translateY(-1px); }
    .group-cta:active, .nav .nav-cta:active, .contact .btn:active { transform: scale(0.98); }
    .logo-cell:active { background: var(--bg-faint); }
    .logo-cell img { filter: none !important; opacity: 0.85 !important; }
    /* SPはアニメ依存少なめ */
    .reveal { transition-duration: 0.6s !important; }
    .r-hdn-i { transition-duration: 0.7s !important; }
  }

  /* Reduced motion: kill almost everything */
  @media (prefers-reduced-motion: reduce) {
    .reveal, .r-ty, .r-op, .r-sop, .r-line, .r-scale, .r-img, .r-card, .r-blop, .r-icon, .r-hdn-i {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
      transition: none !important;
    }
    .boot-splash { display: none !important; }
  }

  /* hero-marquee */
  .marquee {
    position: absolute;
    bottom: 32px; left: 0; right: 0;
    overflow: hidden;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 6;
  }
  .marquee .track {
    display: inline-flex;
    gap: 56px;
    white-space: nowrap;
    animation: scroll 38s linear infinite;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .marquee .track span::after {
    content: "●";
    margin-left: 56px;
    color: rgba(255,255,255,0.25);
  }
  @media (max-width: 880px) {
    .marquee {
      bottom: 16px;
      padding: 9px 0;
    }
    .marquee .track {
      gap: 36px;
      font-size: 10px;
      letter-spacing: 0.14em;
      animation-duration: 28s;
    }
    .marquee .track span::after { margin-left: 36px; }
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

/* ============================================================
   PAGE-LEVEL STYLES (Company / Business / Group / News / Contact)
   ============================================================ */

/* nav active state */
.nav .links a.is-current {
  color: var(--ink);
}
.nav .links a.is-current::before {
  display: none;
}

/* compact page hero (subpages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 88px) 0 88px;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--hair);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100px 100%;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 5; }

/* page-hero video background (used on .page-hero.has-video) */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-bg video,
.page-hero-bg img.page-hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero-bg img.page-hero-poster {
  z-index: 1;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.6s var(--ease-img), transform 1.6s var(--ease-img);
}
html.is-loaded .page-hero-bg img.page-hero-poster { opacity: 1; transform: scale(1); }
.page-hero-bg video {
  z-index: 2;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s var(--ease-img) 0.2s, transform 1.6s var(--ease-img) 0.2s;
}
.page-hero-bg video.is-ready { opacity: 1; transform: scale(1); }
.page-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.80));
}
.page-hero.has-video::before { z-index: 4; }
@media (prefers-reduced-motion: reduce) {
  .page-hero-bg video { display: none; }
}
.page-hero .crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 64px;
}
.page-hero .crumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.page-hero .crumb a:hover { color: #fff; }
.page-hero .crumb .sep { margin: 0 12px; color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: var(--font-en);
  font-weight: 200;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 40px;
  /* Prevent overflow when a single .r-hdn line exceeds container width */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.page-hero h1 em { font-style: italic; font-weight: 200; color: rgba(255,255,255,0.5); }
.page-hero .jp-sub {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.55;
  color: #fff;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  max-width: 720px;
}
.page-hero .lede {
  font-family: var(--font-jp);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 2;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
}
@media (max-width: 880px) {
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 56px; }
  .page-hero .crumb { margin-bottom: 32px; font-size: 10px; }
  .page-hero h1 { font-size: clamp(46px, 14vw, 80px); margin-bottom: 24px; }
  .page-hero .jp-sub { font-size: clamp(18px, 5vw, 24px); padding-bottom: 24px; margin-bottom: 24px; }
  .page-hero .lede { font-size: 14.5px; }
}

/* ============== Company page ============== */
.company-profile dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.company-profile dl:first-child { border-top: 1px solid var(--ink); }
.company-profile dt {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 4px;
}
.company-profile dd {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.8;
}
@media (max-width: 720px) {
  .company-profile dl { grid-template-columns: 110px 1fr; gap: 12px; padding: 16px 0; }
  .company-profile dt { font-size: 10px; }
  .company-profile dd { font-size: 14px; }
}

.message-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.message-portrait {
  background: var(--bg-faint);
  border: 1px solid var(--line);
  padding: 40px 32px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.message-portrait .role-en {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.message-portrait .name-jp {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.message-portrait .name-en {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.message-portrait .role-jp {
  font-family: var(--font-jp);
  font-size: 12.5px;
  color: var(--ink-2);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.message-body {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--ink-2);
}
.message-body p { margin-bottom: 28px; }
.message-body .hl {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.message-body .signature {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 880px) {
  .message-grid { grid-template-columns: 1fr; gap: 32px; }
  .message-portrait { position: static; padding: 28px 24px; }
}

.history-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.history-row {
  display: grid;
  grid-template-columns: 120px 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.history-row:last-child { border-bottom: 1px solid var(--line); }
.history-row .ym {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.history-row .tag {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.history-row .desc {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
}
@media (max-width: 720px) {
  .history-row { grid-template-columns: 90px 1fr; grid-template-areas: "ym tag" "ym desc"; gap: 8px 16px; }
  .history-row .ym { grid-area: ym; font-size: 11px; }
  .history-row .tag { grid-area: tag; font-size: 13.5px; }
  .history-row .desc { grid-area: desc; font-size: 13px; }
}

/* members re-style */
.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.member-card {
  background: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.member-card .m-role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.member-card .m-name {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.member-card .m-name-en {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.member-card .m-bio {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
}
@media (max-width: 720px) {
  .members-grid { grid-template-columns: 1fr; }
  .member-card { padding: 28px 24px; }
  .member-card .m-name { font-size: 19px; }
}

/* ============== Business page ============== */
.biz-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 80px;
}
.biz-phase {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.biz-phase .ph-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.biz-phase .ph-jp {
  font-family: var(--font-jp);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.biz-phase .ph-en {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.biz-phase .ph-desc {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) {
  .biz-overview { grid-template-columns: 1fr 1fr; }
  .biz-phase { padding: 24px 20px; }
  .biz-phase .ph-jp { font-size: 22px; }
}

.biz-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.biz-service {
  display: grid;
  grid-template-columns: 90px 280px 1fr 160px 40px;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding-left 0.3s var(--ease-dg), background 0.3s var(--ease-dg);
  cursor: pointer;
}
.biz-service:last-child { border-bottom: 1px solid var(--line); }
.biz-service:hover { padding-left: 16px; background: var(--bg-faint); }
.biz-service:hover .biz-service-arrow { transform: translate(4px, -4px); }
.biz-service .biz-service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.biz-service .biz-service-num .phase {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}
.biz-service .biz-service-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.3;
}
.biz-service .biz-service-title .en {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 400;
}
.biz-service .biz-service-body {
  font-family: var(--font-jp);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-2);
}
.biz-service .biz-service-body .copy {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
.biz-service .biz-service-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 12px;
  text-align: right;
}
.biz-service .biz-service-meta .tier {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 12px;
}
.biz-service .biz-service-arrow {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--ink-2);
  padding-top: 4px;
  text-align: right;
  transition: transform 0.25s var(--ease-dg);
}
@media (max-width: 880px) {
  .biz-service {
    grid-template-columns: 60px 1fr 30px;
    grid-template-areas:
      "num title arrow"
      "num body  body"
      "num meta  meta";
    gap: 12px 16px;
    padding: 28px 0;
  }
  .biz-service .biz-service-num { grid-area: num; font-size: 10px; }
  .biz-service .biz-service-title { grid-area: title; font-size: 19px; }
  .biz-service .biz-service-body { grid-area: body; font-size: 13.5px; }
  .biz-service .biz-service-body .copy { font-size: 14.5px; }
  .biz-service .biz-service-meta { grid-area: meta; text-align: left; padding-top: 4px; }
  .biz-service .biz-service-arrow { grid-area: arrow; }
  .biz-service:hover { padding-left: 0; }
}

/* ============== Group page ============== */
.group-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.group-hero-grid .lhs {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.85;
  color: var(--ink);
}
.group-hero-grid .lhs p { margin-bottom: 28px; }
.group-hero-grid .lhs .hl { font-weight: 700; }
.group-card {
  background: var(--bg-faint);
  border: 1px solid var(--line);
  padding: 40px 32px;
}
.group-card .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.group-card .ttl {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.group-card dl { display: grid; grid-template-columns: 110px 1fr; gap: 8px 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.group-card dl:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.group-card dt { font-family: var(--font-mono); font-size: 10.5px; color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase; }
.group-card dd { font-family: var(--font-jp); font-size: 13.5px; color: var(--ink); font-weight: 500; }
@media (max-width: 880px) {
  .group-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .group-card { padding: 28px 24px; }
}

/* ============== News page ============== */
.news-list {
  border-top: 1px solid var(--ink);
}
.news-item {
  display: grid;
  grid-template-columns: 150px 1fr 160px 40px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left 0.3s var(--ease-dg), background 0.3s var(--ease-dg);
}
.news-item:hover { padding-left: 16px; background: var(--bg-faint); }
.news-item:hover .news-arrow { transform: translate(4px, -4px); }
.news-item .news-date {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-top: 6px;
}
.news-item .news-content .news-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 10px;
}
.news-item .news-content .news-body {
  font-family: var(--font-jp);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-2);
}
.news-item .news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 6px;
}
.news-item .news-tag {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  padding: 4px 10px;
  border: 1px solid var(--line);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.news-item .news-arrow {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ink-2);
  padding-top: 6px;
  text-align: right;
  transition: transform 0.25s var(--ease-dg);
}
@media (max-width: 880px) {
  .news-item {
    grid-template-columns: 1fr 30px;
    grid-template-areas:
      "date arrow"
      "content content"
      "tags tags";
    gap: 8px 12px;
    padding: 24px 0;
  }
  .news-item .news-date { grid-area: date; font-size: 11px; }
  .news-item .news-content { grid-area: content; }
  .news-item .news-content .news-title { font-size: 15px; }
  .news-item .news-tags { grid-area: tags; padding-top: 4px; }
  .news-item .news-arrow { grid-area: arrow; }
  .news-item:hover { padding-left: 0; }
}

.news-pager {
  margin-top: 56px;
  text-align: center;
}
.news-pager .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: #fff;
  transition: all 0.2s;
}
.news-pager .more:hover { background: var(--ink); color: #fff; }

/* ============== Contact page ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info dl {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.contact-info dl:first-of-type { border-top: 1px solid var(--ink); }
.contact-info dl:last-of-type { border-bottom: 1px solid var(--line); }
.contact-info dt {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-info dd {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.75;
}
.contact-info dd a { border-bottom: 1px solid var(--line); }
.contact-info dd a:hover { border-bottom-color: var(--ink); }

.contact-form {
  background: var(--bg-faint);
  border: 1px solid var(--line);
  padding: 48px 40px;
}
.contact-form .form-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-form .field {
  margin-bottom: 24px;
}
.contact-form label {
  display: block;
  font-family: var(--font-jp);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form label .req {
  color: #b04040;
  margin-left: 4px;
  font-size: 11px;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%2300000' stroke-width='1.4' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}
.contact-form .submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
}
.contact-form .submit:hover { background: transparent; color: var(--ink); }
.contact-form .privacy {
  font-family: var(--font-jp);
  font-size: 11.5px;
  color: var(--mute);
  line-height: 1.7;
  margin-top: 16px;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }
}

.consult-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.consult-ex {
  background: #fff;
  padding: 28px 24px;
}
.consult-ex .ex-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.consult-ex .ex-q {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 12px;
}
.consult-ex .ex-a {
  font-family: var(--font-jp);
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--ink-2);
}
@media (max-width: 880px) {
  .consult-examples { grid-template-columns: 1fr; }
}

/* ============================================================
   TOP page lightweight pattern
   ============================================================ */
.brief-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.brief-head .lhs { flex: 1; }
.brief-head .lhs .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.brief-head .lhs .label .num { color: var(--ink); font-weight: 500; margin-right: 12px; }
.brief-head .lhs h2 {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brief-head .lhs h2 em { font-style: italic; color: var(--ink-2); font-weight: 200; }
.brief-head .lhs .jp {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-2);
  margin-top: 12px;
}
.brief-head .view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: all 0.2s var(--ease-dg);
  white-space: nowrap;
}
.brief-head .view-all:hover { background: var(--ink); color: #fff; }
.brief-head .view-all .arrow { font-family: var(--font-mono); transition: transform 0.2s var(--ease-dg); }
.brief-head .view-all:hover .arrow { transform: translate(2px, -2px); }
@media (max-width: 720px) {
  .brief-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
  .brief-head .view-all { width: 100%; justify-content: space-between; }
}

/* About brief layout */
.about-brief {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.about-brief .lhs .copy {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-brief .lhs .tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
}
.about-brief .rhs p {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.about-brief .rhs .hl { color: var(--ink); font-weight: 600; }
@media (max-width: 880px) {
  .about-brief { grid-template-columns: 1fr; gap: 32px; }
}

/* Business brief (4 phases + counter) */
.biz-brief {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.biz-brief .counter {
  font-family: var(--font-en);
  font-weight: 200;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 24px;
}
.biz-brief .counter .small {
  font-family: var(--font-jp);
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}
.biz-brief .desc {
  font-family: var(--font-jp);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-2);
  max-width: 360px;
}
.biz-brief-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.biz-brief-phases .phase {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.biz-brief-phases .phase .ph {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.biz-brief-phases .phase .jp {
  font-family: var(--font-jp);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.biz-brief-phases .phase .en {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: -4px;
}
.biz-brief-phases .phase .body {
  font-family: var(--font-jp);
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-2);
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) {
  .biz-brief { grid-template-columns: 1fr; gap: 32px; }
}

/* Group brief */
.group-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.group-brief .lhs .mark {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.group-brief .lhs h3 {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.group-brief .lhs h3 em { font-style: italic; color: var(--ink-2); font-weight: 200; }
.group-brief .lhs .ja {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 16px;
}
.group-brief .lhs p {
  font-family: var(--font-jp);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-2);
  max-width: 460px;
  margin-bottom: 24px;
}
.group-brief .rhs {
  background: var(--bg-faint);
  border: 1px solid var(--line);
  padding: 40px 32px;
}
@media (max-width: 880px) {
  .group-brief { grid-template-columns: 1fr; gap: 32px; }
}

/* Works brief: just logos, no engagement cards */
.works-brief .works-stage-head { margin-bottom: 24px; }

/* Latest news on TOP (use existing .news-list/.news-item) */
.news-brief .news-list { border-top: none !important; }
.news-brief .news-item { border-bottom: none !important; }
.news-brief .news-item:hover { padding-left: 0; background: transparent; }
.news-brief .news-item { cursor: default; }
.news-brief .news-item .news-arrow { display: none; }
.news-brief .news-item {
  grid-template-columns: 130px 1fr 140px;
}
@media (max-width: 880px) {
  .news-brief .news-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "date"
      "content"
      "tags";
    gap: 6px 0;
  }
}

/* ============================================================
   ENHANCED NAV (DG-equivalent patterns)
   ============================================================ */

/* ===== Scroll progress bar (top) ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 110;
  pointer-events: none;
  background: transparent;
}
.scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  background: var(--ink);
  width: var(--sp, 0%);
  transition: width 0.08s linear;
  transform-origin: left center;
}

/* ===== PC mega menu ===== */
.nav .links { position: relative; }
.nav .links .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav .links a.has-mega {
  position: relative;
}
.nav .links a.has-mega::after {
  content: "+";
  display: inline-block;
  order: 1;
  margin-left: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 300;
  color: var(--mute);
  transition: transform 0.3s var(--ease-dg), color 0.2s;
  transform-origin: center;
}
.nav .links a.has-mega.is-open::after,
.nav .links .nav-item:hover a.has-mega::after {
  transform: rotate(45deg);
  color: var(--ink);
}

.mega-panel {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px -24px rgba(14,17,22,0.16);
  z-index: 99;
  padding: 48px var(--pad-x) 56px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease-dg), transform 0.4s var(--ease-dg), visibility 0s linear 0.35s;
}
.mega-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s var(--ease-dg), transform 0.4s var(--ease-dg), visibility 0s linear 0s;
}
.mega-panel .mega-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
}
.mega-panel .mega-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mega-panel .mega-title {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.mega-panel .mega-title em { font-style: italic; color: var(--ink-2); font-weight: 200; }
.mega-panel .mega-sub {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.mega-panel .mega-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: opacity 0.2s;
}
.mega-panel .mega-link:hover { opacity: 0.7; }
.mega-panel .mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.mega-panel .mega-grid > a {
  display: block;
  padding: 14px 18px;
  border: 1px solid transparent;
  transition: border-color 0.2s var(--ease-dg), background 0.2s var(--ease-dg);
}
.mega-panel .mega-grid > a:hover { border-color: var(--line); background: var(--bg-faint); }
.mega-panel .mega-grid .mi-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mute);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.mega-panel .mega-grid .mi-name {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 6px;
}
.mega-panel .mega-grid .mi-desc {
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.65;
}
@media (max-width: 880px) {
  .mega-panel { display: none !important; }
}

.mega-backdrop {
  position: fixed; inset: 0;
  background: rgba(14,17,22,0.18);
  opacity: 0;
  visibility: hidden;
  z-index: 98;
  transition: opacity 0.3s var(--ease-dg), visibility 0s linear 0.3s;
  pointer-events: none;
}
.mega-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s var(--ease-dg), visibility 0s linear 0s;
}

/* ===== SP full-screen nav — categorized accordion menu ===== */
@media (max-width: 880px) {
  /* Reset legacy drawer link styling */
  .nav-drawer a {
    padding: 0;
    border-bottom: none;
    grid-template-columns: none;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: normal;
    color: inherit;
    gap: 0;
    align-items: stretch;
  }
  .nav-drawer a:hover { padding-left: 0; }
  .nav-drawer::after { content: none; }

  .nav-drawer {
    width: 100vw;
    max-width: none;
    padding: 0;
    background: #0B0D10;
    color: #fff;
    border-left: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Garage-style drop-down reveal: clip-path + opacity (no slide) */
    transform: none;
    opacity: 0;
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
    transition:
      clip-path 0.6s cubic-bezier(0.77, 0, 0.18, 1),
      -webkit-clip-path 0.6s cubic-bezier(0.77, 0, 0.18, 1),
      opacity 0.4s ease 0.05s,
      visibility 0s linear 0.6s;
  }
  body.nav-open .nav-drawer {
    transform: none;
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
    transition:
      clip-path 0.6s cubic-bezier(0.77, 0, 0.18, 1),
      -webkit-clip-path 0.6s cubic-bezier(0.77, 0, 0.18, 1),
      opacity 0.4s ease,
      visibility 0s linear 0s;
  }

  /* Inner content rises with a slight delay/fade — garage-like calm reveal */
  .sp-menu-head,
  .sp-menu-body {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.4s ease,
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.nav-open .sp-menu-head { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
  body.nav-open .sp-menu-body { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }

  /* ===== SP nav — garage.co.jp-style floating glass pill ===== */
  .nav {
    position: fixed;
    top: 10px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 58px;
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(36px) saturate(160%);
    backdrop-filter: blur(36px) saturate(160%);
    border-radius: 12px;
    border: 1px solid rgba(11, 13, 16, 0.06);
    border-bottom: 1px solid rgba(11, 13, 16, 0.06);
    box-shadow: 0 5px 14px rgba(0,0,0,0.08);
    /* keep slide-in transform from PC base, only override transition curve */
    transition:
      transform 0.8s var(--ease-main),
      opacity 0.4s ease,
      background 0.3s ease;
    z-index: 100;
  }
  .nav .inner {
    height: 100%;
    padding: 0 14px 0 16px;
    max-width: none;
  }
  .nav .brand img {
    height: 18px;
    filter: none;
  }
  .nav .brand .tag-sp {
    color: rgba(11, 13, 16, 0.7);
    border-left-color: rgba(11, 13, 16, 0.18);
  }
  .nav-toggle {
    border-color: rgba(11, 13, 16, 0.25);
    width: 38px;
    height: 38px;
  }
  .nav-toggle .bar { background: var(--ink); }

  /* Adjust hero offset for the floating header */
  .hero { padding-top: 96px; }

  /* ----- Header inside drawer ----- */
  .sp-menu-head {
    flex-shrink: 0;
    padding: 64px 22px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0B0D10;
  }
  .sp-menu-brand { display: flex; flex-direction: column; gap: 2px; }
  .sp-menu-brand-en {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1;
  }
  .sp-menu-brand-jp {
    font-family: var(--font-jp);
    font-size: 9.5px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.18em;
  }
  .sp-menu-close {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
  }
  .sp-menu-close svg { display: block; }

  /* ----- Scrollable body ----- */
  .sp-menu-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* ----- Categories ----- */
  .sp-menu-cats { padding: 8px 0 0; }
  .sp-menu-cat {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .sp-cat-head {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    color: #fff;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font: inherit;
  }
  .sp-cat-titles { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
  .sp-cat-en {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: #fff;
  }
  .sp-cat-sub {
    font-family: var(--font-jp);
    font-size: 11.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
  }
  .sp-cat-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  .sp-cat-toggle svg { width: 16px; height: 16px; }
  .sp-cat-head[aria-expanded="true"] .sp-cat-toggle { transform: rotate(45deg); }

  .sp-cat-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sp-cat-body.is-open {
    /* max-height set inline by JS based on content */
  }
  .sp-cat-body > a {
    display: flex !important;
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 22px;
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  .sp-cat-body > a:first-child { border-top: none; padding-top: 4px; }
  .sp-cat-body > a:last-child { padding-bottom: 16px; }
  .nav-drawer .sp-cat-body > a .jp,
  .sp-cat-body > a .jp {
    font-family: var(--font-jp);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    margin-left: 0 !important;
  }
  .sp-cat-body > a .en {
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: 0;
  }

  /* Direct-link category row (News) */
  .sp-menu-cat-link {
    padding: 18px 22px;
    text-decoration: none;
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .sp-menu-cat-link .sp-cat-arrow {
    font-family: var(--font-en);
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
  }

  /* ----- CTA block ----- */
  .sp-menu-cta {
    padding: 28px 22px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .sp-menu-cta-copy {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
  }
  .nav-drawer a.sp-menu-cta-btn,
  .sp-menu-cta-btn {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #fff !important;
    color: #0B0D10 !important;
    padding: 12px 16px;
    min-height: 0;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-jp);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    gap: 10px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 6px 18px rgba(0,0,0,0.3);
    transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease;
  }
  .sp-menu-cta-btn:hover,
  .sp-menu-cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 0 rgba(255,255,255,0.04), 0 10px 24px rgba(0,0,0,0.4);
  }
  .sp-menu-cta-btn > span { color: #0B0D10 !important; }
  .sp-menu-cta-btn svg {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    padding: 7px;
    background: #0B0D10;
    color: #fff !important;
    border-radius: 999px;
    box-sizing: border-box;
    transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .sp-menu-cta-btn:hover svg,
  .sp-menu-cta-btn:active svg { transform: translateX(3px); }
  .sp-menu-cta-btn svg path { stroke: #fff !important; }

  /* ----- Sub-links + foot ----- */
  .sp-menu-foot { padding: 22px 22px 40px; }
  .sp-menu-foot > a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 11px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 12px;
  }
  .sp-menu-foot > a .jp {
    font-family: var(--font-jp);
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
  }
  .sp-menu-foot > a .en {
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .sp-menu-foot-bottom {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .sp-menu-lang {
    display: none;
    align-items: center;
    gap: 14px;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .sp-menu-lang-active { color: #fff; }
  .sp-menu-lang-sep { color: rgba(255,255,255,0.35); }
  .sp-menu-lang-muted { color: rgba(255,255,255,0.55); }
  .sp-menu-copyright {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
  }

  /* Garage-style: keep nav pill visible while menu is open; hamburger morphs to X */
  body.nav-open .nav { background: rgba(11,13,16,0.85); }
  /* Hide drawer's internal header — nav pill above does the job */
  .sp-menu-head { display: none; }
  /* Give drawer body room for the floating nav pill (top:10 + height:58 + 12 buffer) */
  .sp-menu-body { padding-top: 80px; }
  /* Slower hamburger animation to match drawer easing */
  .nav-toggle .bar {
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.3s ease;
  }

  .nav-overlay { display: none !important; }
}

/* ===== Lang switch (decorative) ===== */
.nav .lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-left: 16px;
  transition: all 0.2s var(--ease-dg);
}
.nav .lang:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
@media (max-width: 880px) {
  .nav .lang { display: none; }
}

/* ============================================================
   ENHANCEMENTS v3 — serif accents / Hero side cards / Mega 3-col
   ============================================================ */

:root { --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; }

/* ===== Serif accent on italic display text ===== */
.section-title em,
.section-title .accent,
.hero h1 .accent,
.page-hero h1 em,
.brief-head .lhs h2 em,
.contact h2 em,
.group-brief .lhs h3 em,
.purpose-big h3 em,
.mega-panel .mega-title em,
.message-portrait .name-en em,
.foot-brand .logo em,
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
/* Slightly heavier weight at very large sizes for legibility */
.hero h1 .accent,
.page-hero h1 em,
.contact h2 em,
.purpose-big h3 em {
  font-weight: 500;
}
/* serif color tweaks for dark sections */
.hero h1 .accent { color: rgba(255,255,255,0.72); }
.page-hero h1 em { color: rgba(255,255,255,0.7); }
.contact h2 em { color: rgba(255,255,255,0.6); }
.purpose-big h3 em { color: rgba(255,255,255,0.6); }
/* light sections accent: subtle ink-2 */
.section-title em,
.section-title .accent,
.brief-head .lhs h2 em,
.group-brief .lhs h3 em,
.mega-panel .mega-title em { color: var(--ink-2); }

/* ===== Hero: 2-column grid with side cards (PC) ===== */
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: end;
}
.hero-main {
  display: contents; /* let children participate directly in parent grid */
}
/* Re-position the existing hero pieces into the first column via explicit grid placement */
.hero-grid > .hero-meta,
.hero-grid > h1,
.hero-grid > .hero-sub,
.hero-grid > .hero-body { grid-column: 1; }
.hero-grid > .hero-aside { grid-column: 2; grid-row: 1 / span 4; align-self: end; }

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  align-self: end;
}
.hero-card {
  display: block;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 22px 22px 18px;
  color: #fff;
  transition: background 0.3s var(--ease-dg), border-color 0.3s var(--ease-dg), transform 0.3s var(--ease-dg);
}
.hero-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.42);
  transform: translateY(-2px);
}
.hero-card .hc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-card .hc-label .hc-date { color: rgba(255,255,255,0.85); }
.hero-card .hc-eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-card .hc-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 14px;
}
.hero-card .hc-title em {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.hero-card .hc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-card .hc-link .arrow { font-family: var(--font-mono); transition: transform 0.2s var(--ease-dg); }
.hero-card:hover .hc-link .arrow { transform: translate(2px, -2px); }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 300px; gap: 40px; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-grid > .hero-aside { grid-column: 1; grid-row: auto; }
  .hero-card { padding: 18px 20px 16px; }
  .hero-card .hc-title { font-size: 14.5px; }
}

/* ===== Mega menu 3-column (visual / lhs / grid) ===== */
.mega-panel .mega-inner {
  display: grid;
  grid-template-columns: 220px 260px 1fr;
  gap: 40px;
}
.mega-panel .mega-visual {
  border-right: 1px solid var(--line);
  padding-right: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.mega-panel .mega-visual .mv-num {
  font-family: var(--font-en);
  font-weight: 200;
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
  white-space: nowrap;
  max-width: 100%;
}
.mega-panel .mega-visual .mv-num em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ink-2);
}
.mega-panel .mega-visual .mv-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mega-panel .mega-visual .mv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.mega-panel .mega-visual .mv-tag {
  font-family: var(--font-jp);
  font-size: 10.5px;
  color: var(--ink-2);
  padding: 4px 10px;
  border: 1px solid var(--line);
  letter-spacing: 0.02em;
}
@media (max-width: 1080px) {
  .mega-panel .mega-inner { grid-template-columns: 180px 220px 1fr; gap: 24px; }
  .mega-panel .mega-visual .mv-num { font-size: 60px; }
}

/* ============================================================
   METHOD page
   ============================================================ */
.method-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.method-filter .mf-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease-dg);
}
.method-filter .mf-chip .mc-jp {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 500;
  color: var(--mute);
}
.method-filter .mf-chip:hover { background: var(--ink); color: #fff; }
.method-filter .mf-chip:hover .mc-jp { color: rgba(255,255,255,0.7); }
.method-filter .mf-chip.is-active { background: var(--ink); color: #fff; }
.method-filter .mf-chip.is-active .mc-jp { color: rgba(255,255,255,0.7); }

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.method-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease-dg), transform 0.25s var(--ease-dg);
}
.method-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.method-card .mc-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-card .mc-cover .mc-cover-num {
  font-family: var(--font-en);
  font-weight: 200;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.9;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.04em;
}
.method-card .mc-cover .mc-cover-num em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.32);
}
.method-card .mc-cover .mc-cat {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.method-card .mc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.method-card .mc-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.method-card .mc-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 12px;
}
.method-card .mc-excerpt {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
  margin-bottom: 18px;
  flex: 1;
}
.method-card .mc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.method-card:hover .mc-link .arrow { transform: translate(2px, -2px); }
.method-card .mc-link .arrow { font-family: var(--font-mono); transition: transform 0.2s var(--ease-dg); }
@media (max-width: 1024px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .method-grid { grid-template-columns: 1fr; }
  .method-card .mc-body { padding: 20px; }
  .method-filter { gap: 6px; margin-bottom: 32px; }
  .method-filter .mf-chip { padding: 8px 14px; font-size: 11px; }
}

/* ============================================================
   Article page (Method detail)
   ============================================================ */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-meta .am-cat { color: rgba(255,255,255,0.85); }

.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-toc {
  background: var(--bg-faint);
  border: 1px solid var(--line);
  padding: 28px 32px;
  margin-bottom: 64px;
}
.article-toc .toc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-toc ol {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-toc li {
  counter-increment: toc;
  font-family: var(--font-jp);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-2);
  padding-left: 36px;
  position: relative;
}
.article-toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0; top: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.08em;
}
.article-toc li a { transition: color 0.2s; }
.article-toc li a:hover { color: var(--ink); }

.article-lede {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 2;
  color: var(--ink);
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.article-section {
  margin-bottom: 72px;
}
.article-section h2 {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
  letter-spacing: -0.005em;
}
.article-section h2 .sec-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 400;
}
.article-section h3 {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 2px solid var(--ink);
}
.article-section h3 .h3-en {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}
.article-section p {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 2;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.article-section p strong, .article-section p .hl {
  color: var(--ink);
  font-weight: 700;
}
.article-section ul, .article-section ol {
  margin: 0 0 24px 0;
  padding-left: 0;
  list-style: none;
}
.article-section li {
  font-family: var(--font-jp);
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-2);
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.article-section li::before {
  content: "—";
  position: absolute;
  left: 4px; top: 10px;
  color: var(--mute);
}
.article-section ol { counter-reset: oli; }
.article-section ol li { counter-increment: oli; }
.article-section ol li::before {
  content: counter(oli, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 600;
  top: 12px;
}
.article-section .callout {
  background: var(--bg-faint);
  border-left: 3px solid var(--ink);
  padding: 24px 28px;
  margin: 32px 0;
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
}
.article-section .callout .cl-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.article-section .callout strong, .article-section .callout em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
}
.article-section .case {
  border: 1px solid var(--line);
  padding: 28px;
  margin: 24px 0;
  background: #fff;
}
.article-section .case .case-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #fff;
  background: var(--ink);
  padding: 4px 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-section .case h4 {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.5;
}
.article-section .case p:last-child { margin-bottom: 0; }

.article-cta-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 56px 0 32px;
}
.article-cta-stack .acta {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color 0.2s, transform 0.2s var(--ease-dg);
}
.article-cta-stack .acta:hover { border-color: var(--ink); transform: translateY(-2px); }
.article-cta-stack .acta-body .acta-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.article-cta-stack .acta-body .acta-ttl {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}
.article-cta-stack .acta-body .acta-desc {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}
.article-cta-stack .acta-arrow {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--ink-2);
  transition: transform 0.2s var(--ease-dg);
}
.article-cta-stack .acta:hover .acta-arrow { transform: translate(4px, -4px); color: var(--ink); }

@media (max-width: 720px) {
  .article-section h2 { font-size: 21px; }
  .article-section h3 { font-size: 15.5px; }
  .article-section p, .article-section li { font-size: 14px; }
  .article-toc { padding: 22px 20px; }
  .article-section .case { padding: 22px 20px; }
  .article-cta-stack .acta { padding: 22px 20px; grid-template-columns: 1fr; }
}

/* ============================================================
   Structure Notes (Insights)
   ============================================================ */
.insights-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.insights-filter .if-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease-dg);
}
.insights-filter .if-chip:hover { background: var(--ink); color: #fff; }
.insights-filter .if-chip.is-active { background: var(--ink); color: #fff; }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.insights-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s var(--ease-dg), background 0.25s var(--ease-dg);
  cursor: pointer;
  min-height: 260px;
}
.insights-card:hover { padding-left: 14px; background: var(--bg-faint); }
.insights-card:nth-child(3n) { border-right: none; padding-right: 0; }
.insights-card .ic-cat {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.insights-card .ic-cat .ic-num {
  color: var(--ink);
  font-weight: 600;
  margin-right: 10px;
}
.insights-card .ic-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.insights-card .ic-desc {
  font-family: var(--font-jp);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-2);
  margin-bottom: 18px;
  flex: 1;
}
.insights-card .ic-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.08em;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.insights-card .ic-meta .ic-tags {
  display: flex;
  gap: 8px;
}
.insights-card .ic-meta .ic-tag {
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.insights-card .ic-meta .ic-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.insights-card .ic-meta .ic-link .arrow { transition: transform 0.2s var(--ease-dg); }
.insights-card:hover .ic-meta .ic-link .arrow { transform: translate(3px, -3px); }

@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-card:nth-child(3n) { border-right: 1px solid var(--line); padding-right: 28px; }
  .insights-card:nth-child(2n) { border-right: none; padding-right: 0; }
}
@media (max-width: 720px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insights-card { border-right: none !important; padding-right: 0 !important; padding-left: 0 !important; min-height: auto; }
  .insights-card:hover { padding-left: 0 !important; }
}

/* Article body for Insights — reuse .article-section but with light surroundings */
.insights-article-hero {
  padding: calc(var(--nav-h) + 72px) 0 64px;
  background: var(--bg-faint);
  border-bottom: 1px solid var(--line);
}
.insights-article-hero .crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.insights-article-hero .crumb a { color: var(--mute); transition: color 0.2s; }
.insights-article-hero .crumb a:hover { color: var(--ink); }
.insights-article-hero .crumb .sep { margin: 0 12px; color: var(--line); }
.insights-article-hero .ia-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #fff;
  background: var(--ink);
  padding: 5px 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.insights-article-hero h1 {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 840px;
}
.insights-article-hero .ia-desc {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.95;
  color: var(--ink-2);
  max-width: 760px;
  margin-bottom: 32px;
}
.insights-article-hero .ia-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.1em;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.insights-article-hero .ia-meta .ia-tags {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.insights-article-hero .ia-meta .ia-tag {
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--ink-2);
  padding: 3px 9px;
  border: 1px solid var(--line);
  letter-spacing: 0.02em;
}

.insights-article-body {
  max-width: 760px;
  margin: 0 auto;
}
.key-points {
  background: var(--bg-faint);
  border-left: 3px solid var(--ink);
  padding: 28px 32px;
  margin-bottom: 56px;
}
.key-points .kp-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.key-points ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.key-points li {
  font-family: var(--font-jp);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink);
  padding-left: 28px;
  position: relative;
}
.key-points li::before {
  content: "→";
  position: absolute;
  left: 0; top: 2px;
  font-family: var(--font-mono);
  color: var(--ink);
}

.related-articles {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--ink);
}
.related-articles .ra-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.related-articles .ra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.related-articles .ra-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s var(--ease-dg);
}
.related-articles .ra-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.related-articles .ra-card .ra-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.related-articles .ra-card .ra-ttl {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
@media (max-width: 720px) {
  .related-articles .ra-grid { grid-template-columns: 1fr; }
  .insights-article-hero { padding: calc(var(--nav-h) + 40px) 0 40px; }
  .insights-article-hero .crumb { margin-bottom: 24px; }
  .insights-article-hero h1 { font-size: 22px; }
  .insights-article-hero .ia-desc { font-size: 14px; }
  .key-points { padding: 22px 20px; }
  .key-points li { font-size: 13.5px; padding-left: 22px; }
}

/* TOP page Structure Notes section */
.notes-brief {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.notes-brief .nb-card {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: padding-left 0.25s var(--ease-dg), background 0.25s var(--ease-dg);
}
.notes-brief .nb-card:hover { padding-left: 14px; background: var(--bg-faint); }
.notes-brief .nb-card:last-child { border-right: none; padding-right: 0; }
.notes-brief .nb-card .nb-cat {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.notes-brief .nb-card .nb-ttl {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 14px;
}
.notes-brief .nb-card .nb-desc {
  font-family: var(--font-jp);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-2);
  flex: 1;
  margin-bottom: 18px;
}
.notes-brief .nb-card .nb-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.08em;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notes-brief .nb-card .nb-link {
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.notes-brief .nb-card .nb-link .arrow { transition: transform 0.2s var(--ease-dg); }
.notes-brief .nb-card:hover .nb-link .arrow { transform: translate(3px, -3px); }
@media (max-width: 880px) {
  .notes-brief { grid-template-columns: 1fr; }
  .notes-brief .nb-card { border-right: none; padding-right: 0; padding-left: 0 !important; }
  .notes-brief .nb-card:hover { padding-left: 0 !important; }
}

/* ============================================================
   Article figure (SVG inline diagrams)
   ============================================================ */
.article-figure {
  margin: 48px 0 56px;
  padding: 32px;
  background: var(--bg-faint);
  border: 1px solid var(--line);
}
.article-figure .af-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-figure .af-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.article-figure svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.article-figure .af-caption {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-jp);
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-2);
}
.article-figure .af-caption strong { color: var(--ink); font-weight: 700; }
/* Inline SVG default styles */
.article-figure svg text {
  font-family: 'Manrope', 'Noto Sans JP', sans-serif;
  fill: var(--ink);
}
.article-figure svg .svg-mono { font-family: 'JetBrains Mono', monospace; }
.article-figure svg .svg-jp { font-family: 'Noto Sans JP', sans-serif; }
.article-figure svg .svg-serif { font-family: 'Playfair Display', serif; font-style: italic; }
.article-figure svg .svg-mute { fill: var(--mute); }
.article-figure svg .svg-line { stroke: var(--ink); fill: none; }
.article-figure svg .svg-line-light { stroke: var(--line); fill: none; }
.article-figure svg .svg-fill { fill: var(--ink); }
.article-figure svg .svg-fill-soft { fill: var(--bg-faint); }
.article-figure svg .svg-bg-dark { fill: var(--ink); }
.article-figure svg text[fill="#fff"],
.article-figure svg text[fill="white"],
.article-figure svg text[fill="#FFFFFF"],
.article-figure svg .svg-white { fill: #fff !important; }
@media (max-width: 720px) {
  .article-figure {
    padding: 22px 18px;
    margin: 32px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  .article-figure .af-title { font-size: 15px; padding-right: 92px; }
  .article-figure svg { min-width: 720px; }
  .article-figure::after {
    content: '→ 横スワイプで全体表示';
    position: absolute;
    top: 24px;
    right: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    color: var(--mute);
    letter-spacing: 0.06em;
    pointer-events: none;
    z-index: 2;
    background: var(--bg-faint);
    padding: 2px 6px;
  }
}

/* ============================================================
   Page Hero with video background variant
   ============================================================ */
.page-hero.has-video {
  background: var(--bg-dark);
  isolation: isolate;
}
.page-hero.has-video .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-hero.has-video .page-hero-bg video,
.page-hero.has-video .page-hero-bg img.page-hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero.has-video .page-hero-bg img.page-hero-poster {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.6s var(--ease-img);
}
.page-hero.has-video .page-hero-bg video {
  z-index: 2;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s var(--ease-img) 0.2s, transform 1.6s var(--ease-img) 0.2s;
}
.page-hero.has-video .page-hero-bg video.is-ready { opacity: 1; transform: scale(1); }
.page-hero.has-video .page-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    rgba(14,17,22,0.62),
    rgba(14,17,22,0.78)
  );
}
.page-hero.has-video .page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 100px 100%;
}
.page-hero.has-video .container { position: relative; z-index: 5; }
@media (prefers-reduced-motion: reduce) {
  .page-hero.has-video .page-hero-bg video { display: none; }
}
@media (max-width: 880px) {
  .page-hero.has-video .page-hero-bg { transform: none !important; transition: none !important; }
}

/* ===== Remove italic-serif accent across the site ===== */
em,
.section-title em,
.section-title .accent,
.hero h1 .accent,
.page-hero h1 em,
.brief-head .lhs h2 em,
.contact h2 em,
.group-brief .lhs h3 em,
.purpose-big h3 em,
.mega-panel .mega-title em,
.message-portrait .name-en em,
.foot-brand .logo em,
.hero-card .hc-title em,
.serif {
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  color: inherit !important;
}

/* ============================================================
   SP polish — TOP page (Claude Design handoff 2026-05-27)
   Editorial typography / spacing / hierarchy for ≤880px only
   ============================================================ */

/* --- Nav: SP brand stack + mini CTA pill --- */
.nav .brand .tag-sp { display: none; }
.nav .nav-cta-sp { display: none; }
.hero-cta-sp { display: none; }

@media (max-width: 880px) {
  /* Brand: hide both tags on SP (logo only) */
  .nav .brand .tag-pc { display: none; }
  .nav .brand .tag-sp { display: none; }
  .nav .brand { gap: 10px; }
  .nav .brand img { height: 18px; }

  /* SP-only "無料相談" pill before hamburger */
  .nav .nav-cta-sp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-jp);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-right: 8px;
    line-height: 1;
  }
  body.nav-open .nav .nav-cta-sp { display: none; }

  /* --- Hero: editorial framing --- */
  .hero {
    padding: calc(var(--nav-h) + 72px) 0 88px;
    min-height: 100svh;
  }
  .hero .container { padding-left: 22px; padding-right: 22px; }
  .hero-grid { gap: 0; }

  .hero-meta {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 44px;
  }
  .hero-meta .mono-label {
    position: relative;
    width: auto;
    padding-left: 36px;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.55);
  }
  .hero-meta .mono-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.45);
  }
  /* Hide the "EAP, INC. ─ Tokyo, Japan" label; keep "Corporate Profile / 2026" as editorial eyebrow */
  .hero-meta .mono-label:nth-child(1) { display: none; }
  .hero-meta .mono-label .dot { display: none; }

  .hero h1 {
    font-size: clamp(48px, 14vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 32px;
    font-weight: 300;
  }
  .hero h1 .accent {
    font-family: 'Playfair Display', var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.62);
    letter-spacing: -0.01em;
  }

  .hero-sub {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 320px;
    font-weight: 500;
  }

  .hero-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .hero-body .lede {
    font-size: 13.5px;
    line-height: 1.95;
    color: rgba(255,255,255,0.78);
    max-width: 100%;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
  }
  .hero-stats .stat .k {
    font-size: 9px;
    letter-spacing: 0.16em;
    margin-bottom: 6px;
  }
  .hero-stats .stat .v { font-size: 17px; }
  .hero-stats .stat .v small { font-size: 10.5px; margin-left: 2px; }

  /* SP-only hero CTAs */
  .hero-cta-sp {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    margin-top: 36px;
    position: relative;
    z-index: 5;
  }
  .hero-cta-sp-primary,
  .hero-cta-sp-ghost {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-jp);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    gap: 12px;
    line-height: 1;
  }
  .hero-cta-sp-primary {
    background: #fff;
    color: #0B0D10;
  }
  .hero-cta-sp-primary svg { color: #0B0D10; }
  .hero-cta-sp-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.22);
    font-weight: 400;
  }
  .hero-cta-sp-ghost svg { color: #fff; opacity: 0.8; }
  .hero-scroll-sp {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
  }
  .hero-scroll-sp-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: rgba(255,255,255,0.35);
  }

  /* Hero-aside cards: tighter padding + spacing */
  .hero-aside { gap: 10px; margin-top: 12px; }
  .hero-card {
    background: rgba(255,255,255,0.05);
    padding: 18px 18px 16px;
    border-radius: 4px;
  }
  .hero-card .hc-label {
    font-size: 9.5px;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
  }
  .hero-card .hc-title { font-size: 14px; line-height: 1.55; margin-bottom: 12px; }
  .hero-card .hc-eyebrow { font-size: 10px; }
  .hero-card .hc-link { font-size: 10.5px; padding-top: 10px; }

  /* Marquee: pull below content, slimmer */
  .marquee {
    bottom: 0;
    border-bottom: none;
    background: rgba(0,0,0,0.4);
    padding: 8px 0;
  }
  .marquee .track { font-size: 9.5px; letter-spacing: 0.16em; }

  /* --- Section heads (brief-head) — design-aligned --- */
  .brief-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .brief-head .lhs .label {
    position: relative;
    padding-left: 32px;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--mute);
    margin-bottom: 16px;
  }
  .brief-head .lhs .label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--mute);
  }
  .brief-head .lhs .label .num {
    margin-right: 10px;
    color: var(--ink);
  }
  .brief-head .lhs h2 {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 300;
  }
  .brief-head .lhs .jp {
    font-size: 12.5px;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 0.06em;
    color: var(--ink-2);
  }
  .brief-head .view-all {
    width: auto;
    align-self: flex-start;
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: 0.14em;
    background: transparent;
    border: 1px solid var(--ink);
  }

  /* --- Section base: tighter on SP per design (88-96px) --- */
  section.block {
    padding: clamp(72px, 18vw, 96px) 0;
  }

  /* About brief: cleaner stack */
  .about-brief { gap: 24px; }
  .about-brief .lhs .copy { font-size: 22px; line-height: 1.4; }

  /* News brief items: slimmer date row */
  .news-list .news-item {
    padding: 18px 0;
    gap: 6px 12px;
  }
  .news-list .news-item .news-date {
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: var(--mute);
  }
  .news-list .news-item .news-content .news-title {
    font-size: 14.5px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .news-list .news-item .news-content .news-body {
    font-size: 12.5px;
    line-height: 1.75;
  }
  .news-list .news-item .news-tag {
    font-size: 9.5px;
    letter-spacing: 0.14em;
    padding: 3px 8px;
  }
}

/* ============================================================
   SP — Digital Garage-inspired soft cards + pills (TOP page)
   Light bg sections / white rounded cards / hashtag chips
   ============================================================ */
@media (max-width: 880px) {

  /* ===== News brief section: soft light background ===== */
  .news-brief {
    background: #F2EFE9 !important;
    color: #1a1a1a;
  }
  .news-brief .container { padding: 0 16px; }
  .news-brief .brief-head {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 22px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .news-brief .brief-head .lhs { display: flex; flex-direction: column; gap: 0; }
  .news-brief .brief-head .lhs .label {
    position: relative;
    padding-left: 26px;
    color: #1a1a1a;
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0;
  }
  .news-brief .brief-head .lhs .label::before {
    content: "✻";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    width: auto;
    height: auto;
    color: #1a1a1a;
    font-size: 16px;
    font-family: var(--font-en);
  }
  .news-brief .brief-head .lhs .label .num { display: none; }
  .news-brief .brief-head .lhs h2,
  .news-brief .brief-head .lhs .jp { display: none; }

  .news-brief .brief-head .view-all {
    background: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-family: var(--font-jp);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.04);
    width: auto;
    align-self: center;
  }
  .news-brief .brief-head .view-all:hover { background: #fff; color: #1a1a1a; }
  .news-brief .brief-head .view-all .arrow { display: none; }

  /* White rounded cards */
  .news-brief .news-list {
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .news-brief .news-item {
    background: #fff;
    border-radius: 18px;
    padding: 26px 22px 24px;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-areas: none;
    gap: 14px;
  }
  .news-brief .news-item:hover {
    padding-left: 22px;
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }
  .news-brief .news-item .news-date {
    color: #999;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    padding-top: 0;
    font-weight: 400;
  }
  .news-brief .news-item .news-content { grid-area: auto; }
  .news-brief .news-item .news-content .news-title {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.01em;
  }
  .news-brief .news-item .news-content .news-body { display: none; }
  .news-brief .news-item .news-tags {
    grid-area: auto;
    padding-top: 0;
    gap: 8px;
  }
  .news-brief .news-item .news-tag {
    color: #4338ca;
    border: 1px solid #4338ca;
    background: transparent;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 400;
    border-radius: 4px;
    letter-spacing: 0;
    line-height: 1.3;
  }
  .news-brief .news-item .news-tag::before { content: "# "; }
  .news-brief .news-item .news-arrow { display: none; }

  /* ===== Hero h1: stronger serif italic emphasis ===== */
  .hero h1 .accent {
    font-family: 'Playfair Display', var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.015em;
  }

  /* ===== Hero-aside cards: bigger rounded image-style cards ===== */
  .hero-aside {
    gap: 14px;
    margin-top: 20px;
  }
  .hero-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 26px 24px 22px;
    position: relative;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero-card .hc-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
  }
  .hero-card .hc-title {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 0;
    color: #fff;
  }
  .hero-card .hc-eyebrow { margin-top: 18px; font-size: 10px; }
  .hero-card .hc-link {
    align-self: flex-end;
    padding: 9px 18px 9px 20px;
    border-radius: 999px;
    background: #fff;
    color: #0E1116;
    border-top: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-top: 16px;
    gap: 8px;
    width: auto;
    flex: 0 0 auto;
  }
  .hero-card .hc-link span:first-child {
    font-family: var(--font-jp);
    font-weight: 500;
  }
  .hero-card .hc-link .arrow {
    color: #0E1116;
    font-family: var(--font-en);
  }

  /* ===== About-brief: huge serif italic copy on SP (light bg) ===== */
  .about-brief .lhs .copy {
    font-family: 'Playfair Display', var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(30px, 8.4vw, 44px);
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.015em;
  }
  .about-brief .lhs .tagline {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--mute);
    text-transform: uppercase;
    margin-top: 14px;
  }
  .about-brief .rhs p {
    font-size: 13.5px;
    line-height: 1.95;
    color: var(--ink-2);
  }

  /* ===== Apply soft-card / pill style to ALL brief-head View All on SP ===== */
  .brief-head .view-all {
    border-radius: 999px;
    padding: 12px 22px;
    font-family: var(--font-jp);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
}

/* ============================================================
   Page transitions — garage.co.jp-inspired smooth enter/leave
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Apply leave animation to body's content children (not body itself),
     so .nav (fixed) doesn't inherit a transformed containing block during navigation.
     No enter animation on reload — only leave on click-through. */
  html.is-page-leaving body > header,
  html.is-page-leaving body > main,
  html.is-page-leaving body > section,
  html.is-page-leaving body > article,
  html.is-page-leaving body > footer,
  html.is-page-leaving body > .sp-section-cards,
  html.is-page-leaving body > .sticky-cta {
    animation: pageLeave 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    pointer-events: none;
    transform-origin: center 30%;
  }
  @keyframes pageLeave {
    from { opacity: 1; transform: scale(1);     filter: none; }
    to   { opacity: 0; transform: scale(0.96);  filter: blur(14px) brightness(1.35); }
  }
  html.is-page-leaving { overflow: hidden; }
  /* Boot splash must stay sharp while body fades in */
  html.is-page-leaving .boot-splash { animation: none; filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  html.is-page-leaving body { opacity: 0; transition: opacity 0.15s linear; pointer-events: none; }
}

/* ============================================================
   SP — Hide redundant brief sections (replaced by section cards)
   ============================================================ */
@media (max-width: 880px) {
  [data-sp-hide] { display: none !important; }
  /* Hide hero marquee on SP TOP per spec */
  .hero .marquee { display: none !important; }
  /* Hide "Corporate Profile / 2026" eyebrow + scroll indicator + hero CTAs on SP */
  .hero .hero-meta { display: none !important; }
  .hero-cta-sp { display: none !important; }
  /* Hide Contact "07 Contact" label and English h2 on SP */
  .contact .contact-tag { display: none !important; }
  .contact h2 { display: none !important; }
}

/* ============================================================
   SP — Section cards (Company / Business / News / Group)
   Image-background entry-point cards on TOP page mobile view
   ============================================================ */
.sp-section-cards { display: none; }

@media (max-width: 880px) {
  .sp-section-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 40px 16px 8px;
    background: var(--bg);
  }
  .sp-section-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
    background: #14171C;
    min-height: 520px;
    isolation: isolate;
  }
  .sp-section-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 0.6s var(--ease-dg, ease-out);
    pointer-events: none;
    background: #0E1116;
  }
  .sp-section-card-video.is-playing { transform: scale(1); }
  .sp-section-card:active .sp-section-card-video { transform: scale(1.05); }
  @media (prefers-reduced-motion: reduce) {
    .sp-section-card-video { display: none; }
  }
  .sp-section-card-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(14,17,22,0.35) 0%, rgba(14,17,22,0.55) 35%, rgba(14,17,22,0.86) 100%),
      radial-gradient(120% 80% at 80% 10%, rgba(14,17,22,0) 0%, rgba(14,17,22,0.35) 100%);
    pointer-events: none;
  }
  .sp-section-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 36px 26px 30px;
    min-height: 520px;
    color: #fff;
  }
  .sp-section-card-crumb {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .sp-section-card-crumb .sep {
    color: rgba(255,255,255,0.4);
    font-family: var(--font-en);
    font-size: 11px;
  }
  .sp-section-card-title {
    font-family: var(--font-en);
    font-size: clamp(48px, 14vw, 72px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.98;
    color: #fff;
    margin: 0 0 28px;
  }
  .sp-section-card-jp {
    font-family: var(--font-jp);
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.55;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: 0.01em;
  }
  .sp-section-card-rule {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.22);
    margin-bottom: 22px;
  }
  .sp-section-card-desc {
    font-family: var(--font-jp);
    font-size: 13px;
    line-height: 1.95;
    color: rgba(255,255,255,0.78);
    margin: 0 0 28px;
    letter-spacing: 0.02em;
  }
  .sp-section-card-cta {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 22px;
    background: rgba(255,255,255,0.96);
    color: #0E1116;
    border-radius: 999px;
    font-family: var(--font-jp);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
  }
  .sp-section-card-cta-text { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.06em; }
  .sp-section-card-cta-arrow { font-family: var(--font-mono); font-size: 13px; color: #0E1116; }
}

/* ============ STICKY FOOTER CTA — removed per user request ============ */
.sticky-cta { display: none !important; }

/* ============================================================
   GLOBAL ROUNDED CORNERS — match Contact CTA pill aesthetic
   ============================================================ */
:root {
  --r-pill: 999px;   /* full pill (buttons / chips) */
  --r-card: 14px;    /* cards, panels, large boxes */
  --r-tile: 10px;    /* smaller tiles, list items */
}

/* --- BUTTON-LIKE: full pill --- */
.group-cta,
.contact .btn,
.contact .btn.ghost,
.brief-head .view-all,
.hero-cta-sp-primary,
.hero-cta-sp-ghost,
.sp-section-card-cta,
.method-cta,
.method-cta-pill,
.page-cta a,
.section-cta a,
.news-pager .more,
.read-cta a,
.cta-button,
.btn-pill,
button.btn,
a.btn {
  border-radius: var(--r-pill) !important;
}

/* --- CARD-LIKE: rounded corners --- */
.article-cta-stack .acta,
.hero-card,
.hero-aside .hero-card,
.nb-card,
.notes-brief .nb-card,
.member-card,
.eng-card,
.strength-card,
.mc-card,
.method-card,
.method-cards .mc,
.biz-phase,
.biz-row,
.history-row,
.group-layer,
.group-stack .group-layer,
.about-meta dl,
.about-meta div,
.sp-section-card,
.brief-head .label,
.hero-meta .mono-label,
.section-tag,
.contact-tag,
.label,
.foot-col,
.method-list li,
.method-cats li,
.insights-item,
.is-card {
  border-radius: var(--r-card);
}

/* Logo cells: square frame (no rounded corners) */
.logo-cell {
  border-radius: 0 !important;
  border: 1px solid var(--line, #E5E7EB);
}
/* Works/Proof section: square (no rounded outer container) */
.works-stage,
.works-brief .works-stage,
.works-brief .container { border-radius: 0 !important; }

/* Make section divider lines crisp (no rounded caps from anti-aliasing) */
.section-tag {
  border-top: none !important;
  position: relative !important;
}
.section-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  display: block;
}
.brief-head {
  border-bottom: none !important;
  position: relative !important;
}
.brief-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  display: block;
}

/* ============================================================
   GLOBAL: Crisp 1px decorative lines on all pages
   (Retina sub-pixel anti-aliasing fix — replace border with
    explicitly-sized background block via pseudo-element)
   ============================================================ */

/* News list (news index, top "Latest news") */
.news-list { border-top: none !important; position: relative; }
.news-list::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  display: block;
}

/* Insights grid (insights index) */
.insights-grid { border-top: none !important; position: relative; }
.insights-grid::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  display: block;
}

/* Notes brief (TOP page note cards) */
.notes-brief { border-top: none !important; position: relative; }
.notes-brief::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  display: block;
}

/* Related articles block (article footer) */
.related-articles { border-top: none !important; position: relative; }
.related-articles::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  display: block;
}

/* Members grid (about / company-intro pages) */
.members-grid { border-top: none !important; position: relative; }
.members-grid::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  display: block;
}

/* Strength grid (about / strengths) */
.strength-grid { border-top: none !important; position: relative; }
.strength-grid::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  display: block;
}

/* Article h2 underline (method/news article body) */
.article-section h2 { border-bottom: none !important; position: relative; }
.article-section h2::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  display: block;
}

/* Company profile / contact-info dl: first row top divider */
.company-profile dl:first-child,
.contact-info dl:first-of-type {
  border-top: none !important;
  position: relative;
}
.company-profile dl:first-child::before,
.contact-info dl:first-of-type::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  display: block;
}
/* Blend image white BG into cell white BG (hides embedded rounded white boxes) */
.logo-cell img {
  mix-blend-mode: multiply !important;
}

/* SP responsive grid override — 2 columns on phones, fits viewport */
@media (max-width: 880px) {
  .works-stage {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .logos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .logo-cell {
    aspect-ratio: 16 / 10 !important;
    padding: 18px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .logo-cell img {
    max-width: 55% !important;
    max-height: 45% !important;
    object-fit: contain !important;
  }
}
@media (max-width: 400px) {
  .logo-cell {
    padding: 14px !important;
    aspect-ratio: 16 / 11 !important;
  }
  .logo-cell img {
    max-width: 60% !important;
    max-height: 48% !important;
  }
}


/* --- TILES / smaller items --- */
.biz-brief-phases .phase,
.about-brief,
.group-brief,
.group-diagram,
.notes-brief,
.biz-brief,
.news-list,
.brief-head,
.phase .ph,
.biz-phase .ph-num,
.engine-section .eng-card,
.history-row .h-year,
.member-row .role,
.tag,
.news-tag,
.label .num {
  border-radius: var(--r-tile);
}

/* --- Common chips/badges (mono labels) --- */
.mono-label,
.news-tag,
.nb-cat,
.acta-label,
.news-item .news-tag,
.fl-tag,
.stack-tag {
  border-radius: var(--r-pill);
}

/* --- Phase header chips (Phase 01 ── 描く) ---
   Used on /business/, /index/ -> .biz-brief-phases .phase .ph
   .ph-num inside .biz-phase on /business/ */
.biz-brief-phases .phase .ph,
.biz-phase .ph-num,
.biz-phase {
  border-radius: var(--r-tile);
}

/* --- SVG diagrams: ensure all <rect> use moderate rounding ---
   Target any rect inside .architecture-figure / .business-arch-fig svg.
   This relies on CSS rx property (modern browsers). */
.architecture-figure svg rect,
.business-arch-fig svg rect,
.af-fig svg rect,
section svg rect:not([rx]),
.architecture svg rect {
  rx: 12px;
  ry: 12px;
}

/* ============================================================
   Keep these specific blocks sharp-cornered (per user request)
   ============================================================ */
.biz-phase,
.biz-phase .ph-num,
.biz-brief-phases .phase,
.biz-brief-phases .phase .ph,
.member-card,
.section-tag,
.contact-tag,
.contact .contact-tag {
  border-radius: 0 !important;
}

/* ============================================================
   TOP page (body.page-home): keep boxes sharp-cornered
   ============================================================ */
body.page-home .nb-card,
body.page-home .notes-brief,
body.page-home .about-brief,
body.page-home .biz-brief,
body.page-home .group-brief,
body.page-home .group-diagram,
body.page-home .group-stack .group-layer,
body.page-home .group-layer,
body.page-home .news-list,
body.page-home .news-item,
body.page-home .hero-card,
body.page-home .hero-aside .hero-card,
body.page-home .brief-head,
body.page-home .brief-head .view-all,
body.page-home .label,
body.page-home .biz-brief-phases .phase,
body.page-home .biz-brief-phases .phase .ph,
body.page-home .news-tag,
body.page-home .nb-cat,
body.page-home .article-cta-stack .acta {
  border-radius: 0 !important;
}

/* ============================================================
   PC — show Company + Business section cards on TOP page only
   ============================================================ */
@media (min-width: 881px) {
  body.page-home .sp-section-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 96px clamp(20px, 5vw, 64px);
    background: var(--bg);
  }
  body.page-home .sp-section-card { display: none; }
  body.page-home .sp-section-card[data-pc-show] {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
    background: #14171C;
    min-height: 640px;
    isolation: isolate;
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 0.8s var(--ease-dg, ease-out);
    pointer-events: none;
    background: #0E1116;
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-video.is-playing { transform: scale(1); }
  body.page-home .sp-section-card[data-pc-show]:hover .sp-section-card-video { transform: scale(1.06); }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(14,17,22,0.30) 0%, rgba(14,17,22,0.50) 35%, rgba(14,17,22,0.84) 100%),
      radial-gradient(120% 80% at 80% 10%, rgba(14,17,22,0) 0%, rgba(14,17,22,0.35) 100%);
    pointer-events: none;
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 44px 40px 40px;
    min-height: 640px;
    color: #fff;
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-crumb {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.78);
    text-transform: uppercase;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-crumb .sep {
    color: rgba(255,255,255,0.4);
    font-family: var(--font-en);
    font-size: 12px;
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-title {
    font-family: var(--font-en);
    font-size: clamp(64px, 6vw, 96px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.98;
    color: #fff;
    margin: 0 0 32px;
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-jp {
    font-family: var(--font-jp);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 28px;
    letter-spacing: 0.01em;
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-rule {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.22);
    margin-bottom: 24px;
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-desc {
    font-family: var(--font-jp);
    font-size: 14px;
    line-height: 2;
    color: rgba(255,255,255,0.80);
    margin: 0 0 36px;
    letter-spacing: 0.02em;
    max-width: 440px;
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-cta {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.96);
    color: #0E1116;
    border-radius: 999px;
    font-family: var(--font-jp);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    transition: transform 0.3s var(--ease-dg);
  }
  body.page-home .sp-section-card[data-pc-show]:hover .sp-section-card-cta {
    transform: translateX(3px);
  }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-cta-text { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.06em; }
  body.page-home .sp-section-card[data-pc-show] .sp-section-card-cta-arrow { font-family: var(--font-mono); font-size: 14px; color: #0E1116; }
}
