:root {
  --ink: #10231f;
  --ink-deep: #071410;
  --ink-soft: #24423a;
  --bone: #f1ede3;
  --paper: #f8f5ed;
  --sand: #d8cfbd;
  --brass: #ad8a50;
  --muted: #6c756f;
  --line-dark: rgba(16, 35, 31, 0.18);
  --line-light: rgba(241, 237, 227, 0.18);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) { overflow: hidden; }
button, a, select, input { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }

.concept-bar {
  min-height: 34px;
  padding: 8px clamp(20px, 4vw, 64px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: rgba(241, 237, 227, 0.72);
  background: var(--ink-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.concept-separator { width: 22px; height: 1px; background: var(--brass); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 34px;
  left: 0;
  right: 0;
  height: 90px;
  padding: 0 clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--bone);
  border-bottom: 1px solid var(--line-light);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; color: inherit; text-decoration: none; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
}
.brand-copy { display: grid; line-height: .9; text-transform: uppercase; }
.brand-copy strong { font-size: 16px; letter-spacing: .12em; }
.brand-copy small { margin-top: 4px; font-size: 8px; letter-spacing: .35em; }
.main-nav { display: flex; gap: 36px; }
.main-nav a {
  color: rgba(241, 237, 227, .76);
  font-size: 11px;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--bone); }
.header-action {
  justify-self: end;
  padding: 12px 0;
  display: inline-flex;
  gap: 14px;
  color: var(--bone);
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(241, 237, 227, .5);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100svh - 34px);
  display: grid;
  grid-template-columns: 56% 44%;
  color: var(--bone);
  background:
    radial-gradient(circle at 18% 32%, rgba(74, 114, 101, .27), transparent 32%),
    var(--ink);
}
.hero-copy {
  padding: clamp(170px, 16vh, 220px) clamp(28px, 6vw, 92px) 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--brass); }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.5vw, 108px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .88;
}
em { color: var(--brass); font-weight: 400; }
.hero-intro {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(241, 237, 227, .7);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--ink); background: var(--bone); }
.button-light:hover { background: #fff; }
.button-dark { color: var(--bone); background: var(--ink); }
.button-dark:hover { background: var(--ink-soft); }
.text-link {
  padding: 9px 0;
  display: inline-flex;
  gap: 12px;
  color: inherit;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
}
.hero-proof {
  margin: auto 0 0;
  padding-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line-light);
}
.hero-proof div { display: grid; gap: 8px; }
.hero-proof dt { color: rgba(241, 237, 227, .45); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.hero-proof dd { margin: 0; font-family: var(--serif); font-size: clamp(19px, 1.5vw, 25px); }

.hero-visual {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #a9aaa9;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 16, .25), transparent 35%, rgba(7, 20, 16, .36));
  pointer-events: none;
}
.hero-visual > img { height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.3);
  color: #fff;
}
.hero-index { font-size: 10px; letter-spacing: .14em; }
.hero-visual figcaption > span:nth-child(2) { display: grid; gap: 4px; }
.hero-visual figcaption small { color: rgba(255,255,255,.72); font-size: 10px; letter-spacing: .08em; }
.hero-visual figcaption > strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }

.fit-section { padding: 140px clamp(24px, 6vw, 96px); background: var(--paper); }
.section-heading { max-width: 820px; margin-bottom: 70px; }
.section-heading .eyebrow, .collection-header .eyebrow, .method-intro .eyebrow { color: var(--brass); }
.section-heading h2, .collection-header h2, .method-intro h2, .closing-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .94;
}
.section-heading > p:last-child { max-width: 580px; margin: 26px 0 0; color: var(--muted); line-height: 1.7; }
.fit-layout { display: grid; grid-template-columns: minmax(290px, .78fr) minmax(0, 1.62fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.profile-list { display: grid; align-content: center; border-right: 1px solid var(--line-dark); }
.profile-btn {
  min-height: 128px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 18px;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}
.profile-btn:last-child { border-bottom: 0; }
.profile-btn > span:first-child { color: var(--brass); font-family: var(--serif); font-size: 19px; }
.profile-btn > span:nth-child(2) { display: grid; gap: 7px; }
.profile-btn strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.profile-btn small { color: var(--muted); font-size: 11px; line-height: 1.5; }
.profile-btn > span:last-child { opacity: .35; }
.profile-btn:hover, .profile-btn.is-active { color: var(--bone); background: var(--ink); }
.profile-btn:hover small, .profile-btn.is-active small { color: rgba(241, 237, 227, .62); }
.profile-btn.is-active > span:last-child { opacity: 1; }

.recommendation { min-height: 540px; display: grid; grid-template-columns: 1.15fr .85fr; }
.recommendation-media { position: relative; min-height: 540px; overflow: hidden; background: #d2d0ca; }
.recommendation-media img { height: 100%; object-fit: cover; transition: opacity .25s ease, transform .55s ease; }
.recommendation-media img.is-changing { opacity: .3; transform: scale(1.03); }
.recommendation-media span {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 10px;
  color: var(--bone);
  background: var(--ink);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.recommendation-copy { padding: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.recommendation-copy .eyebrow { color: var(--brass); }
.recommendation-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 4.5vw, 68px); font-weight: 400; letter-spacing: -.035em; line-height: .96; }
.recommendation-copy > p:not(.eyebrow) { margin: 26px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.spec-row { margin-bottom: 34px; padding: 18px 0; display: flex; flex-wrap: wrap; gap: 16px 24px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.spec-row span { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.recommendation-copy .button { align-self: flex-start; }

.collection-section { padding: 140px clamp(24px, 4vw, 68px); color: var(--bone); background: var(--ink-deep); }
.collection-header { margin: 0 auto 72px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 40px; }
.collection-header h2 { max-width: 800px; }
.collection-header > p { max-width: 470px; margin: 0 0 5px; color: rgba(241, 237, 227, .62); line-height: 1.75; }
.vehicle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 58px 22px; }
.vehicle-card-featured { grid-row: span 1; }
.vehicle-image {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #c2c3c2;
  border: 0;
  cursor: pointer;
}
.vehicle-card .vehicle-image { aspect-ratio: 16 / 10; }
.vehicle-card-featured .vehicle-image { aspect-ratio: 16 / 10; }
.vehicle-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,16,.14), transparent 35%); pointer-events: none; }
.vehicle-image img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.vehicle-card-featured .vehicle-image img { object-position: 50% 66%; }
.vehicle-image:hover img { transform: scale(1.025); }
.card-number, .card-action {
  position: absolute;
  z-index: 2;
  top: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
}
.card-number { left: 18px; letter-spacing: .18em; }
.card-action { right: 18px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.vehicle-meta { padding: 22px 2px 0; display: flex; justify-content: space-between; gap: 24px; }
.vehicle-meta p { margin: 0 0 6px; color: var(--brass); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.vehicle-meta h3 { margin: 0; font-family: var(--serif); font-size: clamp(25px, 2.2vw, 36px); font-weight: 400; }
.vehicle-price { display: grid; align-content: end; justify-items: end; gap: 6px; text-align: right; }
.vehicle-price small { color: rgba(241, 237, 227, .48); font-size: 10px; }
.vehicle-price strong { font-family: var(--serif); font-size: 21px; font-weight: 400; white-space: nowrap; }
.stock-note { margin: 58px 0 0; color: rgba(241, 237, 227, .42); font-size: 10px; text-align: right; }

.method-section { padding: 140px clamp(24px, 6vw, 96px); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 150px); background: var(--bone); }
.method-intro { align-self: start; position: sticky; top: 50px; }
.method-intro p:last-child { max-width: 460px; margin: 30px 0 0; color: var(--muted); line-height: 1.75; }
.method-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.method-list li { min-height: 170px; padding: 32px 0; display: grid; grid-template-columns: 56px 1fr; gap: 24px; border-bottom: 1px solid var(--line-dark); }
.method-list li > span { color: var(--brass); font-family: var(--serif); font-size: 19px; }
.method-list h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 37px; font-weight: 400; }
.method-list p { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.7; }

.closing-section { padding: 140px clamp(24px, 8vw, 130px) 60px; color: var(--bone); background: var(--ink); text-align: center; }
.closing-section .eyebrow { color: var(--brass); }
.closing-section h2 { max-width: 1000px; margin-inline: auto; }
.closing-section > p:not(.eyebrow) { max-width: 560px; margin: 30px auto 36px; color: rgba(241, 237, 227, .63); line-height: 1.75; }
.closing-line { height: 1px; margin: 110px 0 28px; background: var(--line-light); }
.closing-signature { display: flex; justify-content: space-between; gap: 24px; color: rgba(241, 237, 227, .45); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }

.site-footer { padding: 34px clamp(24px, 4vw, 68px); display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; gap: 30px; color: var(--bone); background: var(--ink-deep); border-top: 1px solid var(--line-light); }
.site-footer p { margin: 0; color: rgba(241, 237, 227, .36); font-size: 9px; line-height: 1.55; text-align: center; }
.footer-link { justify-self: end; font-size: 10px; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }

dialog {
  width: min(1050px, calc(100vw - 36px));
  max-width: none;
  max-height: calc(100vh - 36px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
}
dialog::backdrop { background: rgba(4, 12, 9, .78); backdrop-filter: blur(7px); }
.modal-close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(248,245,237,.9);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 30px;
}
.detail-grid { min-height: 610px; display: grid; grid-template-columns: 1fr 1fr; }
.detail-media { position: relative; min-height: 610px; background: #cbc9c2; }
.detail-media img { height: 100%; object-fit: cover; }
.detail-media span { position: absolute; left: 20px; bottom: 20px; padding: 9px 11px; color: var(--bone); background: var(--ink); font-size: 10px; letter-spacing: .12em; }
.detail-copy { padding: clamp(54px, 6vw, 82px); display: flex; flex-direction: column; justify-content: center; }
.detail-copy .eyebrow { color: var(--brass); }
.detail-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(45px, 5vw, 72px); font-weight: 400; letter-spacing: -.04em; line-height: .95; }
.detail-copy > p:not(.eyebrow):not(.modal-note) { margin: 24px 0; color: var(--muted); line-height: 1.7; }
.detail-copy dl { margin: 0; padding: 18px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.detail-copy dl div { display: grid; gap: 5px; }
.detail-copy dt { color: var(--muted); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.detail-copy dd { margin: 0; font-size: 12px; font-weight: 600; }
.detail-price { margin: 24px 0; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.detail-price span { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.detail-price strong { font-family: var(--serif); font-size: 29px; font-weight: 400; }
.detail-copy .button { align-self: flex-start; }
.modal-note { margin: 16px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; }

.consultation-modal { padding: clamp(40px, 6vw, 82px); color: var(--bone); background: var(--ink); }
.modal-close-light { color: var(--bone); background: rgba(241,237,227,.1); }
.consultation-head { max-width: 740px; }
.consultation-head .eyebrow { color: var(--brass); }
.consultation-head h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 78px); font-weight: 400; letter-spacing: -.04em; }
.consultation-head > p:last-child { max-width: 600px; color: rgba(241,237,227,.58); line-height: 1.7; }
#consultation-form { margin-top: 42px; }
#consultation-form fieldset { margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; border: 0; }
#consultation-form legend, .select-label { margin-bottom: 12px; color: rgba(241,237,227,.5); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
#consultation-form label { position: relative; }
#consultation-form input { position: absolute; opacity: 0; pointer-events: none; }
#consultation-form label span { min-height: 50px; display: grid; place-items: center; border: 1px solid var(--line-light); cursor: pointer; font-size: 11px; text-transform: uppercase; }
#consultation-form input:checked + span { color: var(--ink); background: var(--bone); }
#consultation-form input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: 3px; }
.select-label { display: block; }
#vehicle-select {
  width: 100%;
  height: 54px;
  margin-bottom: 26px;
  padding: 0 16px;
  color: var(--bone);
  background: var(--ink-soft);
  border: 1px solid var(--line-light);
}
.consultation-result { margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--line-light); }
.consultation-result > span { color: var(--brass); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.consultation-result p { max-width: 760px; margin: 18px 0 28px; font-family: var(--serif); font-size: clamp(27px, 3vw, 42px); line-height: 1.15; }
.text-link-light { margin-left: 20px; color: var(--bone); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 820px; }
  .hero-visual { min-height: 720px; }
  .fit-layout { grid-template-columns: 1fr; }
  .profile-list { grid-template-columns: repeat(3, 1fr); border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .profile-btn { min-height: 150px; padding: 22px 18px; grid-template-columns: 1fr auto; }
  .profile-btn > span:first-child { grid-column: 1 / -1; }
  .profile-btn small { display: none; }
  .recommendation { grid-template-columns: 1.1fr .9fr; }
  .method-section { grid-template-columns: 1fr; }
  .method-intro { position: static; }
}

@media (max-width: 700px) {
  .concept-bar { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .site-header { height: 74px; padding-inline: 20px; }
  .brand-mark { width: 34px; height: 34px; font-size: 24px; }
  .header-action { font-size: 9px; }
  .hero-copy { min-height: 740px; padding: 150px 22px 44px; }
  .hero h1 { font-size: clamp(51px, 15vw, 72px); }
  .hero-proof { gap: 10px; }
  .hero-proof div:nth-child(2) { display: none; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 640px; }
  .hero-visual figcaption { padding: 20px; grid-template-columns: auto 1fr; }
  .hero-visual figcaption > strong { display: none; }
  .fit-section, .collection-section, .method-section { padding: 100px 20px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2, .collection-header h2, .method-intro h2, .closing-section h2 { font-size: clamp(46px, 14vw, 67px); }
  .profile-list { grid-template-columns: 1fr; }
  .profile-btn { min-height: 94px; grid-template-columns: 32px 1fr auto; }
  .profile-btn > span:first-child { grid-column: auto; }
  .recommendation { grid-template-columns: 1fr; }
  .recommendation-media { min-height: 350px; }
  .recommendation-copy { padding: 40px 24px 48px; }
  .collection-header { grid-template-columns: 1fr; margin-bottom: 50px; }
  .vehicle-grid { grid-template-columns: 1fr; gap: 50px; }
  .vehicle-card .vehicle-image, .vehicle-card-featured .vehicle-image { aspect-ratio: 4 / 3; }
  .vehicle-card-featured .vehicle-image img { object-position: 50% 66%; }
  .vehicle-meta { gap: 12px; }
  .vehicle-price strong { font-size: 18px; }
  .closing-section { padding: 100px 20px 46px; }
  .closing-line { margin-top: 80px; }
  .closing-signature { align-items: center; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-media { min-height: 340px; }
  .detail-copy { padding: 38px 24px; }
  .detail-copy dl { grid-template-columns: repeat(3, 1fr); }
  #consultation-form fieldset { grid-template-columns: 1fr 1fr; }
  .consultation-modal { padding: 72px 22px 38px; }
  .text-link-light { margin: 18px 0 0; display: flex; width: max-content; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
