@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Fraunces:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter+Tight:wght@300;400;500;600;700&family=Shippori+Mincho:wght@400;500;600;700;800&family=Noto+Serif+JP:wght@300;400;500;600;700&family=Noto+Sans+Mono+JP:wght@400;500;700&display=swap');

:root {
  --pearl-cream: #FAF8F2;
  --pearl-white: #FFFFFF;
  --ink-indigo: #4A5E6E;
  --ink-indigo-soft: #6A7888;
  --ink-indigo-deep: #34495E;
  --ink-indigo-12: rgba(74, 94, 110, 0.12);
  --ink-indigo-16: rgba(74, 94, 110, 0.16);
  --ink-indigo-18: rgba(74, 94, 110, 0.18);
  --ink-indigo-24: rgba(74, 94, 110, 0.24);
  --sage-pastel: #4A6E5A;
  --sage-pastel-12: rgba(74, 110, 90, 0.12);
  --sage-pastel-16: rgba(74, 110, 90, 0.16);
  --sage-pastel-24: rgba(74, 110, 90, 0.24);
  --sage-pastel-44: rgba(74, 110, 90, 0.44);
  --rose-dust: #B88090;
  --rose-dust-16: rgba(184, 128, 144, 0.16);
  --lavender-mist: #8B7AA0;
  --sand-beige: #B8956A;
  --mint-pastel: #7AB89E;
  --mint-cool: #7AA8A0;
  --ivory-mist: #E8DCC5;
  --smoke-indigo: #6A7888;
  --velvet-charcoal: #2E3744;
  --divider-pale: #E0E0DC;
  --mint-accent: #7AB89E;
  --dot-sage: #4A6E5A;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter Tight', 'Noto Serif JP', system-ui, sans-serif;
  font-size: 16px;
  color: var(--ink-indigo);
  background-color: var(--pearl-cream);
  max-width: 100vw;
  letter-spacing: 0.005em;
  line-height: 1.55;
}

strong, p, span, a, b, li, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

body {
  background-image:
    radial-gradient(900px 700px at 12% 18%, rgba(197, 213, 197, 0.42), transparent 60%),
    radial-gradient(1000px 800px at 88% 22%, rgba(232, 197, 200, 0.38), transparent 60%),
    radial-gradient(1100px 850px at 22% 82%, rgba(213, 197, 220, 0.34), transparent 62%),
    radial-gradient(900px 700px at 78% 78%, rgba(197, 220, 213, 0.32), transparent 62%),
    radial-gradient(850px 700px at 50% 50%, rgba(232, 220, 197, 0.28), transparent 65%);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.font-display {
  font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
  font-variation-settings: "wdth" 130, "opsz" 144;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.font-display-bold {
  font-family: 'Cormorant Garamond', 'Shippori Mincho', serif;
  font-variation-settings: "wdth" 140, "opsz" 144;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.font-accent {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-variation-settings: "wdth" 115, "opsz" 144;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.font-mono {
  font-family: 'IBM Plex Mono', 'Noto Sans Mono JP', monospace;
  letter-spacing: 0.04em;
}

.font-jp {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1.5px solid var(--ink-indigo-18);
  border-radius: 18px;
}

.glass-soft {
  background: rgba(250, 248, 242, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.pearl-card {
  background: var(--pearl-white);
  border: 1px solid var(--ink-indigo-16);
  border-radius: 20px;
  box-shadow: 6px 14px 0 0 rgba(74, 110, 90, 0.08), 0 24px 48px rgba(74, 94, 110, 0.04);
  transition: transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 360ms ease, z-index 360ms ease;
  position: relative;
  z-index: 1;
}

.pearl-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 8px 20px 0 0 rgba(74, 110, 90, 0.24), 0 32px 64px rgba(74, 94, 110, 0.08);
  border-color: var(--sage-pastel);
  z-index: 10;
}

.sample-drop {
  width: 64px;
  height: 64px;
  border-radius: 28px 36px 28px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--pearl-white);
  text-shadow: 0 1px 0 rgba(0,0,0,0.18);
  flex-shrink: 0;
  transition: all 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pearl-card:hover .sample-drop {
  width: 80px;
  height: 80px;
  border-radius: 36px 44px 36px 44px;
}

.drop-sage { background: var(--sage-pastel); }
.drop-rose { background: var(--rose-dust); }
.drop-lavender { background: var(--lavender-mist); }
.drop-sand { background: var(--sand-beige); }
.drop-mint { background: var(--mint-pastel); }
.drop-mintcool { background: var(--mint-cool); }
.drop-ivory { background: var(--ivory-mist); color: var(--ink-indigo); text-shadow: none; }
.drop-smoke { background: var(--smoke-indigo); }
.drop-charcoal { background: var(--velvet-charcoal); }

.kinetic-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 820ms cubic-bezier(0.16, 1, 0.3, 1), filter 220ms ease;
  transition-delay: calc(var(--ki, 0) * 48ms);
}

.kinetic-letter.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.divider-marker {
  width: 120px;
  height: 1px;
  background: var(--ink-indigo-16);
  margin: 0 auto;
  position: relative;
}

.divider-marker::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--sage-pastel);
  border-radius: 50%;
}

.sage-bar {
  width: 280px;
  height: 3px;
  background: var(--sage-pastel);
  border-radius: 8px;
  position: relative;
}

.sage-bar::before, .sage-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 18px;
  height: 3px;
  background: var(--sage-pastel);
  border-radius: 8px;
}

.sage-bar::before { left: -16px; }
.sage-bar::after { right: -16px; }

@keyframes glassDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -8px) scale(1.02); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes glassDriftAlt {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 10px) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}

