:root {
  --ink: #121211;
  --paper: #101114;
  --muted: #aaa79f;
  --line: rgba(255, 255, 255, .13);
  --acid: #d8ff36;
  --red: #ef4538;
  --yellow: #ffd43b;
  --blue: #4e72ff;
  --sakura: #f3a8bf;
  --sakura-deep: #d96f96;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { color: inherit; }
button { font: inherit; }
a { text-decoration: none; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4vw;
  color: white;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand > span:last-child, .footer-brand > span:last-child { color: var(--acid); }
.footer-brand > .footer-word { color: white; }
.footer-brand > .footer-word > span { color: var(--acid); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--ink) !important;
  background: var(--acid);
  border-radius: 50%;
  font-family: "DM Mono", monospace;
}

nav { display: flex; gap: 32px; font-size: 13px; font-weight: 600; }
nav a { opacity: .72; transition: opacity .2s; }
nav a:hover { opacity: 1; }
.menu-button { display: none; border: 0; background: none; color: white; }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  color: white;
  background-color: var(--ink);
  background-image: url("assets/kirituin-fuji-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9,9,9,.42) 0%, rgba(9,9,9,.18) 9%, rgba(9,9,9,.04) 18%, transparent 27%, transparent 88%, rgba(9,9,9,.18) 100%),
    linear-gradient(180deg, rgba(9,9,9,.42) 0%, rgba(9,9,9,.08) 14%, transparent 34%, transparent 72%, rgba(9,9,9,.72) 100%),
    radial-gradient(ellipse at center, transparent 62%, rgba(9,9,9,.2) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 760px;
  padding: clamp(125px, 14vh, 185px) 3vw 11vh 4vw;
}
.eyebrow {
  margin: 0 0 20px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(72px, 7.4vw, 132px);
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hero h1 em { color: var(--acid); font-style: normal; }
.hero-intro {
  max-width: 470px;
  margin: 0 0 28px;
  color: #b9b9b3;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
}
.hero-lower { margin-top: auto; }
.hero-actions { display: flex; align-items: center; gap: 20px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.button.ghost { min-width: auto; border: 0; }

.hero-visual { position: relative; z-index: 1; min-height: 680px; overflow: hidden; }
.hero-visual > * { display: none; }
.hero-copy h1, .hero-copy .hero-intro { text-shadow: 0 3px 22px rgba(0,0,0,.68); }
.sun {
  position: absolute;
  top: 50%; left: 50%;
  width: min(38vw, 590px); aspect-ratio: 1;
  transform: translate(-42%, -46%);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 90px rgba(239,69,56,.22);
}
.grid {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: linear-gradient(transparent 3%, #000 30%, #000 90%, transparent);
}
.vertical-type {
  position: absolute;
  top: 20%; right: 7%;
  writing-mode: vertical-rl;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: .25em;
}
.hero-number {
  position: absolute;
  right: 4%; bottom: 5%;
  color: rgba(255,255,255,.12);
  font-size: 180px;
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.08em;
}
.silhouette {
  position: absolute;
  z-index: 2;
  left: 1%; right: -4%; top: 49%;
  height: 30%;
  filter: drop-shadow(0 35px 25px rgba(0,0,0,.5));
}
.silhouette::before {
  content: "";
  position: absolute;
  inset: 16% 4% 19%;
  background: #090909;
  clip-path: polygon(2% 68%, 7% 50%, 28% 42%, 40% 13%, 68% 11%, 80% 41%, 95% 52%, 99% 70%, 95% 82%, 8% 82%);
  border-radius: 20% 28% 8% 8%;
}
.silhouette::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 23% 78%, #080808 0 10%, #666 10.5% 12%, transparent 12.5%), radial-gradient(circle at 78% 78%, #080808 0 10%, #666 10.5% 12%, transparent 12.5%);
}
.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 25px; left: 4vw;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #858580;
  font: 10px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.scroll-cue span { width: 40px; height: 1px; background: var(--acid); }

.section { padding: 120px 6vw; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}
.section-heading h2, .about h2 {
  margin: 0;
  font-size: clamp(45px, 6vw, 88px);
  line-height: .95;
  letter-spacing: -.06em;
}
.section-heading > p {
  margin: 0;
  color: #6c6b66;
  line-height: 1.8;
}

.car-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.car-card {
  min-width: 0;
  overflow: hidden;
  background: #e6e2d8;
  border-radius: var(--radius);
  transition: transform .3s ease;
}
.car-card:hover { transform: translateY(-6px); }
.car-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.25fr .75fr; }
.card-art { position: relative; display: block; min-height: 360px; overflow: hidden; }
.featured .card-art { min-height: 520px; }
.art-skyline { background: #a91f1c; }
.art-s13 { background: var(--yellow); }
.art-starlet { color: white; background: #304bc3; }
.art-swift { color: white; background: #41413e; }
.photo-card {
  color: white;
  background-image: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.05) 48%, rgba(0,0,0,.58)), var(--car-photo);
  background-position: center;
  background-size: cover;
}
.photo-card .line-car { display: none; }
.car-card .photo-card { transition: filter .3s ease; }
.car-card:hover .photo-card { filter: saturate(1.08) contrast(1.03); }
.year, .chassis {
  position: absolute;
  z-index: 2;
  top: 25px;
  font: 11px "DM Mono", monospace;
  letter-spacing: .12em;
}
.year { left: 26px; }
.chassis { right: 26px; }
.line-car {
  position: absolute;
  left: 7%; right: 7%; bottom: 20%;
  height: 44%;
  border-bottom: 3px solid currentColor;
  opacity: .85;
}
.line-car::before {
  content: "";
  position: absolute;
  left: 2%; right: 2%; bottom: -2px; height: 75%;
  border: 3px solid currentColor;
  border-bottom: 0;
  clip-path: polygon(0 78%, 9% 50%, 30% 42%, 41% 7%, 69% 7%, 82% 45%, 96% 55%, 100% 77%, 100% 100%, 0 100%);
}
.line-car::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 100%, transparent 0 13%, currentColor 13.5% 15%, transparent 15.5%), radial-gradient(circle at 79% 100%, transparent 0 13%, currentColor 13.5% 15%, transparent 15.5%);
}
.starlet-line::before { clip-path: polygon(0 72%, 12% 49%, 35% 42%, 44% 15%, 70% 15%, 82% 48%, 97% 57%, 100% 75%, 100% 100%, 0 100%); }
.swift-line::before { clip-path: polygon(0 73%, 10% 50%, 30% 43%, 42% 11%, 67% 11%, 80% 42%, 96% 54%, 100% 76%, 100% 100%, 0 100%); }
.card-copy { padding: 30px; display: flex; flex-direction: column; justify-content: space-between; gap: 36px; }
.featured .card-copy { padding: 48px; }
.card-kicker { margin: 0 0 5px; font: 11px "DM Mono", monospace; text-transform: uppercase; letter-spacing: .1em; }
.card-copy h3 { margin: 0; font-size: clamp(36px, 4vw, 64px); letter-spacing: -.06em; }
.card-copy > p { margin: 0; color: #65645f; line-height: 1.7; }
.text-button { padding: 0; align-self: flex-start; border: 0; border-bottom: 1px solid; background: none; font-weight: 700; cursor: pointer; }

.status { color: white; background: var(--ink); }
.inverse > p { color: #96968f; }
.status-list { border-top: 1px solid rgba(255,255,255,.17); }
.status-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.status-index { color: #64645f; font: 11px "DM Mono", monospace; }
.status-row div { display: flex; gap: 25px; align-items: baseline; }
.status-row strong { min-width: 145px; font-size: 21px; }
.status-row div span { color: #8f8f89; }
.pill { padding: 7px 11px; border: 1px solid; border-radius: 20px; font: 10px "DM Mono", monospace; text-transform: uppercase; letter-spacing: .05em; }
.pill.active { color: var(--acid); }
.pill.waiting { color: #ffba48; }
.pill.driving { color: #6dd6ff; }
.pill.daily { color: #f797cd; }

.about { display: grid; grid-template-columns: .35fr 1fr; gap: 8vw; }
.about-label { font: 11px "DM Mono", monospace; text-transform: uppercase; letter-spacing: .1em; }
.about-label span { display: inline-grid; place-items: center; width: 32px; height: 32px; margin-right: 12px; color: var(--paper); background: var(--ink); border-radius: 50%; }
.about-copy { max-width: 900px; }
.about-copy > p { max-width: 680px; margin: 35px 0 55px; color: #66655f; font-size: 18px; line-height: 1.8; }
.manifesto { display: flex; flex-wrap: wrap; gap: 12px; }
.manifesto span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 30px; font: 11px "DM Mono", monospace; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 35px 4vw;
  color: white;
  background: #090909;
  font-size: 11px;
}
footer p { color: #74746f; text-align: center; }
footer > a:last-child { justify-self: end; }

.car-dialog {
  width: min(780px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0,0,0,.5);
}
.car-dialog::backdrop { background: rgba(0,0,0,.77); backdrop-filter: blur(7px); }
.dialog-close { position: absolute; z-index: 2; top: 20px; right: 22px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: white; background: transparent; font-size: 25px; cursor: pointer; }
.dialog-header { padding: 65px 55px 48px; color: white; background: #9f2821; }
.dialog-header h2 { margin: 0 0 15px; font-size: clamp(45px, 8vw, 76px); line-height: .9; letter-spacing: -.06em; }
.dialog-header > p:last-child { max-width: 570px; margin: 0; color: rgba(255,255,255,.72); line-height: 1.7; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); padding: 35px 55px; }
.spec { padding: 19px 0; border-bottom: 1px solid var(--line); }
.spec:nth-child(odd) { padding-right: 20px; }
.spec:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
.spec small { display: block; margin-bottom: 7px; color: #77766f; font: 9px "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.spec strong { font-size: 15px; }
.dialog-note { margin: 0 55px 45px; padding: 18px; color: #56554f; background: #e7e2d5; border-radius: 4px; font-size: 13px; line-height: 1.7; }

@media (max-width: 900px) {
  nav { display: none; position: absolute; top: 70px; right: 4vw; flex-direction: column; padding: 20px; color: var(--ink); background: var(--acid); }
  nav.open { display: flex; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; background-position: 62% center; background-size: cover; }
  .hero-copy { min-height: 100svh; padding-bottom: 70px; }
  .hero-lower { margin-top: 34px; }
  .hero-visual { display: none; }
  .sun { width: 58vw; }
  .silhouette { top: 38%; }
  .scroll-cue { display: none; }
  .section { padding: 90px 5vw; }
  .car-card.featured { display: block; }
  .featured .card-art { min-height: 410px; }
  .about { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer > a:last-child { justify-self: center; }
}

@media (max-width: 640px) {
  .site-header { padding: 18px 20px; }
  .hero-copy { padding: 115px 22px 40px; }
  .hero h1 { font-size: 19vw; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { display: none; }
  .hero-number { font-size: 110px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 45px; }
  .car-grid { grid-template-columns: 1fr; }
  .card-art, .featured .card-art { min-height: 310px; }
  .featured .card-copy, .card-copy { padding: 28px; }
  .status-row { grid-template-columns: 32px 1fr; }
  .status-row div { display: block; }
  .status-row strong, .status-row div span { display: block; }
  .status-row div span { margin-top: 5px; line-height: 1.5; }
  .pill { grid-column: 2; justify-self: start; }
  footer { padding: 35px 20px; }
  .dialog-header { padding: 65px 28px 38px; }
  .spec-grid { grid-template-columns: 1fr; padding: 25px 28px; }
  .spec:nth-child(n) { padding: 16px 0; border-left: 0; }
  .dialog-note { margin: 0 28px 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Vehicle detail pages */
.detail-body { background: #0d0d0c; color: white; }
.detail-body .site-header { position: fixed; background: rgba(13,13,12,.78); backdrop-filter: blur(14px); }
.detail-body nav a { color: white; }
.detail-main { overflow: hidden; }
.detail-hero { position: relative; min-height: clamp(520px, 64svh, 720px); display: flex; align-items: flex-end; padding: 135px 6vw 55px; background: #222 center/cover no-repeat; }
.detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.12)), linear-gradient(0deg, rgba(0,0,0,.75), transparent 55%); }
.detail-hero-copy { position: relative; z-index: 1; max-width: 850px; }
.detail-hero h1 { margin: 0 0 22px; font-size: clamp(66px, 10vw, 150px); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.detail-hero-copy > p:last-child { max-width: 650px; color: #d0d0ca; font-size: 18px; line-height: 1.7; }
.detail-back { position: absolute; z-index: 2; top: 105px; left: 6vw; font: 11px "DM Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }
.detail-content { padding: 100px 6vw; background: var(--paper); color: var(--ink); }
.detail-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; margin-bottom: 90px; }
.detail-intro h2, .gallery-heading h2 { margin: 0; font-size: clamp(44px, 6vw, 84px); line-height: .95; letter-spacing: -.06em; }
.detail-intro p { margin: 0; color: #66655f; font-size: 17px; line-height: 1.8; }
.detail-specs { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 20px; border-top: 1px solid var(--line); }
.detail-spec { padding: 24px 16px 24px 0; border-bottom: 1px solid var(--line); }
.detail-spec small { display: block; margin-bottom: 8px; color: #77766f; font: 9px "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.detail-gallery { position: relative; isolation: isolate; padding: 72px 6vw 88px; overflow: hidden; background: #151514; }
.detail-gallery::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .09; background-image: radial-gradient(ellipse at 12% 18%, var(--sakura) 0 5px, transparent 6px), radial-gradient(ellipse at 14% 20%, var(--sakura) 0 4px, transparent 5px), radial-gradient(ellipse at 80% 32%, var(--sakura) 0 6px, transparent 7px), radial-gradient(ellipse at 83% 29%, var(--sakura) 0 4px, transparent 5px), radial-gradient(ellipse at 45% 78%, var(--sakura) 0 5px, transparent 6px); background-size: 260px 210px, 260px 210px, 330px 270px, 330px 270px, 300px 240px; }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.gallery-heading p { color: #888882; font: 11px "DM Mono", monospace; }
.gallery-heading::after { content: "桜 · ガレージ"; align-self: flex-start; color: var(--sakura); font: 11px "DM Mono", monospace; letter-spacing: .18em; writing-mode: vertical-rl; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gallery-item { position: relative; height: clamp(190px, 15vw, 230px); min-height: 0; overflow: hidden; background: #080808; border-radius: var(--radius); }
.gallery-item:first-child { min-height: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; cursor: zoom-in; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item figure, figure.gallery-item { margin: 0; }
.gallery-item figcaption { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 42px 18px 16px; color: white; background: linear-gradient(transparent, rgba(0,0,0,.84)); border-bottom: 2px solid var(--sakura-deep); font: 10px "DM Mono", monospace; letter-spacing: .04em; }
.timeline-gallery .gallery-item:last-child { min-height: 0; }
.image-lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 0; overflow: hidden; border: 0; background: rgba(0,0,0,.94); }
.image-lightbox::backdrop { background: rgba(0,0,0,.94); }
.image-lightbox img { width: 100%; height: 100%; padding: 35px; object-fit: contain; }
.lightbox-close { position: fixed; z-index: 2; top: 18px; right: 22px; width: 44px; height: 44px; color: white; background: rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 28px; line-height: 1; cursor: pointer; }
.gallery-placeholder { display: grid; place-items: center; padding: 30px; color: #66665f; border: 1px dashed #3b3b37; font: 11px "DM Mono", monospace; text-align: center; text-transform: uppercase; letter-spacing: .08em; }
.next-project { padding: 65px 6vw; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--ink); background: var(--acid); }
.next-project span { font: 11px "DM Mono", monospace; text-transform: uppercase; }
.next-project strong { font-size: clamp(30px, 5vw, 65px); letter-spacing: -.05em; }
@media (max-width: 900px) { .detail-specs { grid-template-columns: repeat(2, 1fr); } .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .gallery-item, .gallery-item:first-child { height: 220px; min-height: 0; } }
@media (max-width: 640px) { .detail-hero { min-height: 72svh; padding-inline: 22px; } .detail-back { left: 22px; } .detail-intro { grid-template-columns: 1fr; gap: 25px; } .detail-specs { grid-template-columns: 1fr; } .detail-content, .detail-gallery { padding-inline: 22px; } .gallery-heading { display: block; } .gallery-grid { grid-template-columns: 1fr; } .gallery-item, .gallery-item:first-child, .timeline-gallery .gallery-item:last-child { height: 230px; min-height: 0; } .image-lightbox img { padding: 12px; } .next-project { align-items: flex-start; flex-direction: column; } }

/* Midnight sakura theme */
body { color: #f1f0eb; background: #0b0c0e; }
.garage, .about, .detail-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f1f0eb;
  background: #101114;
}
.garage::before, .about::before, .detail-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    radial-gradient(ellipse at 8% 12%, var(--sakura) 0 5px, transparent 6px),
    radial-gradient(ellipse at 11% 15%, var(--sakura-deep) 0 3px, transparent 4px),
    radial-gradient(ellipse at 86% 22%, var(--sakura) 0 5px, transparent 6px),
    radial-gradient(ellipse at 90% 26%, var(--sakura-deep) 0 3px, transparent 4px),
    radial-gradient(ellipse at 44% 83%, var(--sakura) 0 4px, transparent 5px);
  background-size: 280px 230px, 280px 230px, 340px 280px, 340px 280px, 310px 250px;
}
.garage::after, .about::after, .detail-content::after {
  content: "桜";
  position: absolute;
  z-index: -1;
  right: 4vw;
  top: 48px;
  color: rgba(243,168,191,.055);
  font: 800 clamp(120px, 18vw, 300px) "Manrope", sans-serif;
}
.garage { background: #111216; }
.about { background: #0c0d10; }
.status { background: #090a0c; }
.section-heading > p, .about-copy > p, .detail-intro p { color: #aaa9a3; }
.car-card { color: #f0efe9; background: #191a1e; border: 1px solid rgba(255,255,255,.07); box-shadow: 0 22px 60px rgba(0,0,0,.22); }
.card-copy > p { color: #a8a7a1; }
.text-button { color: var(--sakura); }
.about-label span { color: #0b0c0e; background: var(--sakura); }
.manifesto span { color: #c9c8c1; border-color: rgba(243,168,191,.28); background: rgba(243,168,191,.04); }
.detail-content { color: #f1f0eb; background: #101114; }
.detail-specs { border-color: rgba(255,255,255,.12); }
.detail-spec { border-color: rgba(255,255,255,.12); }
.detail-spec small { color: #888883; }
.detail-gallery { background: #090a0c; }
.project-plan { margin-top: 70px; padding: 42px; border: 1px solid rgba(243,168,191,.28); border-left: 3px solid var(--sakura); background: linear-gradient(135deg, rgba(243,168,191,.1), rgba(255,255,255,.025)); }
.project-plan h3 { margin: 0 0 18px; font-size: clamp(34px, 5vw, 68px); line-height: .95; letter-spacing: -.055em; }
.project-plan > p:last-child { max-width: 680px; margin: 0; color: #aaa9a3; line-height: 1.8; }
.next-project { color: #f1f0eb; background: #15161a; border-top: 1px solid rgba(243,168,191,.35); }
.next-project strong { color: var(--sakura); }
.car-dialog { color: #f1f0eb; background: #141519; border: 1px solid rgba(255,255,255,.1); }
.spec:nth-child(n) { border-color: rgba(255,255,255,.12); }
.spec small { color: #8f8e89; }
.dialog-note { color: #c1c0ba; background: #202126; }

@media (max-width: 640px) {
  .project-plan { margin-top: 48px; padding: 28px 22px; }
}
