/* daidara front page */
:root {
  --paper: #f2efe8;
  --ink:   #0a0a0a;
  --ink-2: #1a1a1a;
  --gray:  #8a8a8a;
  --gray-soft: #cfcdc6;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--paper); }
body.daidara-front {
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }
.jp   { font-family: "Noto Sans JP", "Archivo", sans-serif; }
.disp { font-family: "Archivo Black", "Archivo", sans-serif; font-weight: 900; letter-spacing: -0.02em; }

/* Global halftone + noise overlay */
body.daidara-front::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(10,10,10,0.18) 1px, transparent 1.4px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
  opacity: 0.35;
  z-index: 2;
}
body.daidara-front::after {
  content: "";
  position: fixed; inset: -50%;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  mix-blend-mode: multiply;
  z-index: 3;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(255, 30, 20, 1) 0%,
    rgba(255, 50, 20, 0.95) 18%,
    rgba(255, 90, 30, 0.75) 38%,
    rgba(255, 140, 40, 0.45) 60%,
    rgba(255, 180, 60, 0.0) 82%);
  filter: blur(4px);
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
  z-index: 90;
  mix-blend-mode: normal;
  transition: opacity 240ms ease;
  opacity: 0;
  animation: glowPulse 1.4s ease-in-out infinite;
}
.cursor-glow.on { opacity: 1; }
.cursor-glow::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(255, 230, 200, 1) 0%,
    rgba(255, 120, 40, 0.9) 40%,
    rgba(255, 60, 20, 0) 80%);
  filter: blur(1.5px);
  mix-blend-mode: screen;
}
.cursor-glow::after {
  content: "";
  position: absolute;
  inset: -46px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(255, 40, 20, 0.55) 0%,
    rgba(255, 90, 30, 0.28) 32%,
    rgba(255, 140, 50, 0.10) 60%,
    rgba(255, 180, 70, 0) 80%);
  filter: blur(18px);
  mix-blend-mode: multiply;
}
@keyframes glowPulse {
  0%, 100% { filter: blur(4px) brightness(1); }
  50%      { filter: blur(6px) brightness(1.15); }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: var(--ink);
  z-index: 80;
  transform-origin: left center;
  transform: skewX(-18deg);
}

/* Section slash sweep */
.slash-sweep {
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: slashSweep 820ms cubic-bezier(.7,0,.2,1) forwards;
  pointer-events: none;
  z-index: 20;
}
@keyframes slashSweep {
  0%   { clip-path: polygon(-10% 0, 0 0, -10% 100%, -20% 100%); }
  45%  { clip-path: polygon(-10% 0, 110% 0, 120% 100%, -20% 100%); }
  100% { clip-path: polygon(110% 0, 120% 0, 130% 100%, 120% 100%); }
}

/* Dual ticker */
.flourish-stack {
  position: relative;
  height: 140px;
  overflow: hidden;
  margin: 16px 0;
}
.flourish-stack .flourish {
  position: absolute;
  left: 0; right: 0;
  height: 70px;
  margin: 0;
}
.flourish-stack .flourish.rev .ticker { animation: tickRev 28s linear infinite; }
.flourish-stack .flourish.rev { top: 70px; opacity: 0.3; transform: skewY(-1deg); }
.flourish-stack .flourish.fwd { top: 0; }
@keyframes tickRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* Loading intro */
.intro {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: introOut 900ms 1500ms cubic-bezier(.8,0,.2,1) forwards;
}
.intro-logo {
  position: relative;
  width: min(60vw, 720px);
  aspect-ratio: 1920 / 1080;
  opacity: 0;
  animation: introLogoIn 520ms 150ms ease-out forwards;
}
.intro-logo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  filter: invert(1);
}
.intro-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform-origin: left center;
  transform: scaleX(0);
  animation: introFlash 820ms 700ms cubic-bezier(.7,0,.2,1) forwards;
  z-index: 1;
  mix-blend-mode: difference;
}
@keyframes introLogoIn { to { opacity: 1; } }
@keyframes introFlash {
  0%   { transform: scaleX(0); transform-origin: left center; }
  50%  { transform: scaleX(1); transform-origin: left center; }
  51%  { transform: scaleX(1); transform-origin: right center; }
  100% { transform: scaleX(0); transform-origin: right center; }
}
@keyframes introOut {
  0%   { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
}

/* Page grid */
.daidara-page {
  max-width: 100%;
  margin: 0 auto;
  padding: 28px clamp(24px, 7%, 80px) 120px;
  position: relative;
  z-index: 5;
}

/* Topbar */
.topbar {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--ink);
  position: relative;
}
.topbar::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--ink);
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
.topbar nav { display: flex; gap: 24px; align-items: baseline; }
.topbar nav a {
  color: var(--ink); text-decoration: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: padding-left 220ms ease;
}
.topbar nav a::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 0; height: 10px;
  background: var(--ink);
  transform: translateY(-50%) skewX(-18deg);
  transition: width 220ms cubic-bezier(.2,.9,.25,1);
}
.topbar nav a:hover { padding-left: 18px; }
.topbar nav a:hover::before { width: 12px; }