.glass-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw !important;
  height: 100vh !important;
}

.glass-blob.sage { background: rgba(197, 213, 197, 0.85); animation: glassDrift 78s ease-in-out infinite; }
.glass-blob.rose { background: rgba(232, 197, 200, 0.85); animation: glassDriftAlt 72s ease-in-out infinite; }
.glass-blob.beige { background: rgba(232, 220, 197, 0.85); animation: glassDrift 86s ease-in-out infinite; }
.glass-blob.lavender { background: rgba(213, 197, 220, 0.85); animation: glassDriftAlt 68s ease-in-out infinite; }
.glass-blob.mint { background: rgba(197, 220, 213, 0.85); animation: glassDrift 64s ease-in-out infinite; }

.atelier-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 96px;
  background: rgba(250, 248, 242, 0.86);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--ink-indigo-18);
  transition: border-color 240ms ease, background 240ms ease;
}

.atelier-header.scrolled {
  border-bottom: 1.5px solid var(--sage-pastel-24);
}

.logo-monolith {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 32px;
}

.logo-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  position: relative;
}

.logo-mark svg { width: 100%; height: 100%; display: block; }

.logo-text-stack { display: flex; flex-direction: column; line-height: 1.1; }
.logo-domain { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 700; font-size: 22px; color: var(--ink-indigo); letter-spacing: -0.02em; }
.logo-jp { font-family: 'Shippori Mincho', serif; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(74, 94, 110, 0.7); margin-top: 2px; }
.logo-jp .accent { color: var(--sage-pastel); }

.nav-rail {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 32px;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-indigo);
  transition: color 240ms ease;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sage-pastel);
  transition: width 240ms cubic-bezier(0.16, 1, 0.3, 1), left 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover { color: var(--sage-pastel); }
.nav-link:hover::after { width: calc(100% - 28px); left: calc(50% + 0px); }
.nav-link.active { color: var(--sage-pastel); }
.nav-link.active::after { width: calc(100% - 28px); left: calc(50% + 0px); }

.nav-divider { width: 1px; height: 14px; background: var(--ink-indigo-18); margin: 0 2px; }

.live-tag {
  height: 32px;
  padding: 0 14px;
  border-radius: 16px;
  background: var(--sage-pastel-12);
  border: 1px solid rgba(74, 110, 90, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(74, 94, 110, 0.8);
  white-space: nowrap;
}

.live-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage-pastel);
  box-shadow: 0 0 0 0 rgba(74, 110, 90, 0.6);
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(74, 110, 90, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(74, 110, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 110, 90, 0); }
}

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin-right: 16px;
}

