:root {
  --bg: #080808;
  --bg-2: #0e0e0e;
  --panel: #151515;
  --panel-2: #1d1d1d;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f7f7f4;
  --muted: #c5c3bd;
  --subtle: #918f89;
  --red: #e3222c;
  --red-dark: #ad141d;
  --gold: #d8bd55;
  --metal: #8c958f;
  --max: 1180px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(227, 34, 44, 0.1), transparent 430px),
    linear-gradient(90deg, rgba(216, 189, 85, 0.05), transparent 44%),
    var(--bg);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  opacity: 0.48;
  mask-image: linear-gradient(180deg, #000, transparent 76%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 15px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(188px, 17vw, 278px);
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.button,
.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  padding: 12px 17px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 26px rgba(227, 34, 44, 0.28);
  font-size: 13px;
}

.button {
  padding: 15px 22px;
  border: 1px solid transparent;
  font-size: 15px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(227, 34, 44, 0.3);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.055);
}

.button-tertiary {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.025);
}

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

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: 72% center;
  transform: translateX(3%) scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 42%, rgba(0, 0, 0, 0.25) 85%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  padding: 132px 0 100px;
  margin: 0 auto;
}

.kicker,
.section-label {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7.4vw, 94px);
  line-height: 1.06;
  letter-spacing: 0;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.84);
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.1vw, 50px);
  line-height: 1.24;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.42;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
}

.hero-points,
.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 800;
}

.hero-points li::before,
.check-list li::before {
  margin-right: 10px;
  color: var(--red);
  content: "■";
  font-size: 9px;
}

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

