@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

:root {
  --sand-base: #F4EDE0;
  --cream-card: #FAF5E8;
  --graphite: #1A2845;
  --safety-orange: #FF6B1A;
  --hydraulic-blue: #2A5A9A;
  --alarm-red: #D63A2F;
  --tech-gray: #6B7585;
  --pale-sand: #E0D6C2;
  --oil-deep: #0F1A2E;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

html, body {
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--graphite);
  background: var(--sand-base);
  overflow-x: hidden;
  max-width: 100vw;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 0 !important;
}

.mono-cap {
  font-family: 'JetBrains Mono', 'Noto Sans JP', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.brutal-display {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--graphite);
}

.italic-serif {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
}

.jp-text {
  font-family: 'Noto Sans JP', sans-serif;
}

.kinetic-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.14;
}

.kinetic-track {
  position: absolute;
  white-space: nowrap;
  font-family: 'Archivo Black', sans-serif;
  font-size: 220px;
  font-weight: 900;
  color: var(--graphite);
  line-height: 1;
  letter-spacing: 0.02em;
  will-change: transform;
}

.kinetic-track.t1 { top: 6%; animation: scrollLeft 78s linear infinite; }
.kinetic-track.t2 { top: 24%; animation: scrollRight 92s linear infinite; font-size: 180px; opacity: 0.7; }
.kinetic-track.t3 { top: 44%; animation: scrollLeft 86s linear infinite; font-size: 260px; }
.kinetic-track.t4 { top: 64%; animation: scrollRight 74s linear infinite; font-size: 200px; opacity: 0.6; }
.kinetic-track.t5 { top: 84%; animation: scrollLeft 90s linear infinite; font-size: 240px; }
.kinetic-track.t6 { top: 14%; left: 50%; animation: scrollRight 100s linear infinite; font-size: 160px; opacity: 0.5; }

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

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

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(rgba(26,40,69,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
}

.garage-pill-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 980px;
  max-width: 92vw;
  height: 78px;
  background: var(--cream-card);
  border: 2px solid var(--graphite);
  box-shadow: 5px 5px 0 0 var(--safety-orange);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  gap: 16px;
}

.pill-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.pill-logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
}

.pill-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.pill-logo-text .brand-domain {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--graphite);
  white-space: nowrap;
}

.pill-logo-text .brand-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(26, 40, 69, 0.7);
  text-transform: uppercase;
  white-space: nowrap;
}

.pill-logo-text .brand-jp .accent {
  color: var(--safety-orange);
}

.pill-nav {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.pill-nav a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--graphite);
  text-decoration: none;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 220ms ease;
  white-space: nowrap;
}

.pill-nav a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: rgba(26, 40, 69, 0.3);
}

.pill-nav a::before {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--safety-orange);
  box-shadow: 2px 2px 0 0 var(--graphite);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.65, 0, 0.35, 1);
}

.pill-nav a:hover {
  color: var(--safety-orange);
}

.pill-nav a:hover::before {
  transform: scaleX(1);
}

.pill-odo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--graphite);
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border: 1.5px solid var(--graphite);
  background: var(--cream-card);
  white-space: nowrap;
  display: none;
}

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

.pill-burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--graphite);
  transition: transform 240ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--sand-base);
  background-image: radial-gradient(circle at center, var(--sand-base) 0%, var(--pale-sand) 100%);
  display: none;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: flex;
  animation: menuIn 480ms cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes menuIn {
  0% { clip-path: circle(0% at 50% 50%); }
  100% { clip-path: circle(150% at 50% 50%); }
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--graphite);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  color: var(--graphite);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
}

.mobile-menu-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu-list a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--graphite);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: block;
  padding: 6px 0;
  line-height: 1.4;
}

