:root {
  --obsidian: #0c0f0b;
  --charcoal: #171b15;
  --pine: #223027;
  --spruce: #344336;
  --gold: #c8983d;
  --old-gold: #9e7330;
  --linen: #f5efe3;
  --vellum: #fbf8f0;
  --stone: #ded4c2;
  --ash: #7a796f;
  --ink: #181b16;
  --line: rgba(24, 27, 22, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 90px rgba(12, 15, 11, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--vellum);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

h1,
h2,
.display {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 1040px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3vw, 50px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 60px);
  color: #fff;
  background: rgba(12, 15, 11, 0.95);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.main-nav a,
.footer-nav a {
  transition: color 0.18s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--gold);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 950;
  white-space: nowrap;
}

.header-cta {
  color: #111;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 8px 12px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
}

.hero,
.page-hero {
  position: relative;
  display: flex;
  overflow: hidden;
  color: #fff;
  background: var(--obsidian);
}

.hero {
  min-height: calc(100vh - 78px);
  align-items: flex-end;
}

.page-hero {
  min-height: 560px;
  align-items: flex-end;
}

.hero > img,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 15, 11, 0.94), rgba(12, 15, 11, 0.52) 48%, rgba(12, 15, 11, 0.14)),
    linear-gradient(0deg, rgba(12, 15, 11, 0.9), rgba(12, 15, 11, 0.08) 58%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  padding: clamp(48px, 7vw, 96px);
}

.hero-content {
  padding-top: 20vh;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero p,
.page-hero p {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.section-heading,
.proof-strip,
.metric-row,
.spec-pills,
.contact-details,
.split-actions,
.model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  color: #111;
  background: var(--gold);
}

.btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn.dark {
  color: #fff;
  background: var(--obsidian);
}

.btn.light {
  color: var(--obsidian);
  background: #fff;
  border-color: var(--line);
}

.btn:hover {
  transform: translateY(-1px);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  color: #fff;
  background: var(--obsidian);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-strip div {
  padding: 25px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line-dark);
}

.proof-strip strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
}

.proof-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.section {
  padding: clamp(56px, 7vw, 112px) clamp(18px, 4vw, 60px);
}

.section.tight {
  padding-top: clamp(36px, 5vw, 70px);
  padding-bottom: clamp(36px, 5vw, 70px);
}

.section-heading {
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.section-heading > div {
  max-width: 780px;
}

.section-heading > p {
  max-width: 520px;
  font-size: 18px;
}

.intro-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.intro-panel p {
  font-size: 19px;
}

.metric-row {
  margin-top: 28px;
}

.metric {
  min-width: 150px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric strong {
  display: block;
  color: var(--obsidian);
  font-size: 28px;
  line-height: 1;
}

.metric span {
  color: var(--ash);
  font-size: 13px;
  font-weight: 850;
}

.craft-band,
.dark-band {
  color: #fff;
  background: var(--obsidian);
}

.dark-band p,
.craft-band p {
  color: rgba(255, 255, 255, 0.72);
}

.image-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.9fr 0.9fr;
  min-height: 460px;
  background: var(--obsidian);
}

.image-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-right: 1px solid var(--line-dark);
}

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

.collection-card,
.feature-card,
.model-card,
.process-card,
.warranty-card,
.pricing-card,
.addon-card,
.build-form,
.spec-table,
.gallery-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(12, 15, 11, 0.08);
}

.collection-card {
  overflow: hidden;
}

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

.collection-body {
  padding: clamp(24px, 4vw, 38px);
}

.collection-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.model-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.model-list a,
.model-list span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.model-list small {
  color: var(--ash);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.feature-card {
  min-height: 250px;
  padding: 24px;
}

.feature-card .num {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 950;
}

.feature-card.dark {
  color: #fff;
  background: var(--charcoal);
  border-color: var(--line-dark);
}

.feature-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.detail-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.detail-list strong {
  display: block;
  margin-bottom: 4px;
}

.detail-list span {
  color: var(--ash);
}

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

.model-card {
  overflow: hidden;
}

.model-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.model-card-body {
  padding: 22px;
}

.model-kicker {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--old-gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.spec-pills {
  margin: 16px 0;
}

.spec-pills span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.model-actions {
  margin-top: 18px;
}

.compare-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.spec-table {
  overflow: hidden;
}

.spec-table h3 {
  margin: 0;
  padding: 20px;
  color: #fff;
  background: var(--obsidian);
}

.spec-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-top: 1px solid var(--line);
}

.spec-row span,
.spec-row strong {
  padding: 13px 16px;
}

.spec-row span {
  color: var(--ash);
  background: var(--linen);
  font-weight: 850;
}

.construction-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.construction-hero img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.construction-copy {
  padding: clamp(28px, 5vw, 58px);
}

.blueprint {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--line-dark);
}

