/* ============ CAMOUFLA — Adaptive Precision ============ */

:root {
  /* Default palette: Moss (will be overridden by JS for Tweaks) */
  --bg: #f4f1ea;
  --bg-2: #ebe7dc;
  --ink: #14160f;
  --ink-2: #2a2d23;
  --muted: #6a6d5e;
  --line: rgba(20, 22, 15, 0.12);
  --accent: #3d5a3a;
  --accent-2: #5a7855;
  --accent-3: #8a9d6e;

  --font-sans: 'Onest', 'Zen Kaku Gothic New', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-jp: 'Zen Kaku Gothic New', system-ui, sans-serif;
  --font-jp-display: 'Shippori Mincho B1', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-jp);
  font-size: 12px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  font-weight: 500;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.display {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-wrap: balance;
}

.jp-display {
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-wrap: balance;
}

.lead {
  font-family: var(--font-jp);
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink-2);
}

/* ---------- Layout shell ---------- */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.header[data-shown="1"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 14px;
}
.brand-mark {
  width: 26px; height: 26px;
}
.nav {
  display: flex;
  gap: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  padding: 4px 0;
  color: var(--ink-2);
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right 0.3s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }
.cta-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-pill:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  padding-top: 60px;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.4fr 1fr; align-items: end; }
}
.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(56px, 9.5vw, 168px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
}
.hero-title .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.contact h3 .it,
.section-head h2 i,
.section-head h2 .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.svc-en .it,
.about-statement em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.hero-title .accent-word {
  color: var(--accent);
  position: relative;
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 12px;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-jp {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-2);
  max-width: 38ch;
}
.hero-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.svc-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: color-mix(in srgb, var(--bg-2) 60%, transparent);
}

.hero-foot {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 var(--gutter);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.coord {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.coord span:first-child { color: var(--ink); }

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-cue .bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  animation: scrolly 2s ease-in-out infinite;
}
@keyframes scrolly {
  0% { transform: translateY(-10px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ---------- COVER (full-viewport cinematic intro) ---------- */
.cover {
  position: relative;
  height: 100vh;
  min-height: 720px;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cover-bg { position: absolute; inset: 0; z-index: 0; }
.cover-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 25%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.cover-grain {
  position: absolute; inset: 0;
  z-index: 1; opacity: 0.07; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}
.cover-inner {
  position: relative; z-index: 2;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px var(--gutter) 28px;
  gap: 24px;
}
.cover-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cover-top .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bg);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
}
.cover-top .nav-mini {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cover-top .nav-mini a {
  color: rgba(244,241,234,0.65);
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}
.cover-top .nav-mini a:hover { color: var(--bg); }
.cover-top .cta-mini {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  border: 1px solid rgba(244,241,234,0.4);
  padding: 9px 14px;
  border-radius: 999px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cover-top .cta-mini:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.cover-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  position: relative;
}

/* Large brushed kanji watermark behind wordmark */
.cover-vertical {
  position: absolute;
  font-family: var(--font-jp-display);
  font-weight: 800;
  font-size: clamp(180px, 30vw, 480px);
  letter-spacing: 0.05em;
  line-height: 0.85;
  color: rgba(244,241,234,0.06);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.cover-wordmark, .cover-tagline {
  position: relative;
  z-index: 1;
}
.cover-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.6);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.cover-eyebrow::before,
.cover-eyebrow::after {
  content: "";
  width: 36px; height: 1px;
  background: rgba(244,241,234,0.4);
}
.cover-wordmark {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 56px);
  letter-spacing: 0.32em;
  line-height: 1;
  color: var(--bg);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
}
.cover-wordmark .mark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.cover-wordmark .en {
  font-family: var(--font-sans);
  font-weight: 600;
  text-indent: 0.32em;
}
.cover-tagline {
  font-family: var(--font-jp-display);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: rgba(244,241,234,0.75);
  line-height: 1.85;
}

.cover-bottom {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 24px;
}
.cover-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.cover-scroll .bar {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(244,241,234,0.7));
  animation: scrolly 2.4s ease-in-out infinite;
}

/* Cinematic corner ticks */
.cover-ticks { position: absolute; inset: 16px; pointer-events: none; z-index: 3; }
.cover-ticks i {
  position: absolute; width: 14px; height: 14px;
  border-color: rgba(244,241,234,0.45);
  border-style: solid; border-width: 0;
}
.cover-ticks i.tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.cover-ticks i.tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.cover-ticks i.bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.cover-ticks i.br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

@media (max-width: 700px) {
  .cover-top .nav-mini { display: none; }
  .cover-bottom .col:not(.center) { display: none; }
  .cover-bottom { grid-template-columns: 1fr; justify-items: center; }
}

/* slow drift on cover background */
@keyframes coverDrift {
  0% { transform: scale(1.05) translate3d(0, 0, 0); }
  50% { transform: scale(1.1) translate3d(-1%, -1%, 0); }
  100% { transform: scale(1.05) translate3d(0, 0, 0); }
}
.cover-bg > svg, .cover-bg > div > svg {
  animation: coverDrift 30s ease-in-out infinite;
  transform-origin: center;
}

/* fade-in for cover content (opacity:1 default; animation enhances) */
@keyframes coverFade {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cover-center > * { animation: coverFade 1.4s ease-out forwards; }
.cover-center > *:nth-child(1) { animation-delay: 0.05s; }
.cover-center > *:nth-child(2) { animation-delay: 0.2s; }
.cover-center > *:nth-child(3) { animation-delay: 0.4s; }
.cover-top, .cover-bottom { animation: coverFade 1.2s 0.05s ease-out forwards; }

/* ---------- MISSION (large editorial mission statement) ---------- */
.mission {
  background: var(--bg);
  padding: 180px 0 160px;
  position: relative;
  border-top: 1px solid var(--line);
}
.mission .eyebrow {
  margin-bottom: 72px;
  display: inline-flex;
}
.mission-statement {
  font-family: var(--font-jp-display);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 84px);
  line-height: 1.45;
  letter-spacing: 0.018em;
  max-width: 22ch;
  margin: 0 0 80px;
  color: var(--ink);
}
.mission-statement em {
  font-style: normal;
  color: var(--accent);
}
.mission-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1080px;
  margin-left: auto;
}
@media (min-width: 900px) {
  .mission-body { grid-template-columns: repeat(2, 1fr); gap: 56px; }
}
.mission-body p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2.0;
  color: var(--ink-2);
}
.mission-foot {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--accent);
  margin-top: 96px;
  letter-spacing: -0.005em;
  max-width: 30ch;
  line-height: 1.4;
}