.page-main {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  padding: 40px 32px 80px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-photo-tile {
  position: relative;
  border: 1.5px solid var(--graphite);
  overflow: hidden;
  background: var(--cream-card);
}

.hero-photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-tile .dim-line {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(250, 245, 232, 0.94);
  border: 1px solid var(--graphite);
  padding: 4px 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--graphite);
  text-transform: uppercase;
}

.hero-photo-tile.t1 { grid-column: 1 / 5; grid-row: 1 / 3; height: 340px; }
.hero-photo-tile.t2 { grid-column: 5 / 7; grid-row: 1 / 2; height: 160px; }
.hero-photo-tile.t3 { grid-column: 5 / 7; grid-row: 2 / 3; height: 180px; }
.hero-photo-tile.t4 { grid-column: 7 / 9; grid-row: 1 / 2; height: 160px; }
.hero-photo-tile.t5 { grid-column: 7 / 9; grid-row: 2 / 3; height: 180px; }
.hero-photo-tile.t6 { grid-column: 1 / 5; grid-row: 3 / 4; height: 200px; }

.hero-typography {
  grid-column: 9 / 13;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-marker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--safety-orange);
  text-transform: uppercase;
  font-weight: 700;
}

.hero-h1 {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.03em;
}

.hero-h1 .row { display: block; }

.hero-divider {
  width: 320px;
  height: 4px;
  background: var(--safety-orange);
}

.hero-subtitle {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.5;
  color: var(--hydraulic-blue);
  max-width: 640px;
}

.hero-spec-plate {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 12px 16px;
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--graphite);
  text-transform: uppercase;
  font-weight: 700;
  align-self: flex-start;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.brutal-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--safety-orange);
  color: var(--graphite);
  border: 2px solid var(--graphite);
  box-shadow: 6px 6px 0 0 var(--graphite);
  padding: 18px 32px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 88px;
  max-width: 100%;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
  white-space: nowrap;
}

.brutal-btn-primary:hover {
  transform: translate(4px, 4px);
  box-shadow: 10px 10px 0 0 var(--graphite);
  color: var(--graphite);
}

.brutal-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-card);
  color: var(--graphite);
  border: 2px solid var(--graphite);
  box-shadow: 4px 4px 0 0 var(--safety-orange);
  padding: 14px 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 56px;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
  white-space: nowrap;
}

.brutal-btn-secondary:hover {
  transform: translate(3px, 3px);
  box-shadow: 7px 7px 0 0 var(--safety-orange);
  color: var(--graphite);
}

.live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--graphite);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50% !important;
  background: var(--alarm-red);
  position: relative;
  flex-shrink: 0;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--alarm-red);
  border-radius: 50% !important;
  animation: pulseRing 1.8s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-live-dash {
  position: absolute;
  top: 130px;
  right: 32px;
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  border-top: 4px solid var(--safety-orange);
  padding: 12px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--graphite);
  text-transform: uppercase;
  font-weight: 700;
  z-index: 4;
  min-width: 220px;
}

.hero-legend {
  position: absolute;
  bottom: 24px;
  left: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(26, 40, 69, 0.7);
  text-transform: uppercase;
  font-weight: 700;
}

.hard-cut {
  position: relative;
}

.hard-cut + .hard-cut {
  border-top: 2px solid var(--graphite);
}

.hard-cut + .hard-cut::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--sand-base);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

.section-block {
  position: relative;
  padding: 96px 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.section-bg-sand {
  background: var(--sand-base);
  color: var(--graphite);
}

.section-bg-cream {
  background: var(--cream-card);
  color: var(--graphite);
}

.section-title {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--graphite);
  line-height: 0.95;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--safety-orange);
  margin-bottom: 24px;
  line-height: 1.4;
}