.blueprint div {
  min-height: 210px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(145deg, #141914, #20291f);
}

.blueprint strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
}

.blueprint span {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-card {
  min-height: 300px;
  padding: 22px;
}

.process-card > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #111;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 950;
}

.payment-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.payment-flow div {
  padding: 22px;
  background: #fff;
}

.payment-flow strong {
  display: block;
  color: var(--obsidian);
  font-size: 28px;
}

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

.warranty-card {
  padding: 24px;
}

.warranty-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--old-gold);
  text-transform: uppercase;
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 14px 16px;
  color: var(--ash);
  font-size: 14px;
  font-weight: 850;
}

.contact-page {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 80px);
}

.contact-details {
  margin-top: 24px;
}

.contact-details a,
.contact-details span {
  padding: 9px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.build-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ash);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  text-transform: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 152, 61, 0.22);
}

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

.cta-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 15, 11, 0.96), rgba(12, 15, 11, 0.68)),
    url("assets/auto-interior.jpg") center / cover;
}

.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 60px);
  color: #fff;
  background: var(--obsidian);
  border-top: 1px solid var(--line-dark);
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer strong {
  margin-bottom: 10px;
}

.footer-nav {
  display: grid;
  gap: 7px;
}

.build-lead {
  margin-bottom: clamp(40px, 5vw, 70px);
}

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

.pricing-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--obsidian);
  color: #fff;
  border-color: var(--line-dark);
}

.pricing-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  color: var(--obsidian);
  margin-bottom: 6px;
}

.pricing-card.featured .pricing-price {
  color: var(--gold);
}

.pricing-tag {
  display: block;
  color: var(--ash);
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 18px;
}

.pricing-card.featured .pricing-tag {
  color: rgba(255, 255, 255, 0.58);
}

.pricing-desc {
  flex: 1;
  font-size: 15px;
  margin-bottom: 24px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.addon-card {
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.addon-price {
  font-size: 22px;
  font-weight: 950;
  color: var(--old-gold);
  min-width: 52px;
  line-height: 1.2;
  flex-shrink: 0;
}

.addon-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.addon-card p {
  font-size: 14px;
  margin: 0;
  color: var(--ash);
}

.vehicle-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vehicle-type-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 22px;
  box-shadow: 0 4px 18px rgba(12, 15, 11, 0.06);
}

.vehicle-type-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1180px) {
  .proof-strip,
  .feature-grid,
  .model-grid,
  .blueprint,
  .process-grid,
  .warranty-grid,
  .gallery-grid,
  .payment-flow,
  .pricing-grid,
  .vehicle-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-header.nav-open .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    background: rgba(12, 15, 11, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .main-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 58px;
  }


  .hero {
    min-height: 760px;
  }

  .page-hero {
    min-height: 520px;
  }

  .hero > img,
  .page-hero > img {
    object-position: 62% center;
  }

  .hero-content,
  .page-hero-content {
    padding: 34px 18px 46px;
  }

  .hero-actions,
  .split-actions,
  .model-actions,
  .cta-inner {
    display: grid;
  }

  .proof-strip,
  .intro-panel,
  .image-grid,
  .collection-grid,
  .feature-grid,
  .split-section,
  .model-grid,
  .compare-block,
  .construction-hero,
  .blueprint,
  .process-grid,
  .payment-flow,
  .warranty-grid,
  .gallery-grid,
  .contact-page,
  .form-grid,
  .pricing-grid,
  .addon-grid,
  .vehicle-type-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .image-grid img {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-card,
  .feature-card,
  .blueprint div {
    min-height: auto;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #111;
    background: var(--gold);
    box-shadow: 0 -10px 28px rgba(12, 15, 11, 0.24);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 56px;
    place-items: center;
    border-right: 1px solid rgba(12, 15, 11, 0.18);
    font-weight: 950;
  }
}