.burger-line {
  width: 22px;
  height: 2px;
  background: var(--ink-indigo);
  border-radius: 4px;
  transition: transform 280ms cubic-bezier(0.65, 0, 0.35, 1), opacity 200ms ease;
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) { opacity: 0; }
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: radial-gradient(circle at 50% 50%, var(--pearl-cream) 0%, var(--pearl-cream) 70%);
  display: flex;
  flex-direction: column;
  padding: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
  overflow-y: auto;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.mobile-menu-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 48px;
  color: var(--ink-indigo);
  margin-bottom: 32px;
  font-variation-settings: "wdth" 130, "opsz" 144;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--ink-indigo);
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-indigo-12);
  transition: color 200ms ease, padding-left 240ms ease;
}

.mobile-menu-link:hover {
  color: var(--sage-pastel);
  padding-left: 12px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 0 56px;
  background: var(--sage-pastel);
  color: var(--pearl-white);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 48px 64px 48px 64px;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(74, 110, 90, 0.36);
  transition: all 280ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  text-transform: uppercase;
}

.btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px var(--sage-pastel-44);
  border-radius: 56px;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  background: transparent;
  color: var(--ink-indigo);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 28px;
  border: 1.5px solid var(--ink-indigo);
  cursor: pointer;
  transition: all 240ms ease;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: var(--sage-pastel);
  color: var(--pearl-white);
  border-color: var(--sage-pastel);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-pastel);
  padding: 12px 16px;
  border-radius: 14px;
  transition: background 200ms ease, color 200ms ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-text-link:hover {
  background: var(--sage-pastel-12);
}

.btn-arrow::after {
  content: '→';
  transition: transform 200ms ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.hero-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 56px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 56px;
  align-items: center;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--sage-pastel);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 144px;
  line-height: 0.92;
  color: var(--ink-indigo);
  font-variation-settings: "wdth" 140, "opsz" 144;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
}

.hero-subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-indigo);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-passport {
  padding: 18px 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--ink-indigo);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}

.hero-passport-item { display: flex; gap: 6px; }
.hero-passport-key { color: var(--ink-indigo-soft); }
.hero-passport-val { color: var(--ink-indigo); font-weight: 600; }

.hero-foot {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-side-pulse {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-indigo);
  text-transform: uppercase;
}

.pulse-dot-lg {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage-pastel);
  position: relative;
  flex-shrink: 0;
}

.pulse-dot-lg::before, .pulse-dot-lg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--sage-pastel);
  animation: ringPulse 2s ease-out infinite;
}

.pulse-dot-lg::after { animation-delay: 1s; }

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

.wallcut-stage {
  width: 100%;
  height: 640px;
  border-radius: 16px;
  border: 1.5px solid var(--ink-indigo-18);
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(250,248,242,0.6));
  position: relative;
  overflow: hidden;
  box-shadow: 6px 14px 0 0 rgba(74, 110, 90, 0.16), 0 24px 48px rgba(74, 94, 110, 0.06);
}

#wallcut-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}

#wallcut-canvas:active { cursor: grabbing; }

.wallcut-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(74, 94, 110, 0.7);
  padding: 8px 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 10px;
}

.hero-live-marker {
  position: absolute;
  top: 120px;
  right: 24px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--ink-indigo-16);
  border-radius: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-indigo);
  z-index: 7;
  min-width: 220px;
  border-top: 3px solid var(--sage-pastel);
}

.hero-live-marker .live-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 0;
}

.hero-live-marker .live-key { color: var(--ink-indigo-soft); }
.hero-live-marker .live-val { color: var(--ink-indigo); font-weight: 600; }

.section-pad { padding: 120px 56px; max-width: 1440px; margin: 0 auto; position: relative; z-index: 2; overflow: hidden; }

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 80px;
}

.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--sage-pastel);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 84px;
  line-height: 0.96;
  color: var(--ink-indigo);
  font-variation-settings: "wdth" 130, "opsz" 144;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.section-title-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink-indigo-soft);
  display: block;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.section-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--sage-pastel);
  text-transform: uppercase;
}

.section-aside {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-indigo);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
}

.bento-grid > .pearl-card { padding: 24px; }

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide  { grid-column: span 2; }
.bento-tall  { grid-row: span 2; }
.bento-small { grid-column: span 1; grid-row: span 1; }