.section-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--safety-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-bar {
  width: 480px;
  height: 4px;
  background: var(--safety-orange);
  margin: 16px 0 24px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-spec {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--safety-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.editorial-text {
  column-count: 3;
  column-gap: 28px;
  column-rule: 1px dashed rgba(26, 40, 69, 0.18);
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite);
}

.editorial-text p { margin-bottom: 14px; }

.editorial-pullquote {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 36px;
  line-height: 1.3;
  color: var(--safety-orange);
  column-span: all;
  margin: 24px 0;
  padding: 16px 0;
  border-top: 2px solid var(--safety-orange);
  border-bottom: 2px solid var(--safety-orange);
}

.editorial-spec-card {
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  padding: 20px;
  margin: 16px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--graphite);
  text-transform: uppercase;
  break-inside: avoid;
}

.editorial-spec-card div { padding: 4px 0; border-bottom: 1px dashed rgba(26,40,69,0.18); }
.editorial-spec-card div:last-child { border-bottom: 0; }

.cert-list {
  background: rgba(42, 90, 154, 0.1);
  border: 1px solid var(--graphite);
  padding: 18px 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(26, 40, 69, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.9;
  break-inside: avoid;
}

.editorial-photo {
  position: relative;
  border: 1.5px solid var(--graphite);
  box-shadow: 8px 8px 0 0 rgba(255, 107, 26, 0.85);
  background: var(--cream-card);
  width: 360px;
  max-width: 100%;
}

.editorial-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.editorial-photo .caption {
  padding: 10px 14px;
  font-family: 'Noto Sans JP', serif;
  font-style: italic;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(26, 40, 69, 0.7);
  border-top: 1.5px solid var(--graphite);
}

.marquee-strip {
  overflow: hidden;
  background: var(--graphite);
  color: var(--cream-card);
  padding: 18px 0;
  border-top: 2px solid var(--graphite);
  border-bottom: 2px solid var(--graphite);
  margin-top: 48px;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 60s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-style: italic;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: rgba(250, 245, 232, 0.75);
  gap: 32px;
}

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

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

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

.bento-card {
  position: relative;
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  box-shadow: 2px 2px 0 0 rgba(26, 40, 69, 0.12);
  padding: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, z-index 0ms;
  z-index: 1;
}

.bento-card:hover {
  transform: translate(6px, 6px);
  box-shadow: 6px 6px 0 0 rgba(255, 107, 26, 0.85);
  z-index: 10;
}

.bento-card .s-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  background: var(--safety-orange);
  border-right: 1.5px solid var(--graphite);
  border-bottom: 1.5px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 16px;
  color: var(--graphite);
  letter-spacing: 0.04em;
  transition: width 240ms ease, height 240ms ease, font-size 240ms ease;
}

.bento-card:hover .s-marker {
  width: 72px;
  height: 72px;
  font-size: 18px;
}

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

.bento-card .bento-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.bento-card .bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244,237,224,0.0) 0%, rgba(26,40,69,0.55) 100%);
  z-index: 1;
}

.bento-card .bento-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.46);
  border-top: 2px solid var(--graphite);
  padding: 12px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--graphite);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5;
}

.bento-card .bento-content .jp {
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  margin-top: 4px;
  color: var(--hydraulic-blue);
}

.bento-card.s-text {
  background: var(--cream-card);
}

.bento-card.s-text .bento-content {
  position: relative;
  background: transparent;
  border-top: 0;
  padding: 0;
  margin-top: auto;
}

.bento-card .bento-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(26,40,69,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,40,69,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.bento-card .bento-h {
  position: relative;
  z-index: 2;
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.02em;
  margin-top: 70px;
  line-height: 1.05;
}

.bento-card .bento-h .jp {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: rgba(26, 40, 69, 0.7);
  margin-top: 4px;
}

.bento-card .bento-h-overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 12px 0 0;
}

.timeline-section {
  position: relative;
}

.timeline-track {
  position: relative;
  margin-top: 48px;
  padding: 32px 0;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2.5px;
  background: var(--graphite);
  border-top: 1px dashed rgba(26,40,69,0.4);
  border-bottom: 1px dashed rgba(26,40,69,0.4);
}

.timeline-nodes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  align-items: center;
}