.hero-badges {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 22px;
  left: clamp(20px, 4vw, 58px);
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.section-head {
  width: min(860px, 100%);
  margin: 0 auto 42px;
}

.section-head.centered {
  text-align: center;
}

.section-head.narrow {
  width: min(690px, 100%);
}

.section-divider {
  display: block;
  width: 54px;
  height: 4px;
  margin: 24px auto 28px;
  background: var(--red);
}

.section-head:not(.centered) .section-divider,
.split-copy .section-divider,
.cta-copy .section-divider {
  margin-right: 0;
  margin-left: 0;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.intro,
.services,
.faq,
.access {
  background: var(--bg);
}

.intro-grid,
.service-grid,
.feature-grid,
.menu-grid,
.comparison,
.flow-grid,
.faq-list,
.notice-panel,
.access-grid,
.story-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.image-card,
.feature-card,
.menu-card,
.comparison-card,
.flow-card,
.faq-item,
.notice-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.image-card,
.menu-card {
  overflow: hidden;
}

.image-card img,
.menu-card img {
  height: 185px;
  object-fit: cover;
  transition: transform 520ms ease, filter 220ms ease;
}

.image-card:hover img,
.menu-card:hover img {
  filter: contrast(1.08) saturate(1.04);
  transform: scale(1.04);
}

.image-card div,
.menu-card-body {
  padding: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  margin-bottom: 12px;
  color: #fff;
  border: 1px solid rgba(227, 34, 44, 0.42);
  border-radius: 999px;
  background: rgba(227, 34, 44, 0.13);
  font-size: 12px;
  font-weight: 900;
}

.tag-hot {
  color: #111;
  border-color: rgba(216, 189, 85, 0.75);
  background: linear-gradient(180deg, #f4db74, var(--gold));
}

.studio {
  background: linear-gradient(180deg, #101010, #090909);
}

.split,
.story-grid,
.access-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-copy p,
.story-copy p {
  font-size: 17px;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.spec-list div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list strong {
  color: var(--gold);
}

.spec-list span {
  color: var(--text);
  font-weight: 800;
}

.split-photo,
.story-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-photo img,
.story-photo img {
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.features {
  background:
    linear-gradient(180deg, rgba(227, 34, 44, 0.06), transparent 26%),
    var(--bg-2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 188px;
  padding: 30px;
}

.line-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-footnote,
.future-menu {
  width: min(var(--max), 100%);
  margin: 22px auto 0;
}

.menu-footnote {
  padding: 18px 20px;
  border: 1px solid rgba(216, 189, 85, 0.24);
  border-radius: 8px;
  background: rgba(216, 189, 85, 0.065);
}

.menu-footnote p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.future-menu {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0d0d0d;
}

.future-menu h3,
.future-menu p {
  margin-bottom: 0;
}

.price-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0;
}

.price-line div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
}

.price-line span {
  display: block;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
}

.price-line strong {
  color: #fff;
  font-size: 20px;
}

.menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
}

.menu-meta li {
  padding: 5px 8px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.mini-note {
  margin: 0;
  color: var(--subtle);
  font-size: 13px;
}

.included-note {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.inline-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(216, 189, 85, 0.45);
  transition: color 180ms ease, border-color 180ms ease;
}

.inline-link:hover {
  color: #fff;
  border-color: #fff;
}

.used-preview {
  background:
    linear-gradient(180deg, rgba(216, 189, 85, 0.08), transparent 72%),
    #0b0b0b;
}

.vehicle-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.vehicle-preview-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.vehicle-preview-photo img {
  height: clamp(320px, 38vw, 520px);
  object-fit: cover;
}

.vehicle-preview-copy .section-divider {
  margin-right: 0;
  margin-left: 0;
}

.vehicle-preview-price {
  display: grid;
  gap: 2px;
  max-width: 360px;
  padding: 18px 20px;
  margin: 24px 0;
  border: 1px solid rgba(216, 189, 85, 0.28);
  border-radius: 8px;
  background: rgba(216, 189, 85, 0.08);
}

.vehicle-preview-price span,
.vehicle-preview-price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.vehicle-preview-price strong {
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
}

.compare-section {
  background: linear-gradient(180deg, #0b0b0b, #111);
}

.gallery-section {
  background: linear-gradient(180deg, #0c0c0c, #0a0a0a);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  transition: transform 240ms ease, border-color 240ms ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 34, 44, 0.32);
}

.gallery-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #000;
}

.gallery-photo img {
  height: 260px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.gallery-card:hover .gallery-photo img {
  transform: scale(1.05);
}

.gallery-photo figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.gallery-body {
  padding: 22px;
}

.gallery-body h3 {
  margin-bottom: 8px;
}

.gallery-body p {
  margin: 0;
  font-size: 14px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  padding: 30px;
}

.comparison-card.featured {
  border-color: rgba(227, 34, 44, 0.42);
  background:
    linear-gradient(180deg, rgba(227, 34, 44, 0.12), rgba(255, 255, 255, 0.028)),
    var(--panel);
}

.compare-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.compare-list li {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.compare-list strong {
  color: #fff;
}

.flow {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58)),
    url("assets/studio-work.jpg") center / cover fixed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.flow-card {
  min-height: 190px;
  padding: 24px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
}

.flow-card .num {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.story {
  background:
    linear-gradient(180deg, rgba(216, 189, 85, 0.06), transparent 34%),
    var(--bg);
}

.signature {
  color: #fff;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(960px, 100%);
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 20px 58px 20px 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--red);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 22px 22px;
  margin: 0;
}

.faq-item[open] {
  border-color: rgba(227, 34, 44, 0.36);
  background:
    linear-gradient(180deg, rgba(227, 34, 44, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.notice {
  background: #111;
}

.notice-panel {
  padding: clamp(26px, 4vw, 42px);
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.notice-grid h3 {
  color: var(--gold);
}

.coating-guide {
  background:
    linear-gradient(120deg, rgba(227, 34, 44, 0.1), transparent 42%),
    #0c0c0c;
}

.coating-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.coating-copy {
  max-width: 760px;
}

.coating-points {
  display: grid;
  gap: 14px;
}

.coating-points div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.coating-points strong,
.coating-points span {
  display: block;
}

.coating-points strong {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 18px;
}

.coating-points span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #060606;
}

.cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.18)),
    url("assets/studio-wide.jpg") center / cover;
  content: "";
  opacity: 0.86;
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  width: min(var(--max), calc(100% - 40px));
  padding: clamp(64px, 8vw, 100px) 0;
  margin: 0 auto;
}

.cta-copy {
  max-width: 680px;
}

.contact-options {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.contact-options div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
}

.contact-options strong,
.contact-options span {
  display: block;
}

.contact-options strong {
  color: #fff;
}

.contact-options span {
  color: var(--muted);
  font-size: 13px;
}

.google-form-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 9, 9, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.google-form-card h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.google-form-card p,
.form-note {
  margin-bottom: 0;
  font-size: 13px;
}

.form-summary {
  display: grid;
  gap: 12px;
  margin: 2px 0 4px;
}

.form-summary div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
}

.form-summary strong,
.form-summary span {
  display: block;
}

.form-summary strong {
  color: #fff;
  font-size: 13px;
}

.form-summary span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.google-form-card .button {
  width: 100%;
}

.form-note {
  color: var(--gold);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

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

.social-links a {
  padding: 9px 13px;
  border: 1px solid rgba(216, 189, 85, 0.32);
  border-radius: 999px;
  background: rgba(216, 189, 85, 0.08);
  font-size: 13px;
}

.access-grid {
  align-items: stretch;
}

.access-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026));
}

.address {
  margin-bottom: 26px;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
}

.access-photo {
  overflow: hidden;
  border-radius: 8px;
}

.access-photo img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.access-map {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: grayscale(0.18) contrast(1.08);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-brand img {
  width: min(320px, 78vw);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.site-footer p,
.site-footer small {
  grid-column: 1 / -1;
  margin: 0;
}

.site-footer small {
  color: #777;
}

.terms-page .site-header {
  position: sticky;
}

.terms-hero {
  padding-top: clamp(92px, 10vw, 136px);
  padding-bottom: clamp(50px, 6vw, 76px);
  background:
    linear-gradient(180deg, rgba(227, 34, 44, 0.12), transparent 58%),
    var(--bg);
}

.terms-hero h1 {
  max-width: none;
  font-size: clamp(40px, 6vw, 72px);
}

.terms-hero h1.legal-title {
  font-size: clamp(34px, 4.4vw, 56px);
  white-space: nowrap;
}

.terms-content {
  background: #0d0d0d;
}

.terms-doc {
  width: min(980px, 100%);
  padding: clamp(28px, 5vw, 58px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.terms-doc h2 {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: clamp(25px, 3vw, 36px);
}

.terms-doc h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.terms-doc h3 {
  margin-top: 28px;
}

.terms-doc ol,
.terms-doc ul {
  padding-left: 1.3em;
  color: var(--muted);
}

.terms-doc li {
  margin-bottom: 8px;
}

.article-index {
  background: #0d0d0d;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(18px, 3vw, 30px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.article-card a {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.article-card img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.article-card-body {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 38px);
}

.article-card-body h2 {
  font-size: clamp(26px, 3.5vw, 42px);
}

.article-card-muted {
  box-shadow: none;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(112px, 12vw, 150px) clamp(18px, 5vw, 70px) clamp(58px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at 82% 18%, rgba(216, 189, 85, 0.14), transparent 34%),
    #070707;
}

.article-hero-copy {
  width: min(780px, 100%);
  margin-left: auto;
}

.article-hero-copy h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.article-hero-copy p {
  max-width: 720px;
}

.article-hero-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.article-hero-photo img {
  height: clamp(320px, 38vw, 520px);
  object-fit: cover;
}

.article-content {
  background: #0d0d0d;
}

.article-body {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.article-body .lead {
  color: #fff;
  font-size: clamp(17px, 2vw, 20px);
}

.article-body h2 {
  padding-top: 26px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.article-body strong {
  color: #fff;
}

.article-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.article-compare div,
.article-cta {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(216, 189, 85, 0.24);
  border-radius: 8px;
  background: rgba(216, 189, 85, 0.06);
}

.article-compare h3,
.article-cta h2 {
  color: var(--gold);
}

.article-cta {
  margin-top: 38px;
}

.article-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 10px;
}

.note-box {
  padding: 20px;
  border: 1px solid rgba(216, 189, 85, 0.24);
  border-radius: 8px;
  background: rgba(216, 189, 85, 0.055);
}

.note-box h3 {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 18px;
}

.note-box p {
  margin-bottom: 0;
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.price-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 14px;
}

.price-col-menu {
  width: 210px;
}

.price-col-model {
  width: 150px;
}

.price-col-price {
  width: 110px;
}

.price-col-time {
  width: 86px;
}

.price-col-level {
  width: 82px;
}

.price-col-note {
  width: 390px;
}

.price-table th,
.price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  white-space: nowrap;
}

.price-table .menu-name,
.price-table .price-cell,
.price-table .difficulty-cell {
  color: #fff;
  font-weight: 900;
}

.price-table tbody tr.price-group-a td {
  background: rgba(255, 255, 255, 0.018);
}

.price-table tbody tr.price-group-b td {
  background: rgba(216, 189, 85, 0.028);
}

.price-table tbody tr.price-group-start td {
  border-top: 2px solid rgba(227, 34, 44, 0.36);
}

.price-table tbody tr:first-child td {
  border-top: 0;
}

.price-table .menu-name {
  line-height: 1.65;
}

.price-table tbody tr.price-group-start .menu-name {
  color: var(--gold);
}

.price-table tbody tr.price-group-start .menu-name::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--red);
  content: "";
  vertical-align: 2px;
}

.price-table .price-cell {
  white-space: nowrap;
}

.price-table .shared-note {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.profile-list {
  display: grid;
  margin-top: 18px;
}

.profile-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.profile-list strong {
  color: var(--gold);
}

.profile-list span {
  color: var(--text);
  font-weight: 800;
}

.vehicle-page {
  background: #080808;
}

.vehicle-hero {
  padding: clamp(112px, 12vw, 150px) clamp(18px, 5vw, 70px) clamp(64px, 8vw, 106px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 70% 18%, rgba(216, 189, 85, 0.16), transparent 36%),
    #0b0b0b;
}

.vehicle-hero-grid,
.vehicle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.vehicle-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(52px, 8vw, 104px);
}

.vehicle-hero-copy .section-divider {
  margin-right: 0;
  margin-left: 0;
}

.vehicle-subtitle {
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
}

.vehicle-note,
.fine-print {
  max-width: 760px;
  font-size: 14px;
}

.vehicle-hero-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.vehicle-hero-photo img {
  height: clamp(340px, 42vw, 560px);
  object-fit: cover;
}

.vehicle-price-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.vehicle-price-panel div,
.vehicle-side-price {
  padding: 18px 20px;
  border: 1px solid rgba(216, 189, 85, 0.28);
  border-radius: 8px;
  background: rgba(216, 189, 85, 0.08);
}

.vehicle-price-panel span,
.vehicle-side-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.vehicle-price-panel strong,
.vehicle-side-price strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
}

.vehicle-side-price strong {
  font-size: clamp(34px, 4vw, 48px);
}

.vehicle-content {
  background: #0d0d0d;
}

.compact-top {
  padding-top: 0;
}

.vehicle-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.vehicle-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 3.8vw, 46px);
}

.vehicle-side {
  align-self: stretch;
}

.spec-grid,
.option-grid {
  display: grid;
  gap: 10px;
}

.spec-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec-grid div,
.option-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.spec-grid strong,
.option-grid strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
}

.spec-grid span,
.option-grid span {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-weight: 900;
}

.option-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.vehicle-list {
  padding-left: 1.2em;
  color: var(--muted);
}

.vehicle-list li {
  margin-bottom: 10px;
}

.used-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.used-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.used-gallery img {
  height: 260px;
  object-fit: cover;
  transition: transform 520ms ease, filter 220ms ease;
}

.used-gallery figure:hover img {
  filter: contrast(1.08) saturate(1.04);
  transform: scale(1.04);
}

.used-gallery figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 9px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.inventory-section,
.inventory-note {
  background: #0d0d0d;
}

.inventory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.inventory-card,
.inventory-empty {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.inventory-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.inventory-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  background: #111;
}

.inventory-photo img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.inventory-photo figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(227, 34, 44, 0.86);
  font-size: 12px;
  font-weight: 950;
}

.inventory-body,
.inventory-empty {
  padding: clamp(24px, 4vw, 42px);
}

.inventory-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, auto);
  gap: 22px;
  align-items: start;
}

