:root {
  --ink: #070706;
  --ink-soft: #0e0e0c;
  --panel: #141411;
  --ivory: #f1ede3;
  --paper: #faf7ef;
  --gold: #d9b34c;
  --gold-bright: #f2d57f;
  --gold-deep: #947019;
  --muted: #929087;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(7, 7, 6, 0.17);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 clamp(22px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 4, 0.74);
  backdrop-filter: blur(20px);
}

.brand-lockup {
  display: grid;
  width: 118px;
  height: 76px;
  place-items: center;
}

.brand-lockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.45vw, 26px);
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: #c5c2b9;
  font-size: 0.7rem;
  font-weight: 620;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta).active {
  color: var(--paper);
}

.main-nav > a:not(.nav-cta).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--paper);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(217, 179, 76, 0.65);
  color: var(--gold-bright);
  font-size: 0.73rem;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 142px clamp(24px, 5.5vw, 104px) 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  grid-template-rows: 1fr auto;
  gap: 30px 5vw;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 39%, rgba(184, 137, 28, 0.12), transparent 28%),
    linear-gradient(130deg, #060605 0%, #0a0a08 55%, #050504 100%);
}

.hero::before {
  position: absolute;
  top: 13%;
  right: -12%;
  width: 68vw;
  height: 68vw;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(219, 175, 60, 0.09), transparent 65%);
  filter: blur(2px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
}

.hero-orbit {
  position: absolute;
  right: 5%;
  border: 1px solid rgba(217, 179, 76, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 15%;
  width: 46vw;
  height: 46vw;
  animation: orbitPulse 7s ease-in-out infinite alternate;
}

.hero-orbit-two {
  top: 24%;
  right: 13%;
  width: 31vw;
  height: 31vw;
  animation: orbitPulse 7s 1.3s ease-in-out infinite alternate-reverse;
}

@keyframes orbitPulse {
  from { opacity: 0.35; transform: scale(0.98); }
  to { opacity: 0.9; transform: scale(1.02); }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-bottom: 30px;
}

.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 680;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.service-title h2,
.experience-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 860px;
  color: var(--paper);
  font-size: clamp(4rem, 7vw, 8.4rem);
  line-height: 0.85;
}

.hero h1 em,
.section-heading h2 em,
.experience-copy h2 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin: 42px 0 0;
  color: #aaa79e;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
  transition: background 180ms ease, transform 180ms ease;
}

.button-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.text-link {
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(217, 179, 76, 0.48);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.hero-mark {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 65px rgba(0, 0, 0, 0.75));
  animation: markFloat 6s ease-in-out infinite;
}

.hero-mark > p {
  position: absolute;
  bottom: 6%;
  z-index: 2;
  margin: 0;
  color: rgba(245, 236, 208, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.logo-aura {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 176, 58, 0.17), transparent 66%);
  filter: blur(5px);
}

@keyframes markFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-facts {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts > div {
  min-height: 92px;
  padding: 20px clamp(14px, 2.5vw, 34px);
  display: flex;
  align-items: center;
  gap: 24px;
  border-right: 1px solid var(--line);
}

.hero-facts > div:last-child {
  border-right: 0;
}

.hero-facts strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.hero-facts span {
  color: #bebbb2;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-disclaimer {
  position: absolute;
  right: 18px;
  bottom: 50%;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right bottom;
}

.section-shell {
  width: min(calc(100% - 48px), 1540px);
  margin-inline: auto;
  padding: clamp(92px, 10vw, 156px) clamp(24px, 5vw, 84px);
}

.showroom {
  margin-top: 26px;
  background: var(--ivory);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.42fr);
  gap: 26px 8vw;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: var(--gold-deep);
}

.section-heading h2 {
  font-size: clamp(3rem, 5.4vw, 6.5rem);
  line-height: 0.94;
}

.section-heading h2 em {
  color: var(--gold-deep);
}

.section-heading > p:last-child {
  max-width: 430px;
  margin: 0 0 7px;
  color: #6c6961;
  font-size: 1rem;
  line-height: 1.75;
}

.showroom-grid {
  margin-top: clamp(60px, 7vw, 94px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  grid-template-rows: repeat(2, minmax(360px, auto));
  gap: 18px;
}

.featured-car {
  position: relative;
  min-height: 360px;
  padding: 26px;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 55% 38%, rgba(217, 179, 76, 0.25), transparent 45%),
    #ded8ca;
  transition: border-color 220ms ease, transform 220ms ease;
}