.timeline-node {
  position: relative;
  background: var(--cream-card);
  border: 1.5px solid rgba(26, 40, 69, 0.4);
  box-shadow: 2px 2px 0 0 rgba(26, 40, 69, 0.12);
  padding: 14px 12px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  z-index: 1;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.timeline-node:hover, .timeline-node.is-active {
  border-color: var(--safety-orange);
  box-shadow: 4px 4px 0 0 rgba(255, 107, 26, 0.24);
  transform: scale(1.05);
}

.timeline-node .t-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 800;
  color: var(--safety-orange);
  line-height: 1;
}

.timeline-node .t-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.timeline-node .t-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.timeline-node .t-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: rgba(26, 40, 69, 0.7);
  letter-spacing: 0.04em;
}

.timeline-nut {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--graphite);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation: nutMove 28s linear infinite;
  z-index: 5;
}

@keyframes nutMove {
  0% { left: 0%; }
  100% { left: 100%; }
}

.flex-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.flex-card {
  position: relative;
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  box-shadow: 2px 2px 0 0 rgba(26, 40, 69, 0.08);
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow 420ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, opacity 320ms ease;
}

.flex-grid-wrap {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.flex-grid-wrap > .flex-card { flex: 1; }

.flex-card:hover {
  flex: 1.55;
  transform: translate(4px, 4px);
  box-shadow: 6px 6px 0 0 rgba(255, 107, 26, 0.85);
  border-color: var(--safety-orange);
  border-width: 2.5px;
  z-index: 10;
  opacity: 0.98;
}

.flex-grid-wrap > .flex-card:not(:hover) {
  transform: scale(0.94);
  transition-delay: 80ms;
}

.flex-card .f-num {
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 88px;
  font-weight: 800;
  color: rgba(255, 107, 26, 0.14);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
}

.flex-card .f-icon {
  width: 56px;
  height: 56px;
}

.flex-card .f-title {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-top: 6px;
}

.flex-card .f-desc {
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26, 40, 69, 0.8);
  margin-top: auto;
}

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

.masonry-card {
  break-inside: avoid;
  margin-bottom: 18px;
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  box-shadow: 4px 4px 0 0 rgba(26, 40, 69, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease, z-index 0ms;
  position: relative;
  z-index: 1;
}

.masonry-card:hover {
  transform: translate(6px, 6px);
  box-shadow: 8px 8px 0 0 rgba(255, 107, 26, 0.85);
  z-index: 10;
}

.masonry-card .m-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1.5px solid var(--graphite);
}

.masonry-card .m-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--safety-orange);
  text-transform: uppercase;
}

.masonry-card .m-cat {
  width: 28px;
  height: 28px;
  background: var(--safety-orange);
  border: 1.5px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 800;
  color: var(--graphite);
}

.masonry-card .m-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-bottom: 1.5px solid var(--graphite);
}

.masonry-card .m-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.masonry-card:hover .m-media img { transform: scale(1.05); }

.masonry-card .m-body {
  padding: 14px;
}

.masonry-card .m-title {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 4px;
  transition: color 280ms ease;
}

.masonry-card:hover .m-title { color: var(--safety-orange); }