.bento-media {
  width: calc(100% + 48px);
  margin: -24px -24px 18px;
  height: 60%;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
}

.bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-spec {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--sage-pastel-12);
  border-top: 1px solid var(--ink-indigo);
  border-radius: 0 0 14px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-indigo);
  line-height: 1.6;
}

.editorial-cols {
  column-count: 3;
  column-gap: 36px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-indigo);
}

.editorial-cols p { margin: 0 0 18px; break-inside: avoid; }

.editorial-2col { column-count: 2; }

.editorial-side-data {
  break-inside: avoid;
  margin: 18px 0;
  padding: 22px 24px;
  background: var(--pearl-white);
  border: 1px solid var(--ink-indigo-16);
  border-radius: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-indigo);
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  line-height: 1.32;
  color: var(--sage-pastel);
  font-variation-settings: "wdth" 125, "opsz" 144;
  break-inside: avoid;
  padding: 12px 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.editorial-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  border: 1.5px solid var(--ink-indigo-16);
  box-shadow: 8px 20px 0 0 rgba(74, 110, 90, 0.16);
  margin: 24px 0;
}

.editorial-caption {
  font-family: 'Shippori Mincho', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(74, 94, 110, 0.6);
  margin-top: 8px;
  margin-bottom: 18px;
  text-align: center;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 28px 0;
  border-top: 1px solid var(--ink-indigo-12);
  border-bottom: 1px solid var(--ink-indigo-12);
  margin-top: 48px;
}

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 60s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 30px;
  color: rgba(74, 94, 110, 0.7);
  letter-spacing: 0.04em;
}

.marquee-track span { padding: 0 28px; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.process-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 64px;
  max-width: 720px;
  margin: 0 auto;
}

.process-stack::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: repeating-linear-gradient(to bottom, var(--ink-indigo) 0 8px, transparent 8px 12px);
}

.process-card {
  display: grid;
  grid-template-columns: 64px 56px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 18px 24px;
  background: var(--pearl-white);
  border: 1.5px solid var(--ink-indigo-18);
  border-radius: 20px;
  box-shadow: 6px 14px 0 0 rgba(74, 110, 90, 0.08);
  transition: all 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.process-card:hover, .process-card.in-view {
  transform: translateY(-6px);
  border-color: var(--sage-pastel);
  border-width: 2.5px;
  box-shadow: 12px 24px 0 0 rgba(74, 110, 90, 0.24);
  z-index: 10;
}

.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--sage-pastel);
  font-variation-settings: "opsz" 144;
  font-weight: 700;
}

.process-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ink-indigo);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-title { font-family: 'Fraunces', serif; font-style: italic; font-size: 16px; font-weight: 700; letter-spacing: 0.02em; color: var(--ink-indigo); text-transform: uppercase; }
.process-desc { font-family: 'Inter Tight', sans-serif; font-size: 11px; color: rgba(74, 94, 110, 0.8); margin-top: 4px; line-height: 1.5; }
.process-jp { font-family: 'Shippori Mincho', serif; font-size: 10px; color: rgba(74, 94, 110, 0.7); letter-spacing: 0.06em; text-transform: uppercase; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.benefit-list { display: flex; flex-direction: column; }

.benefit-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px dashed var(--ink-indigo-24);
  cursor: pointer;
  transition: transform 280ms ease, background 240ms ease;
  position: relative;
}

.benefit-row:first-child { border-top: 1px dashed var(--ink-indigo-24); }

.benefit-row:hover { transform: translateX(8px); z-index: 10; }

.benefit-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--sage-pastel);
  text-transform: uppercase;
  padding-top: 4px;
}

.benefit-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: var(--ink-indigo);
  margin: 0 0 4px;
  font-weight: 500;
}

.benefit-en {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: rgba(74, 94, 110, 0.8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.benefit-tech {
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  font-size: 11px;
  color: var(--sage-pastel);
  margin-top: 6px;
}

.benefit-visual {
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--pearl-white);
  border: 1.5px solid var(--ink-indigo-18);
  box-shadow: 6px 14px 0 0 rgba(74, 110, 90, 0.08);
}

.benefit-visual-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-indigo-soft);
}