.featured-car:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
}

.featured-main {
  min-height: 738px;
  grid-row: 1 / span 2;
}

.featured-index {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  color: rgba(7, 7, 6, 0.45);
  font-family: var(--serif);
  font-size: 1rem;
}

.featured-image {
  position: absolute;
  inset: 65px 22px 120px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.featured-car:hover .featured-image img {
  transform: scale(1.035) translateY(-5px);
}

.featured-content {
  position: relative;
  z-index: 2;
  align-self: end;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.featured-content p {
  margin: 0 0 7px;
  color: #69665f;
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.featured-content > strong {
  padding-bottom: 8px;
  white-space: nowrap;
  color: var(--gold-deep);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.featured-specs {
  position: relative;
  z-index: 2;
  margin-top: 19px;
  padding-top: 15px;
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--line-dark);
}

.featured-specs span {
  color: #69665f;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-side .featured-image {
  inset: 34px 38px 110px;
}

.featured-side .featured-content h3 {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
}

.fine-print {
  margin: 20px 0 0;
  color: #77736a;
  font-size: 0.7rem;
}

.collection {
  padding-top: clamp(110px, 12vw, 190px);
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}

.collection-intro {
  position: sticky;
  top: 126px;
}

.collection-intro h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.1vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.collection-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 35px 0;
  color: #97948b;
  font-size: 0.98rem;
  line-height: 1.8;
}

.filters {
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filters button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: transparent;
  color: #97948b;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.filters button:hover,
.filters button.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.inventory-head,
.inventory-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.8fr) minmax(80px, 0.8fr) 0.45fr minmax(110px, 0.85fr);
  gap: 22px;
  align-items: center;
}

.inventory-head {
  padding: 0 18px 14px;
  color: #6f6d66;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inventory-list {
  border-top: 1px solid var(--line);
}

.inventory-row {
  min-height: 98px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: #aaa79e;
  font-size: 0.8rem;
  transition: background 170ms ease, color 170ms ease, padding 170ms ease;
}

.inventory-row:hover {
  padding-right: 14px;
  padding-left: 22px;
  background: rgba(217, 179, 76, 0.08);
  color: var(--paper);
}

.model-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.model-cell small {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.model-cell strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.price-cell {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--paper);
  font-weight: 620;
}

.price-cell b {
  color: var(--gold);
  font-weight: 400;
}

.catalog-browser {
  min-width: 0;
  padding: clamp(20px, 2.8vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 42%),
    #0c0c0a;
}

.catalog-browser-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.catalog-browser-head > div {
  display: grid;
  gap: 7px;
}

.catalog-browser-head span,
.catalog-browser-head p {
  margin: 0;
  color: #6f6d66;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalog-browser-head strong {
  color: #d9d5cb;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.catalog-browser-head strong b {
  color: var(--gold-bright);
  font-weight: 400;
}

.catalog-category-filters {
  margin-bottom: 26px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.catalog-category-filters button {
  min-width: max-content;
  min-height: 44px;
  padding: 0 13px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  color: #9b988f;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 690;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.catalog-category-filters button small {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.55rem;
  opacity: 0.62;
}

.catalog-category-filters button:hover,
.catalog-category-filters button.active {
  border-color: rgba(217, 179, 76, 0.78);
  background: rgba(217, 179, 76, 0.11);
  color: var(--gold-bright);
}

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

.catalog-vehicle-card {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(230px, 0.95fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #11110f;
  transition: border-color 190ms ease, transform 190ms ease, box-shadow 190ms ease;
}

.catalog-vehicle-card[hidden] {
  display: none;
}

.catalog-vehicle-card:hover {
  border-color: rgba(217, 179, 76, 0.56);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  transform: translateY(-3px);
}

.catalog-card-visual {
  position: relative;
  min-height: 230px;
  padding: 34px 22px 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 54%, rgba(217, 179, 76, 0.16), transparent 43%),
    #0a0a08;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.catalog-card-visual::after {
  position: absolute;
  right: 13%;
  bottom: 14%;
  left: 13%;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  content: "";
  filter: blur(12px);
}

.catalog-card-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.36));
  transition: transform 240ms ease;
}

.catalog-vehicle-card:hover .catalog-card-visual > img {
  transform: scale(1.045) translateY(-3px);
}