/* Hero */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg-type {
  position: absolute;
  top: 0; right: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(80px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  text-stroke: 1.5px var(--ink);
  opacity: 0.14;
  pointer-events: none;
  text-align: right;
  user-select: none;
  transform: rotate(-4deg);
  transform-origin: top right;
}
.hero-label {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 12px;
  transform: skewX(-14deg);
  margin-bottom: 40px;
}
.hero-label span { display: inline-block; transform: skewX(14deg); }
.hero-h {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0;
  position: relative;
}
.hero-h .line { display: block; position: relative; overflow: hidden; }
.hero-h .line > span {
  display: inline-block;
  transform: translateY(100%);
  animation: riseIn 900ms cubic-bezier(.2,.9,.2,1) forwards;
}
.hero-h .line.l1 > span { animation-delay: 1250ms; }
.hero-h .line.l2 > span { animation-delay: 1420ms; }
@keyframes riseIn { to { transform: translateY(0); } }

.hero-h .ghost {
  position: absolute;
  top: 0; left: 0;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--ink);
  transform: translate(6px, 8px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
  animation: ghostDrift 4.2s ease-in-out infinite alternate;
}
@keyframes ghostDrift {
  0%   { transform: translate(6px, 8px); }
  100% { transform: translate(12px, 14px); }
}

.hero-sub {
  margin-top: 40px;
  display: flex; gap: 32px; align-items: flex-end;
  flex-wrap: wrap;
}
.hero-en-sub {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.005em;
  max-width: 520px;
  margin: 0;
}
.hero-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 2;
  color: var(--ink-2);
  max-width: 420px;
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--ink);
}