.benefit-slot {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  clip-path: inset(100% 0 0 0);
  transition: opacity 460ms ease, transform 460ms cubic-bezier(0.65, 0, 0.35, 1), clip-path 460ms cubic-bezier(0.65, 0, 0.35, 1);
}

.benefit-slot img { width: 100%; height: 100%; object-fit: cover; }
.benefit-slot.active { opacity: 1; pointer-events: auto; transform: translateY(0); clip-path: inset(0 0 0 0); }

.benefit-spec {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-indigo);
}

.masonry {
  column-count: 3;
  column-gap: 24px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--ink-indigo-18);
  background: var(--pearl-white);
  box-shadow: 6px 14px 0 0 rgba(74, 110, 90, 0.08);
  transition: all 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.masonry-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 12px 24px 0 0 rgba(74, 110, 90, 0.24);
  z-index: 10;
  border-color: var(--sage-pastel);
}

.masonry-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.masonry-meta {
  padding: 16px 18px 20px;
}

.masonry-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-indigo);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.masonry-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 12px;
  color: var(--ink-indigo-soft);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.masonry-spec {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--sage-pastel);
  text-transform: uppercase;
  border-top: 1px solid var(--ink-indigo-12);
  padding-top: 10px;
  margin-top: 10px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--pearl-white);
  border: 1.5px solid var(--ink-indigo-16);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 6px 14px 0 0 rgba(74, 110, 90, 0.08);
  transition: all 360ms ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 12px 24px 0 0 rgba(74, 110, 90, 0.24);
  border-color: var(--sage-pastel);
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-indigo);
  margin-bottom: 22px;
  font-variation-settings: "wdth" 115, "opsz" 144;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--ink-indigo-24);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--ink-indigo-16);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-indigo);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.testimonial-role {
  font-family: 'Shippori Mincho', serif;
  font-size: 11px;
  color: var(--ink-indigo-soft);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--pearl-white);
  border: 1.5px solid var(--ink-indigo-16);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 6px 14px 0 0 rgba(74, 110, 90, 0.08);
  transition: all 360ms ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 24px 0 0 rgba(74, 110, 90, 0.24);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) brightness(1.02);
}

.team-meta {
  padding: 18px 20px 22px;
}

.team-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-indigo);
  margin: 0 0 2px;
}

.team-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  color: var(--ink-indigo-soft);
  letter-spacing: 0.06em;
}

.team-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--sage-pastel);
  text-transform: uppercase;
  margin-top: 8px;
}

.team-bio {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  color: rgba(74, 94, 110, 0.85);
  line-height: 1.6;
  margin-top: 12px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-block { padding: 32px; background: var(--pearl-white); border: 1.5px solid var(--ink-indigo-18); border-radius: 20px; box-shadow: 6px 14px 0 0 rgba(74, 110, 90, 0.08); }

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--ink-indigo-24);
}

.contact-line:first-child { padding-top: 0; }
.contact-line:last-child { border-bottom: none; padding-bottom: 0; }

.contact-key {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-indigo-soft);
}

.contact-val {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-indigo);
  font-weight: 500;
}

.contact-val-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink-indigo);
  letter-spacing: -0.01em;
}

.contact-form {
  padding: 36px;
  background: var(--pearl-white);
  border: 1.5px solid var(--ink-indigo-18);
  border-radius: 20px;
  box-shadow: 6px 14px 0 0 rgba(74, 110, 90, 0.08);
}

.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }

.form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-indigo-soft);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1.5px solid var(--ink-indigo-24);
  border-radius: 14px;
  background: rgba(255,255,255,0.85);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink-indigo);
  transition: border-color 200ms ease, background 200ms ease;
}

.form-textarea {
  height: 140px;
  padding: 16px 18px;
  resize: vertical;
  line-height: 1.5;
  font-family: inherit;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--sage-pastel);
  background: var(--pearl-white);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(74, 94, 110, 0.5);
}

.form-checkbox-row { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--ink-indigo); margin-bottom: 18px; line-height: 1.5; }
.form-checkbox-row input { margin-top: 3px; flex-shrink: 0; }