.catalog-card-index {
  position: absolute;
  top: 17px;
  right: 18px;
  color: rgba(217, 179, 76, 0.46);
  font-family: var(--serif);
  font-size: 1rem;
}

.catalog-card-badges {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: end;
}

.catalog-card-badges > small:last-child {
  padding: 7px 9px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 6, 0.76);
  color: #aaa69d;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.catalog-card-badges .detail-status {
  background: rgba(7, 7, 6, 0.76);
  backdrop-filter: blur(8px);
}

.catalog-card-body {
  padding: 22px;
  display: grid;
}

.catalog-card-kicker {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #817e76;
  font-size: 0.58rem;
  font-weight: 690;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-card-kicker b {
  color: var(--gold);
  font-weight: 690;
  text-align: right;
}

.catalog-card-title {
  margin: 7px 0 22px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.catalog-card-meta {
  padding: 16px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-card-meta > span {
  min-width: 0;
  padding: 0 9px;
  display: grid;
  gap: 6px;
  border-right: 1px solid var(--line);
}

.catalog-card-meta > span:first-child {
  padding-left: 0;
}

.catalog-card-meta > span:last-child {
  padding-right: 0;
  border-right: 0;
}

.catalog-card-meta small {
  color: #626059;
  font-size: 0.52rem;
  font-weight: 690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card-meta b {
  overflow: hidden;
  color: #b9b5ac;
  font-size: 0.68rem;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-card-footer {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.catalog-card-footer > strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.catalog-card-footer > span {
  color: #88857d;
  font-size: 0.57rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card-footer b {
  margin-left: 4px;
  color: var(--gold);
  font-weight: 400;
}

.service {
  padding-top: clamp(90px, 10vw, 150px);
  display: grid;
  grid-template-columns: 0.43fr 0.57fr;
  gap: clamp(60px, 8vw, 130px);
  border-top: 1px solid var(--line);
}

.service-title h2 {
  font-size: clamp(3.1rem, 5.2vw, 6.1rem);
  line-height: 0.95;
}

.service-ledger {
  border-top: 1px solid var(--line);
}

.service-ledger article {
  min-height: 150px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.service-ledger article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.service-ledger h3 {
  margin: 0 0 13px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.service-ledger p {
  max-width: 570px;
  margin: 0;
  color: #929087;
  font-size: 0.9rem;
  line-height: 1.7;
}

.experience-band {
  position: relative;
  min-height: 680px;
  padding: clamp(80px, 8vw, 140px) clamp(28px, 7vw, 130px);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 60px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%),
    var(--gold);
  color: var(--ink);
}

.experience-band::after {
  position: absolute;
  right: -6vw;
  bottom: -18vw;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(7, 7, 6, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(7, 7, 6, 0.04), 0 0 0 14vw rgba(7, 7, 6, 0.035);
  content: "";
}

.experience-copy {
  position: relative;
  z-index: 2;
  align-self: start;
}

.experience-copy .eyebrow {
  color: var(--ink);
}

.experience-copy h2 {
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.86;
}

.experience-copy h2 em {
  color: rgba(7, 7, 6, 0.58);
}

.experience-stat {
  position: relative;
  z-index: 2;
  width: 220px;
  align-self: end;
}

.experience-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 400;
  line-height: 0.85;
}

.experience-stat > span {
  margin-top: 20px;
  display: block;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.8;
  text-transform: uppercase;
}

.experience-stat a {
  margin-top: 26px;
  padding-bottom: 6px;
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  font-size: 0.71rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.event-ticker {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(7, 7, 6, 0.3);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 2.3rem);
}

.event-ticker i {
  font-size: 0.55rem;
  font-style: normal;
}

.team {
  padding-top: clamp(110px, 12vw, 180px);
}

.team-heading {
  color: var(--paper);
}

.team-heading .eyebrow {
  color: var(--gold);
}

.team-heading h2 {
  font-size: clamp(3rem, 5.3vw, 6.2rem);
}

.team-heading > p:last-child {
  color: #929087;
}

.team-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.team-member {
  min-height: 156px;
  padding: 26px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-member > span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 179, 76, 0.55);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
  transition: background 180ms ease, color 180ms ease;
}

.team-member h3 {
  margin: 0 0 7px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.team-member p {
  margin: 0;
  color: #85837c;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team-open {
  background: rgba(217, 179, 76, 0.06);
  transition: background 180ms ease;
}

.team-open:hover {
  background: rgba(217, 179, 76, 0.14);
}

.team-open:hover > span {
  background: var(--gold);
  color: var(--ink);
}

.contact {
  position: relative;
  min-height: 650px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: 60px;
  align-items: end;
  overflow: hidden;
  background: var(--ivory);
  color: var(--ink);
}

.contact::after {
  position: absolute;
  top: -45%;
  right: -14%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(148, 112, 25, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(148, 112, 25, 0.035), 0 0 0 160px rgba(148, 112, 25, 0.025);
  content: "";
}

.contact-kicker {
  position: absolute;
  top: 34px;
  right: 36px;
  color: #88847a;
  font-size: 0.62rem;
  font-weight: 680;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 2;
}

.contact-copy .eyebrow {
  color: var(--gold-deep);
}

.contact-copy h2 {
  font-size: clamp(3.7rem, 6.4vw, 7.6rem);
  line-height: 0.87;
}

.contact-copy > p:last-child {
  max-width: 600px;
  margin: 38px 0 0;
  color: #68655d;
  line-height: 1.8;
}

.contact-actions {
  border-top: 1px solid var(--line-dark);
}

.contact-actions a {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.contact-actions small {
  grid-column: 1 / -1;
  align-self: end;
  color: #7e7a70;
  font-size: 0.6rem;
  font-weight: 680;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-actions strong {
  align-self: start;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.4rem);
  font-weight: 400;
}

.contact-actions a > span {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--gold-deep);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.contact-actions a:hover > span {
  transform: translate(3px, -3px);
}

footer {
  width: min(calc(100% - 48px), 1540px);
  margin-inline: auto;
  padding: 70px clamp(8px, 3vw, 44px) 28px;
  display: grid;
  grid-template-columns: 1fr 0.6fr 1.1fr;
  gap: 50px;
  color: #8d8b84;
}

.footer-brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.footer-brand p,
.footer-contact p,
.footer-legal > p {
  margin: 14px 0 0;
  font-size: 0.72rem;
  line-height: 1.65;
}

.footer-contact {
  padding-top: 14px;
}

.footer-legal {
  padding-top: 14px;
}

.footer-legal details {
  margin-top: 18px;
  font-size: 0.7rem;
  line-height: 1.7;
}

.footer-legal summary {
  color: #c6c3ba;
  cursor: pointer;
}

.footer-legal details p {
  max-width: 620px;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 0.85fr;
    padding-top: 124px;
  }

  .hero-mark {
    min-height: 390px;
  }

  .collection,
  .service {
    gap: 60px;
  }

  .showroom-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .featured-main,
  .featured-side {
    min-height: 560px;
    grid-row: auto;
  }

  .featured-side .featured-image {
    inset: 54px 44px 120px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    height: 76px;
  }

  .brand-lockup {
    z-index: 2;
    width: 96px;
    height: 68px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 1px;
    display: block;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .menu-button.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    padding: 100px 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow-y: auto;
    background: rgba(6, 6, 5, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--paper);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    margin-top: 22px;
    justify-content: space-between;
  }

  body:has(.main-nav.is-open) {
    overflow: hidden;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
    padding: 130px 24px 34px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 15vw, 6.8rem);
  }

  .hero-mark {
    min-height: 390px;
  }

  .hero-mark img {
    width: min(100%, 580px);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts > div {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts > div:last-child {
    border-bottom: 0;
  }

  .hero-disclaimer {
    display: none;
  }

  .section-shell {
    width: min(calc(100% - 24px), 1540px);
    padding-right: 24px;
    padding-left: 24px;
  }

  .section-heading,
  .collection,
  .service,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 11vw, 5.4rem);
  }

  .collection {
    gap: 58px;
  }

  .collection-intro {
    position: static;
  }

  .service {
    gap: 58px;
  }

  .experience-band {
    min-height: 700px;
    grid-template-columns: 1fr;
  }

  .experience-stat {
    width: auto;
  }

  .event-ticker {
    justify-content: flex-start;
    gap: 30px;
    overflow-x: auto;
  }

  .contact {
    gap: 60px;
  }

  .contact::after {
    width: 120%;
  }

  footer {
    width: calc(100% - 24px);
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-mark {
    min-height: 300px;
  }

  .hero-mark > p {
    bottom: 0;
  }

  .featured-main,
  .featured-side {
    min-height: 470px;
    padding: 20px;
  }

  .featured-image,
  .featured-side .featured-image {
    inset: 62px 16px 146px;
  }

  .featured-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-content > strong {
    padding-bottom: 0;
  }

  .featured-specs {
    flex-wrap: wrap;
    gap: 8px 15px;
  }

  .inventory-head {
    display: none;
  }

  .inventory-row {
    min-height: 116px;
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
  }

  .inventory-row > span:nth-child(2),
  .inventory-row > span:nth-child(3) {
    color: #77756e;
    font-size: 0.7rem;
  }

  .model-cell {
    grid-column: 1 / -1;
  }

  .price-cell {
    grid-column: 2;
    grid-row: 2;
  }

  .service-ledger article {
    grid-template-columns: 46px 1fr;
  }

  .experience-copy h2 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .team-member > span {
    width: 54px;
    height: 54px;
  }

  .contact {
    min-height: 760px;
  }

  .contact-copy h2 {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

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

  .footer-legal,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 20px;
  }
}

.featured-link {
  position: absolute;
  z-index: 8;
  inset: 0;
}

.empty-public {
  padding: 38px;
  border: 1px solid var(--line);
  color: #8f8c84;
  font-family: var(--serif);
  font-size: 1.35rem;
  text-align: center;
}

/* Multi-page experience */
.heading-action {
  display: grid;
  gap: 22px;
  align-items: start;
}

.heading-action p {
  max-width: 430px;
  margin: 0;
  color: #6c6961;
  font-size: 1rem;
  line-height: 1.75;
}

.team-heading .heading-action p {
  color: #929087;
}

.dark-link {
  width: max-content;
  color: var(--ink);
}

.band-link {
  width: max-content;
  margin-top: 34px;
  padding-bottom: 7px;
  display: inline-block;
  border-bottom: 1px solid rgba(7, 7, 6, 0.55);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inner-page main {
  min-height: 70vh;
}

.page-hero,
.community-hero {
  position: relative;
  min-height: 660px;
  padding: 190px clamp(28px, 7vw, 130px) 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.42fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 76% 38%, rgba(217, 179, 76, 0.14), transparent 28%),
    #090908;
  background-size: 74px 74px, 74px 74px, auto, auto;
}

.page-hero::after,
.community-hero::after {
  position: absolute;
  top: 12%;
  right: -6%;
  width: min(46vw, 690px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 179, 76, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(217, 179, 76, 0.025), 0 0 0 14vw rgba(217, 179, 76, 0.018);
  content: "";
}

.page-hero > *,
.community-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.community-hero h1,
.page-cta h2,
.contact-form-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.page-hero h1,
.community-hero h1 {
  max-width: 1050px;
  font-size: clamp(4rem, 7.2vw, 8.6rem);
  line-height: 0.88;
}

.page-hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.page-hero-aside,
.community-hero aside {
  min-height: 248px;
  padding: 26px 0 6px clamp(28px, 3vw, 50px);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(217, 179, 76, 0.48);
}

.page-hero-aside strong,
.community-hero aside strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: 0.82;
}

.page-hero-aside > span,
.community-hero aside > span {
  margin-top: 24px;
  color: #d1cdc3;
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.page-hero-aside p,
.community-hero > div > p:last-child {
  max-width: 420px;
  margin: auto 0 0;
  color: #8e8b83;
  font-size: 0.9rem;
  line-height: 1.75;
}

.catalog-page-section {
  padding-top: clamp(90px, 9vw, 140px);
}

.catalog-page-section.collection {
  border-top: 0;
}

.catalog-page-section .collection-intro {
  top: 122px;
}

.page-cta {
  min-height: 470px;
  margin-bottom: 26px;
  padding-top: clamp(80px, 9vw, 130px);
  padding-bottom: clamp(80px, 9vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px 60px;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 34%),
    var(--gold);
  color: var(--ink);
}

.page-cta .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--ink);
}

.page-cta h2 {
  font-size: clamp(3.6rem, 6.7vw, 7.7rem);
  line-height: 0.88;
}

.page-cta .button-gold {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--gold-bright);
}

.page-cta .button-gold:hover {
  background: #22221e;
}

.service-full-page {
  border-top: 0;
}

.service-title > p:not(.eyebrow) {
  max-width: 470px;
  margin: 34px 0 0;
  color: #949189;
  line-height: 1.8;
}

.service-process {
  padding-top: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid article {
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.process-grid article > span,
.event-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.process-grid h3 {
  margin: auto 0 15px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.process-grid p {
  margin: 0;
  color: #8e8b83;
  font-size: 0.86rem;
  line-height: 1.75;
}

.team-full-page {
  padding-top: clamp(90px, 9vw, 140px);
}

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

.community-hero {
  min-height: 760px;
}

.community-hero > div {
  align-self: center;
}

.community-hero > div > p:last-child {
  max-width: 700px;
  margin-top: 38px;
  font-size: 1rem;
}

.community-hero aside {
  align-self: end;
}

.community-hero aside a {
  width: max-content;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(217, 179, 76, 0.5);
  color: var(--gold-bright);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.events-section {
  padding-top: clamp(90px, 9vw, 140px);
}

.event-card-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.event-card {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.event-card::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 179, 76, 0.12);
  border-radius: 50%;
  content: "";
}

.event-card.featured-event {
  background: linear-gradient(140deg, rgba(217, 179, 76, 0.11), rgba(255, 255, 255, 0.012));
}

.event-card .event-meta {
  margin: auto 0 12px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.event-card > p:not(.event-meta) {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin: 0;
  color: #939088;
  line-height: 1.75;
}

.event-card > a {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: 28px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form-section {
  padding-top: clamp(90px, 9vw, 140px);
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: start;
}

.contact-form-intro {
  position: sticky;
  top: 126px;
}

.contact-form-intro h2 {
  color: var(--paper);
  font-size: clamp(3rem, 5vw, 5.9rem);
  line-height: 0.94;
}

.contact-form-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 32px 0;
  color: #96938b;
  line-height: 1.8;
}

.contact-route-list {
  border-top: 1px solid var(--line);
}

.contact-route-list a {
  min-height: 56px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #8d8a82;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease, padding 180ms ease;
}

.contact-route-list a:hover,
.contact-route-list a.active {
  padding-right: 9px;
  padding-left: 9px;
  color: var(--gold-bright);
}

.public-form-card {
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid rgba(217, 179, 76, 0.3);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 179, 76, 0.12), transparent 28%),
    #11110f;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.public-form {
  display: grid;
  gap: 23px;
}

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

.public-form label {
  display: grid;
  gap: 9px;
}

.public-form label > span {
  color: #aaa69d;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.public-form input,
.public-form select,
.public-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease;
}

.public-form textarea {
  min-height: 190px;
  padding-top: 15px;
  resize: vertical;
  line-height: 1.65;
}

.public-form input:focus,
.public-form select:focus,
.public-form textarea:focus {
  border-color: var(--gold);
  background: rgba(217, 179, 76, 0.045);
}

.public-form select option {
  background: #141412;
}

.public-form label small {
  color: #6f6c65;
  font-size: 0.65rem;
  line-height: 1.5;
}

.public-check {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px !important;
  cursor: pointer;
}

.public-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--gold);
}

.public-check span {
  color: #96938b !important;
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.65;
  text-transform: none !important;
}

.public-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.public-alert {
  margin-bottom: 26px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  font-size: 0.84rem;
  line-height: 1.65;
}

.public-alert strong,
.public-alert p,
.public-alert ul {
  margin: 0;
}

.public-alert ul {
  padding: 6px 0 0 19px;
}

.public-alert.success {
  border-color: rgba(105, 198, 141, 0.42);
  background: rgba(105, 198, 141, 0.07);
  color: #b6e7c8;
}

.public-alert.error {
  border-color: rgba(224, 104, 96, 0.44);
  background: rgba(224, 104, 96, 0.07);
  color: #f0b5b0;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 1040px) {
  .page-hero,
  .community-hero {
    min-height: 720px;
    padding-top: 150px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-hero-aside,
  .community-hero aside {
    min-height: auto;
    padding: 25px 0 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px 24px;
    border-top: 1px solid rgba(217, 179, 76, 0.48);
    border-left: 0;
  }

  .page-hero-aside strong,
  .community-hero aside strong {
    grid-row: 1 / span 2;
  }

  .page-hero-aside > span,
  .community-hero aside > span {
    margin-top: 4px;
  }

  .page-hero-aside p {
    margin: 0;
  }

  .process-grid,
  .team-full-page .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form-section {
    grid-template-columns: 1fr;
  }

  .contact-form-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .page-hero,
  .community-hero {
    min-height: 650px;
    padding: 130px 24px 70px;
  }

  .page-hero h1,
  .community-hero h1 {
    font-size: clamp(3.5rem, 14vw, 6.6rem);
  }

  .page-hero-aside strong,
  .community-hero aside strong {
    font-size: 4.4rem;
  }

  .page-cta {
    grid-template-columns: 1fr;
  }

  .page-cta .eyebrow {
    grid-column: auto;
  }

  .process-grid,
  .team-full-page .team-grid,
  .event-card-grid,
  .public-form-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 350px;
  }

  .catalog-vehicle-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .page-hero-aside,
  .community-hero aside {
    grid-template-columns: 1fr;
  }

  .page-hero-aside strong,
  .community-hero aside strong {
    grid-row: auto;
  }

  .page-cta {
    min-height: 430px;
  }

  .page-cta h2 {
    font-size: clamp(3.3rem, 16vw, 5.5rem);
  }

  .process-grid article {
    min-height: 250px;
  }

  .public-form-card {
    padding: 26px 18px;
  }

  .catalog-browser {
    padding: 15px;
  }

  .catalog-browser-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .catalog-browser-head p {
    display: none;
  }

  .catalog-card-body {
    padding: 19px;
  }

  .catalog-card-visual {
    min-height: 215px;
  }

  .catalog-card-meta {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-card-meta > span:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .catalog-card-meta > span:last-child {
    margin-top: 14px;
    padding: 14px 0 0;
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .catalog-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.detail-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 clamp(22px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 6, 0.88);
  backdrop-filter: blur(18px);
}

.detail-header .text-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vehicle-detail {
  min-height: 100svh;
  padding-top: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  background: var(--ink);
}

.vehicle-detail-visual {
  position: relative;
  min-height: calc(100svh - 88px);
  padding: clamp(34px, 5vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(217, 179, 76, 0.13), transparent 42%),
    #0b0b09;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.vehicle-detail-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 179, 76, 0.12);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.vehicle-detail-visual > * {
  position: relative;
  z-index: 1;
}

.vehicle-detail-visual > img {
  width: min(100%, 940px);
  height: min(52vw, 600px);
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.42));
}

.detail-status {
  width: max-content;
  padding: 10px 13px;
  border: 1px solid var(--line);
  color: #b1aea5;
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.detail-status.available {
  border-color: rgba(123, 207, 154, 0.4);
  color: #9ce0b4;
}

.detail-status.reserved {
  border-color: rgba(217, 179, 76, 0.5);
  color: var(--gold-bright);
}

.vehicle-detail-copy {
  min-height: calc(100svh - 88px);
  padding: clamp(50px, 7vw, 110px) clamp(28px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 179, 76, 0.08), transparent 30%),
    #0e0e0c;
}

.vehicle-detail-copy h1 {
  margin: 4px 0 14px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.detail-price {
  margin-bottom: 30px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

.detail-description {
  max-width: 650px;
  margin: 0 0 34px;
  color: #aaa79f;
  font-size: 0.95rem;
  line-height: 1.85;
}

.specification-grid {
  margin: 0 0 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.specification-grid > div {
  min-height: 76px;
  padding: 16px 10px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 9px;
  border-bottom: 1px solid var(--line);
}

.specification-grid > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.specification-grid > div:nth-child(even) {
  padding-left: 18px;
}

.specification-grid dt {
  color: #6f6d66;
  font-size: 0.61rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.specification-grid dd {
  margin: 0;
  color: #ded9cf;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.vehicle-detail-copy .fine-print {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .vehicle-detail {
    grid-template-columns: 1fr;
  }

  .vehicle-detail-visual,
  .vehicle-detail-copy {
    min-height: auto;
  }

  .vehicle-detail-visual {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vehicle-detail-visual > img {
    height: min(65vw, 480px);
  }
}

@media (max-width: 580px) {
  .detail-header {
    height: 74px;
    padding: 0 16px;
  }

  .detail-header .brand-lockup {
    width: 94px;
    height: 66px;
  }

  .detail-header .text-link {
    font-size: 0.61rem;
  }

  .vehicle-detail {
    padding-top: 74px;
  }

  .vehicle-detail-visual {
    min-height: 430px;
    padding: 28px 20px;
  }

  .vehicle-detail-visual > img {
    height: 270px;
  }

  .vehicle-detail-copy {
    padding: 52px 20px;
  }

  .vehicle-detail-copy h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .specification-grid {
    grid-template-columns: 1fr;
  }

  .specification-grid > div:nth-child(odd) {
    border-right: 0;
  }

  .specification-grid > div:nth-child(even) {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
