/* ===== Hikitori corporate — overrides + page CSS ============== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Override brand red to spec */
  --brand: #E8272A;
  --brand-hover: #C9181B;
  --brand-50: #FFF1F1;
  --ink:   #0E0E10;
  --ink-2: #1A1A1D;
  --ink-3: #4A4A4F;
  --ink-4: #7A7A80;
  --line:  #E5E3DE;
  --line-2:#D8D5CE;
  --paper: #FAFAF8;
  --white: #FFFFFF;

  --font-jp-display: 'Zen Kaku Gothic New', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --container: 1240px;
  --pad: 32px;
  --section-y: clamp(80px, 11vw, 160px);
  --header-h: 72px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }

/* ----- Reusable ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow .num {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--brand);
}
.eyebrow .bar {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--brand);
  margin-right: 6px;
  transform: translateY(-4px);
}
.eyebrow.on-dark { color: var(--brand); }
.eyebrow .jp { color: var(--ink-3); font-family: var(--font-jp); font-weight: 500; letter-spacing: 0.05em; }
.eyebrow.on-dark .jp { color: var(--ink-3); }

h1, h2, h3, h4 { margin: 0; }

.section-title {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}
.section-title .en {
  display: block;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-top: 8px;
}
.section-title .en.outline {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}

/* ----- Buttons / CTAs ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  border-radius: 999px;
  transition: all 200ms cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
  position: relative;
}
.btn .arrow {
  width: 14px; height: 14px;
  display: inline-block;
  transition: transform 200ms cubic-bezier(.2,.7,.2,1);
}
.btn:hover .arrow { transform: translate(3px, -3px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,0.04);
}
.btn-primary:hover { background: var(--brand-hover); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-2); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Header CTAs are compact */
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ----- Header ----- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, background 200ms;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 250, 248, 0.95);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark {
  display: flex; align-items: center; gap: 10px;
}
.brand-mark img { height: 26px; width: auto; }
.brand-mark .corp {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.1em;
  padding-left: 10px;
  border-left: 1px solid var(--line-2);
}
.nav-main {
  display: flex; align-items: center; gap: 32px;
}
.nav-main a {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.06em;
  position: relative;
  padding: 6px 0;
}
.nav-main a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms;
}
.nav-main a:hover::after { transform: scaleX(1); }

.header-ctas { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
}
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 1.5px; background: var(--ink);
}
.hamburger span::before { top: -6px; }
.hamburger span::after  { top: 6px; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 200;
  padding: 24px;
  transform: translateY(-100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer-head .brand-mark img { filter: brightness(0) invert(1) sepia(1) hue-rotate(-10deg) saturate(6); }
.mobile-drawer .close {
  width: 40px; height: 40px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.mobile-drawer nav {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-drawer nav a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-jp-display);
  font-weight: 700;
  font-size: 20px;
}
.mobile-drawer nav a .en {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}
.mobile-drawer .drawer-ctas {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 12px;
  padding-bottom: 24px;
}
.mobile-drawer .drawer-ctas .btn { justify-content: space-between; width: 100%; padding: 18px 24px; font-size: 13px; }

/* ================================================================
   HERO — illustration as background, text overlay
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 85% 30%, rgba(232,39,42,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(232,39,42,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #F8F3E9 0%, #F2ECDE 100%);
  color: var(--ink);
  padding: calc(var(--header-h) + 80px) 0 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--brand);
  opacity: 0.85;
  z-index: 3;
}
/* faint grid texture */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,14,16,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,16,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 80%);
}