.masonry-card .m-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: rgba(26, 40, 69, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.masonry-card .m-spec {
  background: rgba(42, 90, 154, 0.1);
  border: 1px solid rgba(26, 40, 69, 0.2);
  padding: 10px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(26, 40, 69, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.7;
}

.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  min-height: 600px;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-row {
  position: relative;
  padding: 18px 12px;
  border-bottom: 1px dashed rgba(26, 40, 69, 0.18);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition: transform 280ms ease, z-index 0ms;
  z-index: 1;
}

.team-row:hover {
  transform: translateX(8px);
  z-index: 10;
  background: var(--cream-card);
}

.team-row .t-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--safety-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.team-row .t-info .t-name-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.1;
}

.team-row .t-info .t-name-en {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: rgba(26, 40, 69, 0.8);
  margin-top: 2px;
}

.team-row .t-info .t-role {
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-style: italic;
  font-size: 11px;
  color: var(--safety-orange);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-visual {
  position: relative;
  border: 1.5px solid var(--graphite);
  background: var(--cream-card);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  box-shadow: 6px 6px 0 0 rgba(255, 107, 26, 0.85);
  overflow: hidden;
  z-index: 1;
}

.team-visual .tv-img {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.team-visual .tv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-visual .tv-img .tv-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: rgba(26, 40, 69, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background:
    linear-gradient(rgba(26,40,69,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,40,69,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.team-visual .tv-spec {
  padding: 12px 16px;
  border-top: 1.5px solid var(--graphite);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(26, 40, 69, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.6;
  background: var(--cream-card);
}

.faq-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  padding-top: 24px;
}

.faq-card {
  position: relative;
  width: 720px;
  max-width: 100%;
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  box-shadow: 2px 2px 0 0 rgba(26, 40, 69, 0.08);
  padding: 0;
  margin-top: -24px;
  margin-left: 16px;
  transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 320ms ease, z-index 0ms;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  box-sizing: border-box;
}

.faq-card:first-child { margin-top: 0; }
.faq-card:hover { z-index: 5; box-shadow: 4px 4px 0 0 rgba(26, 40, 69, 0.16); }

.faq-card.is-open {
  z-index: 10;
  transform: scale(1.02);
  box-shadow: 6px 6px 0 0 rgba(255, 107, 26, 0.85);
}

.faq-card .fq-head {
  display: grid;
  grid-template-columns: 70px 1fr 50px;
  align-items: center;
  padding: 18px 20px;
  min-height: 88px;
  gap: 16px;
}

.faq-card .fq-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--safety-orange);
  letter-spacing: 0.04em;
}

.faq-card .fq-q {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.faq-card .fq-toggle {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--safety-orange);
  background: var(--cream-card);
  position: relative;
}

.faq-card .fq-toggle::before, .faq-card .fq-toggle::after {
  content: '';
  position: absolute;
  background: var(--safety-orange);
}

.faq-card .fq-toggle::before { width: 14px; height: 2.5px; }
.faq-card .fq-toggle::after { width: 2.5px; height: 14px; transition: transform 320ms ease; }

.faq-card.is-open .fq-toggle::after { transform: rotate(90deg); }

.faq-card .fq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(255, 107, 26, 0.06);
  border-left: 4px solid var(--alarm-red);
}

.faq-card.is-open .fq-body {
  max-height: 360px;
}

.faq-card .fq-body-inner {
  padding: 18px 20px 24px;
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--graphite);
}

.reviews-stage {
  position: relative;
  perspective: 1400px;
  padding: 60px 0;
}

.reviews-carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 620px;
}

.review-card {
  position: absolute;
  width: 480px;
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  box-shadow: 4px 4px 0 0 rgba(26, 40, 69, 0.12);
  padding: 24px;
  transition: transform 480ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 380ms ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  top: 30px;
  left: 50%;
  margin-left: -240px;
  height: 560px;
}

.review-card .rv-stars {
  color: var(--safety-orange);
  font-size: 20px;
  letter-spacing: 4px;
}

.review-card .rv-quote {
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--graphite);
  flex: 1;
  overflow: hidden;
}

.review-card .rv-photo {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--graphite);
  overflow: hidden;
}

.review-card .rv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card .rv-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(26, 40, 69, 0.15);
  padding-top: 14px;
}

.review-card .rv-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(26, 40, 69, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}