/* Voice cards */
.voices {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.voice {
  position: relative;
  border: 1.5px solid var(--ink);
  padding: 16px 14px 18px;
  background: var(--paper);
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(.2,.9,.25,1);
}
.voice::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--ink);
  transform: translateY(101%) skewY(-6deg);
  transition: transform 320ms cubic-bezier(.7,0,.2,1);
  z-index: 0;
}
.voice:hover,
.voice.is-touched { transform: translateY(-4px) rotate(-1deg); }
.voice:hover::before,
.voice.is-touched::before { transform: translateY(0) skewY(-6deg); }
.voice:hover .voice-n,
.voice:hover .voice-t,
.voice.is-touched .voice-n,
.voice.is-touched .voice-t { color: var(--paper); }
.voice-n, .voice-t { position: relative; z-index: 1; transition: color 220ms ease; }
.voice-n {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray);
}
.voice-t {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* Section chrome */
.section {
  position: relative;
  padding: 140px 0 40px;
}
.sec-bignum {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(120px, 18vw, 260px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  position: absolute;
  top: 40px;
  right: -20px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  opacity: 0.5;
  pointer-events: none;
  transform: rotate(8deg);
  z-index: 0;
}
.sec-head {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.sec-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 8px;
}
.sec-label .bar {
  display: inline-block;
  width: 36px; height: 2px;
  background: var(--ink);
  vertical-align: middle;
  margin-right: 8px;
  transform: skewX(-22deg);
}
.sec-h {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.sec-h .stab {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 2px 14px 4px;
  transform: skewX(-12deg);
  margin-right: 4px;
}
.sec-h .stab span { display: inline-block; transform: skewX(12deg); }
.sec-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: var(--ink-2);
  max-width: 580px;
  line-height: 1.95;
}

/* Works */
.cat {
  padding: 56px 0 72px;
  position: relative;
  border-top: 1.5px solid var(--ink);
}
.cat:first-of-type { border-top: 0; }
.cat-head {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.cat-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-top: 10px;
}
.cat-tag .k {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 2px 8px;
  margin-right: 6px;
  transform: skewX(-14deg);
}
.cat-tag .k span { display: inline-block; transform: skewX(14deg); }
.cat-en {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.cat-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.work {
  position: relative;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.9,.25,1);
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.work:hover,
.work.is-touched { transform: translateY(-6px) rotate(-0.6deg); }
a.work { text-decoration: none; color: var(--ink); }
.work-img {
  position: relative;
  height: 180px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* 実写真: src未設定・空のときは非表示 */
.work-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  filter: grayscale(1) brightness(0.58);
  transition: filter 420ms ease, transform 500ms cubic-bezier(.7,0,.2,1);
}
.work-img img:not([src]),
.work-img img[src=""] { display: none; }
.work:hover .work-img img,
.work.is-touched .work-img img {
  filter: grayscale(0) brightness(0.82);
  transform: scale(1.06);
}

.work-img::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(242,239,232,0.35) 1px, transparent 1.3px);
  background-size: 6px 6px;
  opacity: 0.5;
  z-index: 1;
}
.work-img::after {
  content: "";
  position: absolute;
  left: -20%; top: -20%;
  width: 140%; height: 40%;
  background: var(--paper);
  transform: rotate(-18deg) translateY(-80%);
  transition: transform 500ms cubic-bezier(.7,0,.2,1);
  z-index: 2;
}
.work:hover .work-img::after,
.work.is-touched .work-img::after { transform: rotate(-18deg) translateY(40%); }
.work-img .ph-label {
  position: relative; z-index: 3;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--paper);
  opacity: 0.7;
  text-transform: uppercase;
}
.work-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.work-n {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray);
}
.work-t {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}
.work-m {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11.5px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
.work-o {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  position: relative;
}
.work-o::before {
  content: "OUTCOME";
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 4px;
}

/* Workflow */
.wf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  margin-top: 24px;
}
.wf-step {
  position: relative;
  padding: 28px 22px 32px;
  border-left: 1px solid var(--ink);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 240ms ease, color 240ms ease;
}
.wf-step:first-child { border-left: 0; }
.wf-step:hover { background: var(--ink); color: var(--paper); }
.wf-step:hover .wf-n,
.wf-step:hover .wf-ja { color: var(--gray-soft); }
.wf-step:hover .wf-diagram svg * { stroke: var(--paper); }
.wf-n {
  font-family: "Archivo Black", sans-serif;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
  transition: color 240ms ease;
}
.wf-en {
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.wf-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  color: var(--ink-2);
  margin: 0 0 22px;
  letter-spacing: 0.04em;
  transition: color 240ms ease;
}
.wf-diagram {
  margin-top: auto;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-diagram svg { width: 100%; height: 100%; }

/* About */
.about-body {
  max-width: 660px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.15;
}
.about-body p { margin: 0 0 28px; }
.about-body p:first-child {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.85;
}
.about-deco {
  margin-top: 40px;
  display: flex; gap: 10px; align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.about-deco .line { width: 80px; height: 1.5px; background: var(--ink); transform: skewX(-22deg); }

/* Contact */
.contact-block {
  border: 1.5px solid var(--ink);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.contact-block::before {
  content: "";
  position: absolute;
  right: -80px; top: -40px;
  width: 320px; height: 320px;
  background: var(--ink);
  transform: rotate(-18deg);
  opacity: 0.04;
}
.contact-h {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(44px, 5.4vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.contact-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.contact-rows > div,
.contact-form-trigger {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  font-size: 14px;
}
.contact-form-trigger {
  background: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  font-family: inherit;
  transition: background 220ms ease;
}
.contact-form-trigger:hover { background: rgba(10,10,10,0.04); }
.form-arrow {
  display: inline-block;
  font-size: 18px;
  transition: transform 420ms cubic-bezier(.2,.9,.25,1);
}
.contact-form-trigger.is-open .form-arrow { transform: rotate(180deg); }

/* Expandable form */
.contact-form-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 700ms cubic-bezier(.2,.9,.25,1), opacity 500ms ease;
}
.contact-form-wrap.is-open {
  max-height: 900px;
  opacity: 1;
}
.d-form {
  padding: 36px 0 8px;
  border-top: 1.5px solid var(--ink);
  margin-top: 8px;
}
.d-form-row { margin-bottom: 32px; }
.d-label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.d-label-ja {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--gray);
  margin-left: 10px;
  letter-spacing: 0.05em;
  text-transform: none;
}
.d-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0;
  outline: none;
  -webkit-appearance: none;
  transition: border-width 160ms ease;
}
.d-input::placeholder { color: var(--gray-soft); }
.d-input:focus { border-bottom-width: 2.5px; }
.d-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.8;
}
.d-submit {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 18px 36px;
  cursor: pointer;
  transform: skewX(-10deg);
  transition: opacity 220ms ease, transform 220ms ease;
  margin-top: 8px;
}
.d-submit > * { display: inline-block; transform: skewX(10deg); }
.d-submit > span:first-child {
  font-family: "Archivo Black", sans-serif;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.d-submit-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.65;
}
.d-submit:hover { opacity: 0.82; transform: skewX(-10deg) translateY(-2px); }
.contact-rows > div:last-child { border-bottom: 1px solid var(--ink); }
.contact-rows .k {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.contact-rows .v { font-family: "JetBrains Mono", monospace; font-size: 13px; }
.contact-rows .j { font-family: "Noto Sans JP", sans-serif; font-size: 11px; color: var(--ink-2); }

/* Footer */
.foot {
  margin-top: 80px;
  padding-top: 20px;
  border-top: 1.5px solid var(--ink);
  display: flex; justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px) skewY(1.5deg); transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.9,.25,1); }