.form-submit {
  width: 100%;
  height: 64px;
  border: none;
  background: var(--sage-pastel);
  color: var(--pearl-white);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(74, 110, 90, 0.32);
  transition: all 240ms ease;
  white-space: nowrap;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(74, 110, 90, 0.42);
}

.form-success {
  padding: 36px;
  text-align: center;
  background: var(--sage-pastel-12);
  border: 1.5px solid var(--sage-pastel);
  border-radius: 20px;
  display: none;
}

.form-success.show { display: block; }

.form-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--sage-pastel);
  margin: 0 0 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 380px;
  max-width: calc(100vw - 48px);
  z-index: 999;
  padding: 22px 24px;
  background: rgba(250, 248, 242, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1.5px solid var(--ink-indigo-18);
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(74, 94, 110, 0.18);
  font-size: 13px;
  color: var(--ink-indigo);
  line-height: 1.55;
}

.cookie-banner h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink-indigo);
}

.cookie-banner p { margin: 0 0 16px; font-size: 12px; }

.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.cookie-btn {
  flex: 1;
  min-width: 100px;
  height: 40px;
  padding: 0 14px;
  border-radius: 20px;
  border: 1.5px solid var(--ink-indigo);
  background: transparent;
  color: var(--ink-indigo);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms ease;
}

.cookie-btn.primary { background: var(--sage-pastel); color: var(--pearl-white); border-color: var(--sage-pastel); }
.cookie-btn:hover { transform: translateY(-1px); }

.cookie-links { margin-top: 12px; display: flex; gap: 14px; flex-wrap: wrap; }
.cookie-links a { font-size: 11px; text-decoration: underline; color: var(--ink-indigo-soft); }

.site-footer {
  position: relative;
  z-index: 2;
  padding: 80px 56px 36px;
  background: linear-gradient(180deg, transparent 0%, rgba(74, 94, 110, 0.04) 100%);
  border-top: 1px solid var(--ink-indigo-18);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto 48px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--ink-indigo);
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}

.footer-brand-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  color: var(--ink-indigo-soft);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(74, 94, 110, 0.85);
  max-width: 360px;
}

.footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-pastel);
  margin-bottom: 18px;
}

.footer-col-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col-list a { font-size: 13px; color: var(--ink-indigo); transition: color 200ms ease, padding-left 200ms ease; display: inline-block; }
.footer-col-list a:hover { color: var(--sage-pastel); padding-left: 4px; }

.footer-contact-line {
  font-size: 12px;
  color: var(--ink-indigo);
  margin: 6px 0;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.04em;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--ink-indigo-12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-indigo-soft);
}

.footer-bottom a { color: var(--ink-indigo-soft); transition: color 200ms ease; }
.footer-bottom a:hover { color: var(--sage-pastel); }

.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

.service-detail-hero { padding-top: 96px; padding-bottom: 80px; }
.service-detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; margin-top: 56px; }
.service-detail-img { width: 100%; height: 460px; object-fit: cover; border-radius: 20px; border: 1.5px solid var(--ink-indigo-18); box-shadow: 6px 14px 0 0 rgba(74, 110, 90, 0.16); }

.spec-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.spec-table tr td { padding: 14px 0; border-bottom: 1px dashed var(--ink-indigo-24); font-size: 14px; color: var(--ink-indigo); vertical-align: top; }
.spec-table tr td:first-child { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-indigo-soft); width: 180px; }
.spec-table tr td:last-child { font-family: 'Fraunces', serif; font-style: italic; font-size: 16px; }

.faq-item {
  border-bottom: 1px dashed var(--ink-indigo-24);
  padding: 22px 0;
  cursor: pointer;
}

.faq-item:first-child { border-top: 1px dashed var(--ink-indigo-24); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-indigo);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  color: var(--sage-pastel);
  flex-shrink: 0;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms ease, color 240ms ease;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--sage-pastel); color: var(--pearl-white); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease, padding 360ms ease;
  font-size: 14px;
  color: rgba(74, 94, 110, 0.88);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 14px;
}