.review-card .rv-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--graphite);
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.review-controls button {
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  box-shadow: 3px 3px 0 0 var(--safety-orange);
  color: var(--graphite);
  width: 56px;
  height: 56px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.review-controls button:hover {
  transform: translate(2px, 2px);
  box-shadow: 5px 5px 0 0 var(--safety-orange);
  color: var(--safety-orange);
}

.cta-strip {
  background: var(--graphite);
  color: var(--cream-card);
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: 'LIVE.GARAGE / CARS.ON.LIFT: 6 / NEXT.SLOT: WED.10:00 / OIL.TEMP: 84°C / HYDRAULIC.PSI: 2400';
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(250, 245, 232, 0.3);
  letter-spacing: 0.18em;
  animation: marqueeScroll 50s linear infinite;
}

.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--cream-card);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.cta-strip p {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--safety-orange);
  margin-top: 12px;
}

.cta-strip .brutal-btn-primary {
  background: var(--safety-orange);
  color: var(--graphite);
  box-shadow: 6px 6px 0 0 var(--cream-card);
}

.cta-strip .brutal-btn-primary:hover {
  box-shadow: 10px 10px 0 0 var(--cream-card);
}

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

.contact-card {
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  box-shadow: 4px 4px 0 0 rgba(255, 107, 26, 0.85);
  padding: 32px;
}

.contact-card h3 {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--graphite);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.contact-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--graphite);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card dt {
  color: var(--safety-orange);
  font-weight: 700;
}

.contact-card dd {
  font-weight: 600;
  word-break: break-word;
}

.contact-card a {
  color: var(--graphite);
  text-decoration: none;
  border-bottom: 1.5px solid var(--safety-orange);
}

.contact-form {
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  box-shadow: 4px 4px 0 0 rgba(255, 107, 26, 0.85);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--graphite);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--cream-card);
  color: var(--graphite);
  border: 1.5px solid var(--graphite);
  padding: 12px 14px;
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  min-height: 48px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(26, 40, 69, 0.55); }

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--safety-orange);
  outline-offset: 2px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .brutal-btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}

.form-success {
  background: rgba(42, 90, 154, 0.1);
  border: 2px solid var(--hydraulic-blue);
  border-left: 6px solid var(--safety-orange);
  padding: 24px;
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--graphite);
  line-height: 1.6;
  display: none;
}

.form-success.is-visible { display: block; }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  width: 480px;
  max-width: calc(100vw - 32px);
  background: var(--graphite);
  color: var(--cream-card);
  border: 2px solid var(--safety-orange);
  box-shadow: 6px 6px 0 0 var(--safety-orange);
  padding: 20px 22px;
  z-index: 9000;
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.cookie-banner h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--cream-card);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cookie-banner p {
  color: rgba(250, 245, 232, 0.85);
  margin-bottom: 16px;
}

.cookie-banner .cb-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner .cb-btn {
  background: var(--safety-orange);
  color: var(--graphite);
  border: 1.5px solid var(--cream-card);
  padding: 10px 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 44px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cookie-banner .cb-btn.cb-decline {
  background: transparent;
  color: var(--cream-card);
  border-color: var(--cream-card);
}

.cookie-banner .cb-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--cream-card);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--safety-orange);
}

.garage-footer {
  background: var(--graphite);
  color: var(--cream-card);
  padding: 72px 32px 28px;
  position: relative;
  z-index: 2;
}

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

.garage-footer h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: var(--safety-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.garage-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.garage-footer a {
  color: var(--cream-card);
  text-decoration: none;
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}

.garage-footer a:hover {
  color: var(--safety-orange);
  border-color: var(--safety-orange);
}

.garage-footer .foot-brand {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 28px;
  color: var(--cream-card);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.05;
}

.garage-footer .foot-brand .jp {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--safety-orange);
  margin-top: 4px;
}

.garage-footer .foot-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250, 245, 232, 0.75);
  margin-top: 12px;
}

.garage-footer .foot-contact {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.8;
  color: rgba(250, 245, 232, 0.85);
  margin-top: 16px;
}

.garage-footer .foot-contact strong {
  color: var(--safety-orange);
  font-weight: 700;
  margin-right: 8px;
}