.inventory-head h2 {
  margin: 12px 0 8px;
}

.inventory-price {
  padding: 18px 20px;
  border: 1px solid rgba(216, 189, 85, 0.28);
  border-radius: 8px;
  background: rgba(216, 189, 85, 0.08);
}

.inventory-price span,
.inventory-price small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.inventory-price strong {
  display: block;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.inventory-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.inventory-specs div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.inventory-specs strong,
.inventory-specs span {
  display: block;
}

.inventory-specs strong {
  color: var(--gold);
  font-size: 13px;
}

.inventory-specs span {
  margin-top: 4px;
  color: #fff;
  font-weight: 900;
}

.disabled-link {
  opacity: 0.72;
  cursor: default;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px 18px;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .intro-grid,
  .menu-grid,
  .gallery-grid,
  .used-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-preview,
  .vehicle-hero-grid,
  .vehicle-layout,
  .inventory-card,
  .coating-grid,
  .article-grid,
  .article-hero {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .split,
  .story-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .comparison,
  .gallery-grid,
  .used-gallery,
  .notice-grid,
  .note-grid,
  .option-grid,
  .article-compare,
  .inventory-head,
  .inventory-specs,
  .contact-options,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .access-photo img {
    min-height: 320px;
  }
}

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

  .brand img {
    width: min(178px, 48vw);
  }

  .nav-cta {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-photo {
    object-position: 74% center;
    transform: translateX(2%) scale(1.04);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.76) 58%, rgba(0, 0, 0, 0.38) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 154px 0 104px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .terms-hero h1.legal-title {
    white-space: normal;
  }

  .article-card a {
    grid-template-columns: 1fr;
  }

  .article-card img,
  .article-hero-photo img {
    min-height: 0;
    height: 240px;
  }

  .actions,
  .intro-grid,
  .menu-grid,
  .gallery-grid,
  .used-gallery,
  .flow-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vehicle-price-panel,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo img {
    height: 210px;
  }

  .hero-badges {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-head.centered {
    text-align: left;
  }

  .section-head.centered .section-divider {
    margin-right: 0;
    margin-left: 0;
  }

  .spec-list div,
  .compare-list li,
  .price-line,
  .profile-list div,
  .future-menu {
    grid-template-columns: 1fr;
  }

  .flow {
    background-attachment: scroll;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