.thanks-shell { text-align: center; padding: 200px 56px; }
.thanks-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.24em; color: var(--sage-pastel); text-transform: uppercase; margin-bottom: 24px; }
.thanks-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 96px; line-height: 1; color: var(--ink-indigo); margin: 0 0 24px; font-variation-settings: "wdth" 130, "opsz" 144; }
.thanks-msg { font-size: 18px; line-height: 1.7; color: var(--ink-indigo); max-width: 640px; margin: 0 auto 40px; }

.legal-shell { max-width: 880px; margin: 0 auto; padding: 160px 56px 80px; }
.legal-shell h1 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 64px; color: var(--ink-indigo); margin: 0 0 12px; font-variation-settings: "wdth" 130, "opsz" 144; }
.legal-shell h2 { font-family: 'Fraunces', serif; font-style: italic; font-size: 28px; color: var(--sage-pastel); margin: 48px 0 12px; }
.legal-shell p, .legal-shell li { font-size: 15px; line-height: 1.78; color: rgba(74, 94, 110, 0.92); margin-bottom: 14px; }
.legal-shell ul { padding-left: 22px; }

.compact-hero { padding: 140px 56px 60px; max-width: 1440px; margin: 0 auto; position: relative; z-index: 2; }
.compact-hero-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.24em; color: var(--sage-pastel); text-transform: uppercase; margin-bottom: 14px; }
.compact-hero-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 84px; line-height: 0.96; color: var(--ink-indigo); margin: 0; font-variation-settings: "wdth" 130, "opsz" 144; font-weight: 700; letter-spacing: -0.02em; }

.kbd-back { display: inline-block; padding: 8px 16px; margin-bottom: 18px; border-radius: 999px; border: 1px solid var(--ink-indigo-24); font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--ink-indigo); }

.sticky-cta { position: sticky; bottom: 16px; z-index: 30; display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; background: var(--sage-pastel); color: var(--pearl-white); border-radius: 32px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.06em; box-shadow: 0 12px 28px rgba(74, 110, 90, 0.36); margin-top: 32px; text-transform: uppercase; }

.swatch-strip {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
  margin: 32px 0;
}

.swatch-cell {
  height: 60px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.swatch-cell::after {
  content: attr(data-code);
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero-title { font-size: 96px; }
  .section-title { font-size: 60px; }
  .compact-hero-title { font-size: 56px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento-large { grid-column: span 2; grid-row: span 2; }
  .bento-tall { grid-row: span 2; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .masonry { column-count: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .wallcut-stage { height: 460px; }
  .hero-live-marker { position: static; margin-bottom: 18px; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .atelier-header { height: 64px; }
  .logo-monolith { padding-left: 16px; gap: 8px; }
  .logo-mark { width: 36px; height: 36px; }
  .logo-domain { font-size: 14px; }
  .logo-jp { font-size: 9px; }
  .nav-rail { display: none; }
  .burger-btn { display: flex; }
  .section-pad { padding: 80px 20px; }
  .compact-hero { padding: 100px 20px 40px; }
  .hero-title { font-size: 56px; }
  .section-title { font-size: 44px; }
  .compact-hero-title { font-size: 44px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
  .editorial-cols { column-count: 1; }
  .editorial-2col { column-count: 1; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .team-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-grid > .pearl-card { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 280px; }
  .bento-media { height: 200px; }
  .process-stack { padding-left: 36px; }
  .process-card { grid-template-columns: 36px 36px 1fr; gap: 12px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 32px; }
  .benefit-visual { height: 280px; }
  .contact-shell { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 60px 20px 24px; }
  .wallcut-stage { height: 320px; }
  .marquee-track { font-size: 22px; }
  .pull-quote { font-size: 24px; }
  .thanks-title { font-size: 56px; }
  .thanks-shell { padding: 120px 20px; }
  .legal-shell { padding: 100px 20px 60px; }
  .legal-shell h1 { font-size: 40px; }
  .legal-shell h2 { font-size: 22px; }
  .hero-passport { grid-template-columns: 1fr; }
  .btn-cta-primary { height: 64px; padding: 0 32px; font-size: 14px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .cookie-banner { width: calc(100vw - 32px); left: 16px; bottom: 16px; padding: 18px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 44px; }
  .section-title { font-size: 36px; }
  .compact-hero-title { font-size: 36px; }
}