.garage-footer .foot-bottom {
  max-width: 1440px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 245, 232, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 245, 232, 0.7);
}

.thanks-stage {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 80px;
  position: relative;
  z-index: 2;
}

.thanks-card {
  max-width: 760px;
  background: var(--cream-card);
  border: 2px solid var(--graphite);
  box-shadow: 8px 8px 0 0 var(--safety-orange);
  padding: 48px;
  text-align: left;
  position: relative;
}

.thanks-card .thanks-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--safety-orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.thanks-card h1 {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--graphite);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.thanks-card p {
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--graphite);
  margin-bottom: 12px;
}

.thanks-card .thanks-spec {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(255, 107, 26, 0.08);
  border-left: 4px solid var(--safety-orange);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--graphite);
  text-transform: uppercase;
  line-height: 1.7;
}

.legal-doc {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 32px;
  position: relative;
  z-index: 2;
}

.legal-doc h1 {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 56px;
  color: var(--graphite);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1;
}

.legal-doc .legal-bar {
  width: 320px;
  height: 4px;
  background: var(--safety-orange);
  margin-bottom: 24px;
}

.legal-doc h2 {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  color: var(--graphite);
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal-doc p, .legal-doc li {
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite);
  margin-bottom: 12px;
}

.legal-doc ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.service-detail-hero {
  position: relative;
  z-index: 2;
  padding: 140px 32px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.service-detail-hero h1 {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 88px;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.service-detail-hero .service-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  color: var(--hydraulic-blue);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.service-detail-hero .service-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--safety-orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 18px;
  background: rgba(255, 107, 26, 0.08);
  border-left: 4px solid var(--safety-orange);
  display: inline-block;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 32px 32px 80px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-detail-content h2 {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 32px;
  color: var(--graphite);
  letter-spacing: -0.01em;
  margin: 28px 0 12px;
}

.service-detail-content p {
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--graphite);
  margin-bottom: 14px;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-detail-content ul li {
  padding: 12px 14px;
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--graphite);
  text-transform: uppercase;
}

.service-detail-photo {
  border: 1.5px solid var(--graphite);
  box-shadow: 6px 6px 0 0 var(--safety-orange);
  height: 480px;
  background: var(--cream-card);
  overflow: hidden;
}

.service-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-photo-mini {
  border: 1.5px solid var(--graphite);
  height: 220px;
  background: var(--cream-card);
  overflow: hidden;
  margin-top: 18px;
}

.service-detail-photo-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  box-shadow: 4px 4px 0 0 rgba(26, 40, 69, 0.12);
  margin-bottom: 18px;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.process-step:hover {
  transform: translate(4px, 4px);
  box-shadow: 7px 7px 0 0 rgba(255, 107, 26, 0.85);
  z-index: 5;
}

.process-step .ps-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 56px;
  font-weight: 900;
  color: var(--safety-orange);
  line-height: 1;
}

.process-step .ps-title {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.process-step .ps-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: var(--hydraulic-blue);
  margin-bottom: 8px;
}

.process-step .ps-desc {
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 40, 69, 0.85);
}