/* Illustration becomes a background layer */
.hero-illust {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(0, -50%, 0);
  width: 58%;
  max-width: 760px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.hero-illust svg {
  width: 100%;
  height: auto;
}

/* Foreground text container */
.hero-foreground {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text {
  max-width: 640px;
  position: relative;
}
.hero h1 {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: clamp(28px, 4.6vw, 64px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--ink);
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}
.hero h1 .accent { color: var(--brand); }
.hero h1 .break { display: block; white-space: nowrap; }
.hero p.sub {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  max-width: 540px;
  margin-bottom: 48px;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas .btn-primary { padding: 18px 26px; font-size: 13px; }
.hero-ctas .btn-ghost { padding: 18px 26px; font-size: 13px; background: rgba(255,255,255,0.55); backdrop-filter: blur(4px); }

/* gentle floating motion */
.hero-illust .float-a,
.hero-illust .float-b,
.hero-illust .float-c {
  will-change: transform;
  transform-origin: center;
  transform-box: fill-box;
}
.hero-illust .float-a { animation: floatA 7s ease-in-out infinite; }
.hero-illust .float-b { animation: floatB 8s ease-in-out infinite; }
.hero-illust .float-c { animation: floatC 9s ease-in-out infinite; }
.hero-illust .spin    { animation: spin 28s linear infinite; transform-origin: 280px 280px; will-change: transform; }
@keyframes floatA { 0%,100%{transform:translate3d(0,0,0)} 50%{transform:translate3d(0,-8px,0)} }
@keyframes floatB { 0%,100%{transform:translate3d(0,0,0)} 50%{transform:translate3d(0,-12px,0)} }
@keyframes floatC { 0%,100%{transform:translate3d(0,0,0)} 50%{transform:translate3d(0,-6px,0)} }
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.hero-meta {
  position: absolute;
  left: 0; right: 0;
  bottom: 28px;
  display: flex;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-4);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
}
.hero-meta .scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-meta .scroll .line {
  width: 1px; height: 36px; background: rgba(14,14,16,0.18);
  position: relative; overflow: hidden;
}
.hero-meta .scroll .line::before {
  content: ''; position: absolute; top: -100%; left: 0; right: 0;
  height: 100%; background: var(--brand);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

/* ================================================================
   SECTION SCAFFOLD
   ================================================================ */
section { padding: var(--section-y) 0; position: relative; }
section.bg-ink { background: var(--ink); color: #fff; }
section.bg-white { background: #fff; }
section.bg-paper { background: var(--paper); }

.section-head {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
.section-head .label-col .eyebrow { margin-bottom: 16px; }
.section-head .label-col .jp-label {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.2;
}

/* ================================================================
   MISSION
   ================================================================ */
.mission {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,39,42,0.10) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}
.mission .container { position: relative; z-index: 2; }
.mission .eyebrow {
  margin-bottom: 48px;
  justify-content: center;
}
.mission-copy {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: clamp(28px, 4.8vw, 72px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 1100px;
  margin: 0 auto 56px;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}
.mission-copy .accent { color: var(--brand); }
.mission-copy .small-break { display: block; }
.mission-divider {
  width: 48px; height: 2px; background: var(--brand);
  margin: 0 auto 40px;
  position: relative;
  animation: dividerPulse 3s ease-in-out infinite;
}
@keyframes dividerPulse {
  0%, 100% { width: 48px; opacity: 1; }
  50% { width: 80px; opacity: 0.6; }
}
.mission-sub {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 2;
  color: var(--ink-3);
  max-width: 720px;
  margin: 0 auto;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-body p {
  font-family: var(--font-jp);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 2.1;
  letter-spacing: 0.03em;
  color: var(--ink-2);
  margin: 0 0 24px;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}
.about-body p .hl {
  background: linear-gradient(transparent 62%, rgba(232,39,42,0.18) 62%);
  padding: 0 2px;
}
.about-keywords {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-keywords .kw {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.about-keywords .kw:last-child { border-bottom: 1px solid var(--line); }
.about-keywords .kw .idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand);
  font-weight: 500;
}
.about-keywords .kw .jp {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
}
.about-keywords .kw .en {
  margin-left: auto;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-4);
  text-transform: uppercase;
}

/* ================================================================
   SERVICES
   ================================================================ */
.service-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.service-intro .lead {
  font-family: var(--font-jp);
  font-size: 17px;
  line-height: 2;
  color: var(--ink-3);
  max-width: 880px;
  width: 100%;
  white-space: pre-line;
}
@media (max-width: 640px) {
  .service-intro .lead { font-size: 15px; line-height: 1.95; }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card {
  background: #fff;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 200ms;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.service-card::after {
  content: attr(data-kanji);
  position: absolute;
  right: -10px;
  bottom: -40px;
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: 180px;
  line-height: 1;
  color: rgba(232, 39, 42, 0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), color 400ms;
  transform: translateY(20px);
}
.service-card:hover::after {
  color: rgba(232, 39, 42, 0.10);
  transform: translateY(0);
}
.service-card:hover { background: var(--paper); }
.service-card:hover .svc-arrow { transform: translate(4px, -4px); color: var(--brand); }
.service-card .svc-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 12px;
}
.service-card .svc-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.08em;
}
.service-card .svc-arrow {
  font-family: var(--font-en);
  color: var(--ink-3);
  transition: all 200ms cubic-bezier(.2,.7,.2,1);
}
.service-card h3 {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.3;
  color: var(--ink);
}
.service-card .en-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: -8px;
}
.service-card p {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-3);
  margin: 0;
}

.service-note {
  margin-top: 40px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.service-note .note-mark {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brand);
  padding: 5px 10px;
  border: 1px solid var(--brand);
  border-radius: 4px;
  background: rgba(232,39,42,0.06);
}
.service-note .note-text {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.service-note .note-text small {
  display: block; font-weight: 400; font-size: 13px;
  color: var(--ink-3); margin-top: 6px;
}

.vc-callout {
  margin-top: 24px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vc-callout-head {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vc-callout .vc-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.04em;
}
.vc-callout .vc-num sup { font-size: 22px; vertical-align: top; margin-top: 12px; display: inline-block; }
.vc-callout .vc-title {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
}
.vc-callout .vc-desc {
  font-family: var(--font-jp);
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

/* ================================================================
   NUMBERS — light cream w/ illustrations
   ================================================================ */
.numbers {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(232,39,42,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(232,39,42,0.04) 0%, transparent 65%),
    linear-gradient(180deg, #F8F3E9 0%, #F1E9D6 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: 'BY THE NUMBERS';
  position: absolute;
  top: 24px;
  right: -40px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 18vw;
  line-height: 0.9;
  color: rgba(14,14,16,0.035);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
}
.numbers .container { position: relative; z-index: 2; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.num-card {
  padding: 40px 32px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), border-color 300ms;
}
.num-card:hover { transform: translateY(-4px); border-color: var(--brand); }
.num-card .num-deco {
  position: absolute;
  right: -10px; bottom: -10px;
  width: 140px; height: 140px;
  opacity: 0.16;
  pointer-events: none;
}
.num-card .num-eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.num-card .num-eyebrow::before {
  content: ''; width: 6px; height: 6px; background: var(--brand); border-radius: 50%;
}
.num-card .jp-label {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-3);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.num-card .big {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
  position: relative;
  z-index: 2;
}
.num-card .big .unit {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--brand);
  margin-left: 6px;
}
.num-card .big .plus { color: var(--brand); font-size: 0.7em; margin-left: 2px; }
.num-card .desc {
  margin-top: 20px;
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.85;
  position: relative;
  z-index: 2;
}

/* ================================================================
   STRENGTHS
   ================================================================ */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.strength-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: all 200ms;
}
.strength-card::after {
  content: '';
  position: absolute;
  right: -30px; bottom: -30px;
  width: 180px; height: 180px;
  background:
    radial-gradient(circle at 50% 50%, rgba(232,39,42,0.08) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 400ms cubic-bezier(.2,.7,.2,1), transform 400ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.strength-card:hover::after { opacity: 1; transform: scale(1); }
.strength-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.strength-card .strength-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.04em;
}
.strength-card h3 {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}
.strength-card p {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-3);
  margin: 0;
}
.strength-card .tag {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ================================================================
   MEMBERS
   ================================================================ */
.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.member-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  transition: all 200ms;
}
.member-card:hover { border-color: var(--ink); }
.member-photo {
  background: linear-gradient(135deg, #f0ede7 0%, #e8e4dc 100%);
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.member-photo .placeholder-mark {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: 88px;
  color: rgba(232, 39, 42, 0.15);
  letter-spacing: -0.02em;
}
.member-photo .photo-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.member-info {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.member-info .role {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}
.member-info .name {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  color: var(--ink);
}
.member-info .name-en {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  margin-top: -4px;
}
.member-info .quote {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-3);
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  position: relative;
}
.member-info .quote::before {
  content: '"';
  position: absolute;
  top: 8px; left: 0;
  font-family: var(--font-en);
  font-size: 32px;
  color: var(--brand);
  line-height: 1;
  font-weight: 800;
}
.member-info .quote { padding-left: 24px; }

/* ================================================================
   RECRUIT — soft blush w/ illustration
   ================================================================ */
.recruit {
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(232,39,42,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #FAF1EC 0%, #F5E8E0 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.recruit::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 4px; background: var(--brand); opacity: 0.85;
}
.recruit::after {
  content: 'JOIN US';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20vw;
  color: rgba(14,14,16,0.03);
  letter-spacing: -0.04em;
  white-space: nowrap;
  line-height: 0.9;
  pointer-events: none;
}
.recruit .container { position: relative; z-index: 2; }
.recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.recruit h2 {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 32px;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}
.recruit h2 .accent { color: var(--brand); }
.recruit h2 .break { display: block; white-space: nowrap; }
.recruit .sub {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2;
  color: var(--ink-3);
  margin-bottom: 40px;
  max-width: 480px;
}
.recruit-jobs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .recruit-jobs { grid-template-columns: 1fr; }
}
.recruit-job {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: all 200ms;
}
.recruit-job:hover { transform: translateX(4px); border-color: var(--brand); }
.recruit-job .job-info { display: flex; flex-direction: column; gap: 4px; }
.recruit-job .job-title {
  font-family: var(--font-jp-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.recruit-job .job-meta {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
}
.recruit-job .job-arrow {
  font-family: var(--font-en); color: var(--brand);
  transition: transform 200ms;
}
.recruit-job:hover .job-arrow { transform: translate(4px, -4px); }

.culture-list { display: flex; flex-direction: column; gap: 16px; }
.culture-item {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: all 200ms;
}
.culture-item:hover { border-color: var(--brand); transform: translateY(-2px); }
.culture-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--brand);
  transform: scaleY(0); transform-origin: top;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.culture-item:hover::before { transform: scaleY(1); }
.culture-item .culture-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.culture-item h4 {
  font-family: var(--font-jp-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.culture-item p {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-3);
  margin: 0;
}

/* ================================================================
   NEWS
   ================================================================ */
.news-list {
  border-top: 1px solid var(--line);
}
.news-item {
  display: grid;
  grid-template-columns: 140px 110px 1fr 32px;
  gap: 32px;
  padding: 28px 8px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms, background 200ms;
}
.news-item:hover { padding-left: 24px; background: var(--paper); }
.news-item:hover .news-arrow { color: var(--brand); transform: translate(4px, -4px); }
.news-item .news-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.news-item .news-tag {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  justify-self: start;
}
.news-item .news-tag.tag-pr { background: var(--brand); }
.news-item .news-tag.tag-event { background: var(--ink-3); }
.news-item .news-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.news-item .news-arrow {
  font-family: var(--font-en);
  color: var(--ink-4);
  transition: all 200ms;
  justify-self: end;
}

/* ================================================================
   PARTNERS (VCs)
   ================================================================ */
.partners {
  background: var(--paper);
}
.partners-intro {
  text-align: center;
  margin-bottom: 56px;
}
.partners-intro .eyebrow { justify-content: center; margin-bottom: 16px; }
.partners-intro h3 {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 20px;
}
.partners-intro p {
  font-family: var(--font-jp);
  color: var(--ink-3);
  font-size: 14px;
  max-width: 520px;
  margin: 0 auto;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
/* Service intro lead — prevent wrapping cramps */
.service-intro .lead,
.about-body p,
.strength-card p,
.member-info .quote,
.partners-intro p,
.recruit .sub,
.num-card .desc,
.service-card p {
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

/* Recruit grid: jobs span the full container in a 2x2 */
.recruit-grid {
  grid-template-columns: minmax(0, 1fr) !important;
}
.recruit-grid > div { width: 100%; }
.recruit-grid .recruit-jobs { margin-bottom: 32px; }
.partner-logo {
  background: #fff;
  aspect-ratio: 5 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-4);
  transition: all 300ms cubic-bezier(.2,.7,.2,1);
  text-align: center;
  padding: 18px 28px;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
}
.partner-logo img {
  /* Per-logo scale via CSS custom property; default 72% width */
  width: calc(72% * var(--logo-scale, 1));
  height: auto;
  max-height: calc(64% * var(--logo-scale, 1));
  max-width: 92%;
  object-fit: contain;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.partner-text {
  color: var(--ink-3);
}
.partner-logo:hover img {
  transform: scale(1.05);
}
.partner-logo:hover {
  z-index: 2;
}
.partner-logo:hover.partner-text {
  color: var(--brand);
}

/* ================================================================
   FOOTER — light, warm
   ================================================================ */
.site-footer {
  background: linear-gradient(180deg, #F5EFE3 0%, #EDE5D2 100%);
  color: var(--ink-3);
  padding: 96px 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
}
.site-footer::after {
  content: 'HIKITORI';
  position: absolute;
  bottom: -3vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 22vw;
  letter-spacing: -0.05em;
  color: rgba(14,14,16,0.04);
  white-space: nowrap;
  line-height: 0.9;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(14,14,16,0.1);
}
.footer-brand img { height: 32px; width: auto; margin-bottom: 20px; }
.footer-brand .corp {
  font-family: var(--font-jp-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.footer-brand .corp-en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-4);
  margin-bottom: 24px;
}
.footer-brand .address {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-3);
}
.footer-col h5 {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 200ms;
}
.footer-col ul a:hover { color: var(--brand); }
.footer-col ul a .ext { font-family: var(--font-en); color: var(--brand); font-size: 11px; }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
}

/* ================================================================
   ANIMATIONS — scroll fade-in
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
.reveal-d5 { transition-delay: 400ms; }
.reveal-d6 { transition-delay: 480ms; }

/* ================================================================
   RESPONSIVE — audit pass
   ================================================================ */
@media (max-width: 1024px) {
  .nav-main, .header-ctas { display: none; }
  .hamburger { display: flex; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .hero-illust {
    width: 130%;
    max-width: none;
    right: -15%;
    top: 50%;
    opacity: 0.22;
  }
  .hero-text { max-width: 100%; }
  .about-grid, .recruit-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-keywords { position: static; }
  .service-grid, .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .members-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .news-item { grid-template-columns: 110px 90px 1fr 24px; gap: 20px; }
  .service-intro { gap: 32px; }
  .vc-callout { padding: 24px; }
  .vc-callout .vc-num { font-size: 56px; }
}

@media (max-width: 720px) {
  .recruit-jobs { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; --header-h: 60px; }
  .hero h1 { font-size: 28px; }
  .hero p.sub { font-size: 13px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: space-between; }
  .hero-illust {
    width: 180%;
    right: -40%;
    opacity: 0.16;
  }
  .mission-copy { font-size: 26px; line-height: 1.6; }
  .service-grid { grid-template-columns: 1fr; }
  .strengths-grid { grid-template-columns: 1fr; }
  .member-card { grid-template-columns: 1fr; }
  .member-photo { min-height: 320px; }
  .news-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .news-item .news-arrow { display: none; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-mark .corp { display: none; }
  .vc-callout .vc-num { font-size: 48px; }
  .service-note { padding: 24px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-meta .scroll { display: none; }
  .hero-meta { font-size: 10px; }
  .num-card { padding: 32px 24px; }
  .num-card .big { font-size: 64px; }
  .section-title { font-size: 28px; }
  .section-title .en { font-size: 44px; }
  .recruit-job { padding: 18px 16px; }
  .recruit-job .job-title { font-size: 16px; }
  .partner-logo { padding: 14px 16px; }
  .footer-brand img { height: 28px; }
  .vc-callout-head { gap: 16px; }
  .vc-callout .vc-title { font-size: 17px; }
  .strength-card { padding: 32px 24px; }
  .strength-card .strength-num { font-size: 44px; }
  .strength-card h3 { font-size: 19px; }
  .culture-item { padding: 22px; }
  .about-body p { font-size: 15px; line-height: 2; }
  #logo-tweaks-panel { top: 76px !important; width: 290px !important; }
}

@media (max-width: 420px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 24px; }
  .mission-copy { font-size: 22px; }
  .num-card .big { font-size: 54px; }
  .num-card .big .unit { font-size: 22px; }
}