/* ---------- Section base ---------- */
section {
  position: relative;
  padding: 140px 0;
}
.about, .services {
  padding-top: 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
}

/* ---------- Section hero with image + overlay text ---------- */
.section-hero {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
  background: var(--ink);
  overflow: hidden;
  min-height: 360px;
}
@media (min-width: 700px) {
  .section-hero { min-height: 480px; height: 56vh; max-height: 640px; }
}
.section-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-hero-img image-slot,
.section-hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.30) 45%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}
.section-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 96px;
  padding-bottom: 64px;
  color: var(--bg);
  gap: 24px;
}
.section-hero-title {
  margin: 0;
  font-family: var(--font-jp-display);
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--bg);
  max-width: 22ch;
  text-shadow: 0 1px 30px rgba(0,0,0,0.35);
}
.section-hero-lead {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 14.5px;
  line-height: 2.0;
  color: rgba(244,241,234,0.88);
  max-width: 52ch;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.eyebrow--light {
  color: rgba(244,241,234,0.78) !important;
}
.eyebrow--light::before {
  background: rgba(244,241,234,0.6) !important;
}
.section-hero .section-hero-content,
.section-hero-content { padding-left: var(--gutter); padding-right: var(--gutter); }
.services .section-hero { background: #111; }
.section-head h2 {
  margin: 0;
  font-family: var(--font-jp-display);
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.05;
}
.section-head h2 .en {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.5em;
  letter-spacing: -0.02em;
  color: var(--muted);
  display: block;
  margin-top: 14px;
  font-style: normal;
}
.section-head h2 .en i {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.section-head .head-side {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
  max-width: 52ch;
  padding-top: 8px;
}

/* ---------- About ---------- */
.about {
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
/* ---------- About flow (single readable column) ---------- */
.about-flow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about-para {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  text-align: justify;
  text-justify: inter-character;
}
.about-statement {
  margin: 24px 0;
  font-family: var(--font-jp-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.55;
  letter-spacing: 0.015em;
  color: var(--ink);
  text-align: center;
}
.about-statement em {
  font-style: normal;
  color: var(--accent);
}
.about-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
}
.about-divider span {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--line);
}
.about-divider span:nth-child(2) {
  width: 4px;
  height: 4px;
  background: var(--accent);
  transform: rotate(45deg);
}
@media (max-width: 700px) {
  .about-para { font-size: 15px; line-height: 2.0; }
  .about-statement { font-size: 24px; }
}
/* ---------- Principles (Value / Principle) ---------- */
.pillars-head {
  margin-top: 120px;
  margin-bottom: 32px;
}
.principles {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.principle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
@media (min-width: 900px) {
  .principle {
    grid-template-columns: 0.85fr 1.6fr 1fr;
    gap: 56px;
    padding: 72px 0;
    align-items: start;
  }
}
.principle-num {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  flex-wrap: wrap;
}
.principle-num .n {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 3.6vw, 56px);
  letter-spacing: -0.01em;
  color: var(--accent);
  line-height: 1;
}
.principle-num .slash {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0;
}
.principle-num .en {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: none;
  flex: 1;
  min-width: 0;
}
.principle-title {
  margin: 0;
  font-family: var(--font-jp-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.55;
  letter-spacing: 0.012em;
  color: var(--ink);
}
.principle-desc {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 2.0;
  color: var(--ink-2);
  padding-top: 6px;
}
.pillar {
  padding: 32px 24px 24px 0;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 18px;
  text-transform: none;
}
.pillar-en {
  font-family: var(--font-jp-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-bottom: 14px;
  color: var(--ink);
}
.pillar-jp {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- Services ---------- */
.services {
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.services .eyebrow { color: rgba(244,241,234,0.55); }
.services .eyebrow::before { background: currentColor; }
.services .section-head h2 { color: var(--bg); }
.services .section-head .head-side { color: rgba(244,241,234,0.72); }
.services .section-head .head-jp { color: var(--bg); }

.svc-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(244,241,234,0.14);
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(244,241,234,0.14);
  position: relative;
  transition: padding 0.3s ease;
}
@media (min-width: 760px) {
  .svc-row {
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
    column-gap: 64px;
    row-gap: 18px;
    padding: 72px 0;
    align-items: baseline;
  }
}
@media (min-width: 1200px) {
  .svc-row {
    grid-template-columns: minmax(260px, 1.05fr) minmax(0, 2fr);
    column-gap: 96px;
    padding: 88px 0;
  }
}
.svc-row:first-child {
  border-top: 1px solid rgba(244,241,234,0.14);
}
.svc-row:hover .svc-en {
  letter-spacing: -0.005em;
}
.svc-row .svc-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(244,241,234,0.45);
  padding-top: 4px;
}
.svc-row .svc-title-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-row .svc-en {
  font-family: var(--font-jp-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--bg);
  transition: letter-spacing 0.3s ease;
}
.svc-row .svc-jp {
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(244,241,234,0.55);
  font-weight: 400;
  margin-top: 2px;
}
.svc-row .svc-desc {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.02em;
  color: rgba(244,241,234,0.82);
  max-width: none;
  text-align: justify;
  text-justify: inter-character;
}
@media (min-width: 1200px) {
  .svc-row .svc-desc { font-size: 16px; }
}
.svc-row .svc-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-row .svc-tags {
  counter-reset: svctag;
}
.svc-row .svc-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.78);
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: baseline;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid rgba(244,241,234,0.12);
  counter-increment: svctag;
}
.svc-row .svc-tag:last-child {
  border-bottom: 1px solid rgba(244,241,234,0.12);
}
.svc-row .svc-tag::before {
  content: counter(svctag, decimal-leading-zero);
  color: var(--accent-3);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.svc-camo {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 80%;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ---------- Approach (mid section) ---------- */
.approach {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .approach-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
.app-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.app-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.app-card .step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.app-card h4 {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
.app-card p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.app-card .corner-camo {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 110px; height: 110px;
  opacity: 0.5;
  pointer-events: none;
}

/* ---------- Company — editorial layout ---------- */
.company {
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.company-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}
@media (min-width: 900px) {
  .company-wrap { grid-template-columns: 0.7fr 1.5fr; gap: 80px; align-items: start; }
}
.company-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-aside .index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.company-aside h2 {
  margin: 0;
  font-family: var(--font-jp-display);
  font-weight: 500;
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.company-aside h2 .company-en {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.35em;
  letter-spacing: -0.01em;
  color: var(--muted);
  display: block;
  margin-top: 18px;
}
.company-aside h2 .company-en i {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}
.company-aside .lead-jp {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-2);
  max-width: 36ch;
}
.company-aside .seal {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  background: color-mix(in srgb, var(--bg-2) 50%, transparent);
}
.company-aside .seal .seal-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.company-aside .seal .seal-text .ja {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}
.company-aside .seal .seal-text .en {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.company-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.company-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: baseline;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.company-item .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.company-item .value-jp {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--ink);
}
@media (max-width: 700px) {
  .company-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Contact CTA strip ---------- */
.contact {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ink);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 900px) {
  .contact-inner { grid-template-columns: 1.4fr 1fr; }
}
.contact h3 {
  margin: 0;
  font-family: var(--font-jp-display);
  font-size: clamp(44px, 6.4vw, 96px);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.15;
  color: var(--bg);
}
.contact h3 .en {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.4em;
  letter-spacing: -0.01em;
  color: rgba(244,241,234,0.55);
  display: block;
  margin-top: 20px;
  font-style: normal;
}
.contact h3 .it {
  font-style: italic;
  font-weight: 400;
}
.contact .contact-jp {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(244,241,234,0.7);
  max-width: 36ch;
  margin-bottom: 24px;
}
.contact-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 1px solid var(--bg);
  background: transparent;
  color: var(--bg);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s ease;
}
.contact-btn:hover {
  background: var(--bg);
  color: var(--ink);
}
.contact-btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.contact-btn:hover .arrow { transform: translateX(4px); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 36px 0;
  border-top: 1px solid rgba(244,241,234,0.14);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(244,241,234,0.55);
}
.footer-inner a:hover { color: var(--bg); }

/* ---------- (Marquee removed) ---------- */

/* ---------- Subtle entrance ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* mobile tweaks */
@media (max-width: 700px) {
  .nav { display: none; }
  .hero-foot { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .pillar:last-child { border-bottom: none; }
  .svc-row { grid-template-columns: 50px 1fr; }
  .svc-camo { display: none; }
}
