:root {
  --bg: #070707;
  --panel: #101012;
  --panel-2: #171719;
  --text: #f7f7f7;
  --muted: #c9c9c9;
  --line: rgba(255, 255, 255, 0.14);
  --red: #e3142f;
  --pink: #d82dd5;
  --orange: #ff7a18;
  --gold: #e4b45a;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 14px clamp(18px, 4vw, 46px);
  background: rgba(7, 7, 7, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 3vw, 42px);
  font-weight: 700;
  color: #f0f0f0;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--red);
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 14px 34px rgba(216, 45, 213, 0.28);
  color: #fff;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("./assets/hero-garage.png");
  background-size: cover;
  background-position: 58% center;
  transform: scale(1.02);
  filter: brightness(2.05) contrast(0.98) saturate(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.36) 36%, rgba(0, 0, 0, 0) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin-left: clamp(20px, 5vw, 78px);
  padding-top: 78px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(24px, 4.3vw, 62px);
  line-height: 1.08;
  font-weight: 1000;
  text-wrap: nowrap;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero h1 .accent {
  color: var(--red);
  text-shadow: 0 10px 28px rgba(227, 20, 47, 0.35);
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #efefef;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.secondary-link {
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(0, 0, 0, 0.42);
  color: #f3f3f3;
  font-weight: 800;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.band {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(227, 20, 47, 0.14), transparent 42%),
    var(--panel);
}

.intro {
  padding: 56px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: end;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.2;
}

.intro p,
.info-main p,
.section-heading p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.services,
.info {
  padding: 74px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

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

.service-card {
  overflow: hidden;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 16px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.service-card p,
.voice blockquote p {
  color: var(--muted);
  line-height: 1.8;
}

.voice {
  padding: 70px 0;
}

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

blockquote {
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

blockquote p {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
}

cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.info {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.info-main {
  padding: 38px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(227, 20, 47, 0.18), transparent),
    var(--panel);
  border: 1px solid var(--line);
}

.info-panel {
  border-radius: 8px;
  background: #f7f7f7;
  color: #111;
  padding: 30px;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

dt {
  font-weight: 900;
}

dd {
  margin: 0;
  line-height: 1.7;
}

.source-note {
  margin: 18px 0 0;
  color: #555;
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 46px);
  background: #000;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 24px;
  font-style: italic;
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.42)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.04));
  }

  .intro-grid,
  .service-grid,
  .voice-grid,
  .info {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 12px;
    gap: 10px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 18px;
  }

  .header-cta {
    max-width: 138px;
    text-align: center;
    line-height: 1.25;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(22px, 6.4vw, 34px);
  }

  .primary-button {
    width: 100%;
    padding: 0 14px;
    text-align: center;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