.blog-card {
  background: var(--cream-card);
  border: 1.5px solid var(--graphite);
  box-shadow: 4px 4px 0 0 rgba(26, 40, 69, 0.12);
  display: grid;
  grid-template-columns: 280px 1fr;
  margin-bottom: 22px;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.blog-card:hover {
  transform: translate(4px, 4px);
  box-shadow: 7px 7px 0 0 rgba(255, 107, 26, 0.85);
}

.blog-card .blog-img {
  height: 100%;
  min-height: 200px;
  overflow: hidden;
  border-right: 1.5px solid var(--graphite);
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .blog-body {
  padding: 24px;
}

.blog-card .blog-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--safety-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-card h3 {
  font-family: 'Archivo Black', 'Noto Sans JP', sans-serif;
  font-size: 26px;
  color: var(--graphite);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.1;
}

.blog-card p {
  font-family: 'IBM Plex Sans', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(26, 40, 69, 0.85);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.section-spacer { height: 64px; }
.section-spacer-sm { height: 32px; }

.kbd-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(32px); filter: blur(8px); }
  60% { filter: blur(0); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.kinetic-letter {
  display: inline-block;
  animation: slideUpFade 800ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (max-width: 1180px) {
  .garage-pill-header {
    width: 96vw;
    height: 64px;
    padding: 0 16px;
  }
  .pill-nav { display: none; }
  .pill-odo { display: none; }
  .pill-burger { display: flex; }
  .pill-logo-icon { width: 36px; height: 36px; }
  .pill-logo-text .brand-domain { font-size: 16px; }
  .pill-logo-text .brand-jp { font-size: 10px; }

  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 32px;
  }
  .hero-photo-tile.t1 { grid-column: 1; grid-row: auto; height: 280px; }
  .hero-photo-tile.t2 { grid-column: 1; grid-row: auto; height: 180px; }
  .hero-photo-tile.t3 { grid-column: 1; grid-row: auto; height: 280px; }
  .hero-photo-tile.t4 { grid-column: 1; grid-row: auto; height: 180px; }
  .hero-photo-tile.t5 { grid-column: 1; grid-row: auto; height: 140px; }
  .hero-photo-tile.t6 { grid-column: 1; grid-row: auto; height: 180px; }
  .hero-typography { grid-column: 1; grid-row: auto; }
  .hero-h1 { font-size: 64px; }
  .hero-subtitle { font-size: 18px; }
  .section-title { font-size: 40px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-text { column-count: 1; }
  .editorial-photo { width: 100%; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .bento-card.s-large { grid-column: span 2; grid-row: span 2; }
  .bento-card.s-wide { grid-column: span 2; }
  .bento-card.s-tall { grid-row: span 1; }
  .timeline-nodes { grid-template-columns: repeat(3, 1fr); }
  .flex-grow-grid, .flex-grid-wrap { grid-template-columns: 1fr; flex-direction: column; }
  .flex-grid-wrap > .flex-card { flex: 1; }
  .masonry-grid { column-count: 1; }
  .team-section { grid-template-columns: 1fr; }
  .team-visual { min-height: 360px; }
  .reviews-carousel { height: 720px; }
  .review-card { width: 90vw; max-width: 360px; margin-left: -180px; height: 600px; }
  .cta-strip-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .garage-footer-inner { grid-template-columns: 1fr 1fr; }
  .service-detail-hero h1 { font-size: 48px; }
  .service-detail-body { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .cta-row .brutal-btn-primary, .cta-row .brutal-btn-secondary { width: 100%; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card .blog-img { min-height: 200px; border-right: 0; border-bottom: 1.5px solid var(--graphite); }
  .thanks-card h1 { font-size: 40px; }
  .thanks-card { padding: 28px; }
  .hero-live-dash { position: static; margin-top: 24px; min-width: 0; }
  .hero-legend { position: static; margin-top: 18px; }
  .hero-cta-row .brutal-btn-primary { width: 100%; min-width: 0; }
}

@media (max-width: 600px) {
  .section-block { padding: 56px 18px; }
  .garage-footer { padding: 48px 18px 24px; }
  .garage-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.s-large, .bento-card.s-wide { grid-column: span 1; grid-row: span 1; }
  .timeline-nodes { grid-template-columns: repeat(2, 1fr); }
  .faq-card { margin-left: 8px; }
  .faq-card .fq-head { grid-template-columns: 50px 1fr 40px; padding: 14px 16px; min-height: 72px; }
  .cookie-banner { left: 12px; right: 12px; width: auto; padding: 16px; }
  .review-card { width: 86vw; max-width: 320px; margin-left: -160px; height: 580px; padding: 18px; }
  .hero-h1 { font-size: 44px; }
  .legal-doc h1 { font-size: 36px; }
}