.reveal.in { opacity: 1; transform: translateY(0) skewY(0); }
.reveal-slash { position: relative; overflow: hidden; }
.reveal-slash::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 700ms cubic-bezier(.8,0,.2,1);
}
.reveal-slash.in::after { transform: scaleX(0); }

/* Flourish between sections */
.flourish {
  height: 80px;
  display: flex; align-items: center;
  gap: 16px;
  overflow: hidden;
  font-family: "Archivo Black", sans-serif;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--ink);
  white-space: nowrap;
  opacity: 0.55;
}
.flourish .m { -webkit-text-stroke: 0; color: var(--ink); }
.flourish .ticker { display: inline-block; animation: tick 22s linear infinite; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Typewriter */
.tw-cursor::after {
  content: '';
  display: inline-block;
  width: 0.055em;
  height: 0.82em;
  background: var(--ink);
  vertical-align: -0.04em;
  margin-left: 0.06em;
  animation: tw-blink 580ms step-start infinite;
}
@keyframes tw-blink { 50% { opacity: 0; } }
.sec-h .stab { transition: opacity 220ms ease, transform 300ms cubic-bezier(.2,.9,.2,1); }
.sec-h[data-type="pending"] .stab { opacity: 0; transform: skewX(-12deg) scaleX(0.6); }

/* Responsive */
@media (max-width: 900px) {
  .daidara-page { padding: 20px clamp(24px, 7%, 80px) 80px; }
  .voices { grid-template-columns: repeat(3, 1fr); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .wf { grid-template-columns: repeat(2, 1fr); }
  .wf-step:nth-child(3) { border-left: 0; }
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .cat-head { grid-template-columns: 1fr; gap: 8px; }
  .contact-rows > div { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 600px) {
  .daidara-page { padding: 16px clamp(24px, 7%, 80px) 60px; }
  .voices { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr; }
  .wf { grid-template-columns: 1fr; }
  .wf-step:nth-child(n) { border-left: 0; }
  .hero { padding: 60px 0 48px; }
  .section { padding: 80px 0 24px; }
}

/* WordPress admin bar offset */
.admin-bar .scroll-progress { top: var(--wp-admin--admin-bar--height, 32px); }
