:root {
  --ink: #f4f1ea;
  --muted: #b9b3a8;
  --paper: #f3f0ea;
  --paper-ink: #151515;
  --charcoal: #0d0d0d;
  --charcoal-soft: #171717;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #c9a45d;
  --copper: #d88b4b;
  --amber: #ffb25d;
  --nav-black: #06080a;
  --green: #6f8d73;
  --red: #7d1d1d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  --logo-space: clamp(150px, 15vw, 220px);
  gap: 0;
  min-height: 92px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, transparent, rgba(255, 178, 93, 0.2), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    rgba(5, 6, 8, 0.9);
  border-top: 2px solid rgba(216, 139, 75, 0.7);
  border-bottom: 1px solid rgba(216, 139, 75, 0.55);
  box-shadow:
    0 0 28px rgba(216, 139, 75, 0.22),
    inset 0 -1px 0 rgba(255, 202, 132, 0.28);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, transparent, rgba(255, 178, 93, 0.16), transparent),
    rgba(5, 6, 8, 0.94);
  border-bottom: 1px solid rgba(216, 139, 75, 0.55);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--charcoal);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.site-header .brand {
  position: absolute;
  top: -34px;
  left: 50%;
  z-index: 23;
  display: grid;
  justify-items: center;
  gap: 0;
  transform: translateX(-50%);
}

.site-header .brand-logo {
  width: clamp(138px, 14vw, 184px);
  height: clamp(138px, 14vw, 184px);
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(11, 27, 39, 0.98), rgba(5, 8, 12, 0.98));
  box-shadow:
    0 0 0 5px rgba(216, 139, 75, 0.85),
    0 22px 60px rgba(0, 0, 0, 0.62),
    0 0 34px rgba(255, 178, 93, 0.3);
}

.site-header .brand-text {
  display: none;
}

.brand-text {
  font-size: 15px;
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--logo-space) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: 1280px;
  gap: clamp(8px, 1.4vw, 24px);
  font-size: clamp(13px, 1.04vw, 17px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.75);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 74px);
  min-width: 0;
}

.nav-group-left {
  justify-content: flex-end;
}

.nav-group-right {
  justify-content: flex-start;
}

.nav-spacer {
  display: block;
  width: 100%;
  min-height: 1px;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
}

.site-nav a:hover {
  color: white;
}

.site-nav a:not(.nav-search)::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:not(.nav-search):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-search {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.nav-search::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.nav-search::after {
  content: "";
  position: absolute;
  left: auto;
  right: 6px;
  bottom: 8px;
  width: 10px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
}

.nav-account-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-badge {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  color: #141414;
  background: var(--amber);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 14px rgba(255, 178, 93, 0.5);
}

.nav-social-link {
  color: var(--amber) !important;
}

.nav-profile {
  position: relative;
}

.nav-profile[open] {
  z-index: 30;
}

.nav-avatar-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(216, 139, 75, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 18px rgba(216, 139, 75, 0.18);
}

.nav-avatar-button::-webkit-details-marker {
  display: none;
}

.nav-avatar {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-badge {
  position: absolute;
  right: -5px;
  bottom: -3px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  color: #111;
  background: var(--amber);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 14px rgba(255, 178, 93, 0.55);
}

.profile-menu {
  position: absolute;
  top: calc(100% + 22px);
  right: auto;
  left: calc(50% - 24px);
  transform: none;
  display: grid;
  min-width: 280px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(9, 9, 9, 0.98);
  border: 1px solid rgba(216, 139, 75, 0.62);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-transform: none;
  text-shadow: none;
}

.profile-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 24px;
  width: 16px;
  height: 16px;
  background: rgba(9, 9, 9, 0.98);
  border-left: 1px solid rgba(216, 139, 75, 0.62);
  border-top: 1px solid rgba(216, 139, 75, 0.62);
  transform: translateX(-50%) rotate(45deg);
}

.profile-menu a {
  display: block;
  padding: 11px 12px;
  border: 0;
  white-space: normal;
  font-size: 13px;
  font-weight: 800;
}

.profile-menu a:hover {
  color: white;
  background: rgba(216, 139, 75, 0.16);
}

.profile-menu a::after {
  display: none;
}

.profile-divider {
  display: block;
  height: 1px;
  margin: 8px 0;
  background: rgba(216, 139, 75, 0.36);
}

.toast-stack {
  position: fixed;
  top: 18px;
  left: 18px;
  right: auto;
  bottom: auto;
  z-index: 60;
  display: grid;
  gap: 8px;
  width: min(305px, calc(100vw - 36px));
}

.toast {
  margin: 0;
  padding: 10px 12px;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.5);
  background: rgba(14, 13, 12, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  font-size: 12px;
  font-weight: 800;
  animation: toastIn 180ms ease-out, toastOut 400ms ease-in 4.6s forwards;
}

.toast-success {
  border-color: rgba(66, 255, 123, 0.34);
}

.toast-error {
  border-color: rgba(255, 77, 77, 0.42);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(168px, 18vh, 210px) clamp(20px, 5vw, 72px) clamp(250px, 30vh, 330px);
  overflow: hidden;
  border-left: 2px solid rgba(216, 139, 75, 0.45);
  border-right: 2px solid rgba(216, 139, 75, 0.45);
  border-bottom: 2px solid rgba(216, 139, 75, 0.45);
}

.hero:has(.home-live-strip) {
  padding-bottom: clamp(390px, 46vh, 500px);
}

.hero:has(.home-center) {
  padding-top: clamp(150px, 16vh, 190px);
  padding-bottom: clamp(260px, 32vh, 360px);
}

.hero-slideshow,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slideshow {
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
  filter: blur(3px) brightness(0.62) saturate(1.16);
  transform: scale(1.02);
  opacity: 0;
  animation: heroFade calc(var(--slide-count) * 7s) infinite;
  animation-delay: calc(var(--slide-index) * 7s);
}

.hero-image:first-child {
  opacity: 1;
}

.hero-image:only-child {
  opacity: 1;
  animation: none;
}

@keyframes heroFade {
  0%,
  100% {
    opacity: 0;
  }

  6%,
  28% {
    opacity: 1;
  }

  36% {
    opacity: 0;
  }
}

/*.hero-overlay {
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 178, 93, 0.42), transparent 18%),
    radial-gradient(circle at 50% 58%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(74, 34, 12, 0.18), rgba(0, 0, 0, 0.68));
}*/

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  align-self: center;
}

.home-promo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 10px 14px;
  color: white;
  border: 1px solid rgba(255, 174, 103, 0.72);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-promo-strip span {
  color: rgba(255, 255, 255, 0.62);
}

.home-promo-strip strong {
  color: #ffd37a;
}

.home-promo-beacon {
  position: absolute;
  z-index: 4;
  top: clamp(158px, 18vh, 184px);
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(92vw, 640px);
  padding: 9px 14px;
  color: white;
  border: 1px solid rgba(255, 174, 103, 0.58);
  background:
    linear-gradient(90deg, rgba(216, 139, 75, 0.14), rgba(0, 0, 0, 0.78), rgba(216, 139, 75, 0.14));
  box-shadow: 0 0 28px rgba(216, 139, 75, 0.22), 0 16px 44px rgba(0, 0, 0, 0.36);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: promoBeacon 1.8s ease-in-out infinite;
}

.hero:has(.home-promo-beacon) .home-center {
  margin-top: clamp(34px, 5vh, 58px);
}

.home-promo-beacon span {
  color: rgba(255, 255, 255, 0.56);
}

.home-promo-beacon strong {
  color: #ffd37a;
}

.home-center {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(320px, 0.68fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.home-intro {
  display: grid;
  justify-items: start;
  text-align: left;
}

.home-intro .home-promo-strip {
  margin: 0 0 18px;
}

.home-intro h1 {
  margin: 0;
  color: white;
  font-size: clamp(60px, 8vw, 118px);
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.48);
}

.home-intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.home-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.home-intro-meta span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 139, 75, 0.3);
  background: rgba(4, 4, 4, 0.38);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-intro .welcome-actions {
  justify-content: start;
  margin-top: 28px;
}

.home-showcase {
  position: relative;
  min-height: 420px;
  padding: 18px;
  border: 1px solid rgba(216, 139, 75, 0.28);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(7, 7, 7, 0.58);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.home-showcase::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 174, 103, 0.8), transparent);
}

.home-showcase-head {
  position: absolute;
  z-index: 4;
  top: 36px;
  left: 42px;
  right: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: white;
  pointer-events: none;
}

.home-showcase-head span,
.home-slide span,
.home-arrivals-heading span,
.home-arrival-card span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-showcase-head strong {
  display: inline-grid;
  place-items: center;
  min-height: 29px;
  max-width: min(42%, 138px);
  padding: 7px 11px;
  color: #f3c06e;
  border: 1px solid rgba(216, 139, 75, 0.42);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: none;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-showcase-head strong::before {
  content: none;
}

.home-showcase-head > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 29px;
  max-width: min(42%, 96px);
  padding: 7px 10px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.48);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.home-showcase-head > span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3434;
  box-shadow: 0 0 12px rgba(255, 52, 52, 0.9);
  animation: livePulse 1.35s ease-in-out infinite;
}

.home-slides,
.home-slide {
  position: absolute;
  inset: 36px 42px 48px;
}

.home-slide {
  display: grid;
  align-content: end;
  color: white;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 700ms ease, transform 900ms ease;
}

.home-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.home-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.04);
}

.home-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 78% 20%, rgba(216, 139, 75, 0.14), transparent 36%);
}

.home-slide div {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 76px clamp(18px, 3vw, 28px) 54px;
}

.home-slide h2 {
  display: -webkit-box;
  max-width: min(390px, 100%);
  margin: 8px 0 8px;
  overflow: hidden;
  color: white;
  font-size: clamp(23px, 2.45vw, 36px);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-slide p {
  display: -webkit-box;
  max-width: min(390px, 100%);
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-slide em {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding-bottom: 4px;
  color: var(--amber);
  border-bottom: 1px solid rgba(216, 139, 75, 0.58);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-slider-dots {
  position: absolute;
  z-index: 5;
  right: 52px;
  bottom: 56px;
  display: flex;
  gap: 7px;
}

.home-slider-dots span {
  width: 22px;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.home-slider-dots span.is-active {
  width: 38px;
  background: var(--amber);
}

.home-arrivals {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid rgba(216, 139, 75, 0.24);
  background: rgba(4, 4, 4, 0.46);
  backdrop-filter: blur(6px);
}

.home-arrivals-heading {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 8px 12px;
  border-right: 1px solid rgba(216, 139, 75, 0.2);
}

.home-arrivals-heading strong {
  color: white;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

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

.home-arrival-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 8px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.home-arrival-card img {
  grid-row: 1 / 4;
  width: 82px;
  height: 64px;
  object-fit: contain;
  background: #050505;
}

.home-arrival-card strong,
.home-arrival-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-arrival-card strong {
  font-size: 14px;
  text-transform: uppercase;
}

.home-arrival-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.home-live-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1080px);
  margin: clamp(18px, 3vh, 28px) auto 0;
}

.home-live-panel {
  min-width: 0;
  padding: 14px;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.34);
  background: rgba(7, 7, 7, 0.72);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(5px);
}

.home-live-panel:only-child {
  grid-column: 1 / -1;
}

.home-live-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.home-live-heading span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-live-heading h2 {
  margin: 0;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

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

.home-live-card {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.home-live-card:first-child:nth-last-child(3),
.home-live-card:first-child:nth-last-child(3) ~ .home-live-card {
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
}

.home-live-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: contain;
  background: #050505;
}

.home-live-card:first-child:nth-last-child(3) img,
.home-live-card:first-child:nth-last-child(3) ~ .home-live-card img {
  height: 66px;
  aspect-ratio: auto;
}

.home-live-card strong,
.home-live-card small {
  padding: 0 10px;
}

.home-live-card strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-live-card small {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.home-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding: clamp(22px, 3vh, 34px) clamp(20px, 5vw, 72px) clamp(20px, 2.8vh, 28px);
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(ellipse at top, rgba(216, 139, 75, 0.2), transparent 42%),
    linear-gradient(180deg, transparent, rgba(4, 6, 8, 0.96) 28%);
  border-top: 1px solid rgba(216, 139, 75, 0.54);
}

.home-bottom h2 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.8);
}

.home-info,
.home-partners,
.home-social {
  min-width: 0;
}

.home-info p,
.home-social a {
  display: block;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 800;
  text-align: center;
}

.home-social img,
.discord-link img {
  display: inline-block;
  vertical-align: middle;
}

.partner-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap: wrap;
}

.partner-strip span {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 12px;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.34);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

/*.partner-strip span:last-child {
  color: #ff3333;
  border-color: rgba(255, 51, 51, 0.38);
  font-size: 24px;
}*/

.fiction-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.fiction-note a {
  color: inherit;
  text-decoration: none;
}

.fiction-note a:hover {
  color: rgba(255, 174, 103, 0.78);
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  background: #030405;
}

.footer-home-bottom {
  position: relative;
  width: 100%;
  bottom: auto;
  left: auto;
  right: auto;
}

.welcome-box {
  padding: clamp(20px, 3vh, 34px) clamp(20px, 5vw, 48px);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(23, 18, 14, 0.62);
  border: 3px solid rgba(255, 174, 103, 0.92);
  box-shadow:
    0 0 34px rgba(0, 0, 0, 0.52),
    inset 0 0 38px rgba(255, 178, 93, 0.06);
  backdrop-filter: blur(3px);
}

.welcome-box h1 {
  margin: 0 0 clamp(12px, 2vh, 20px);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 0.2vw, 22px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.welcome-box p {
  margin-bottom: clamp(10px, 1.8vh, 17px);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 500;
  line-height: 1.13;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.82);
}

.welcome-box p:last-child {
  margin-bottom: 0;
}

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

.welcome-actions .button {
  animation: ctaGlow 1.8s ease-in-out infinite;
}

.welcome-actions .button:nth-child(2) {
  animation-delay: 0.35s;
}

.button-social {
  border-color: rgba(255, 84, 112, 0.58);
  box-shadow: 0 0 24px rgba(255, 84, 112, 0.12);
}

@keyframes ctaGlow {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(255, 174, 103, 0);
  }

  45% {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(255, 174, 103, 0.38);
  }
}

@keyframes promoBeacon {
  0%,
  100% {
    border-color: rgba(255, 174, 103, 0.44);
    box-shadow: 0 0 20px rgba(216, 139, 75, 0.12), 0 16px 44px rgba(0, 0, 0, 0.32);
  }

  50% {
    border-color: rgba(255, 210, 122, 0.9);
    box-shadow: 0 0 34px rgba(255, 174, 103, 0.34), 0 16px 44px rgba(0, 0, 0, 0.36);
  }
}

@keyframes livePulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.72;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.facemotors-home {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 110px clamp(20px, 5vw, 72px);
  color: white;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 84, 112, 0.13), transparent 28%),
    radial-gradient(circle at 20% 85%, rgba(216, 139, 75, 0.14), transparent 32%),
    linear-gradient(180deg, #050505, #101010);
  border-top: 1px solid rgba(216, 139, 75, 0.42);
}

.facemotors-home-copy h2 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.92;
  text-transform: uppercase;
}

.facemotors-home-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 800;
}

.facemotors-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.facemotors-home-panel {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 14px;
}

.mock-post {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(216, 139, 75, 0.34);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.mock-post-large {
  grid-row: span 2;
  min-height: 394px;
  background:
    linear-gradient(180deg, rgba(255, 84, 112, 0.08), rgba(0, 0, 0, 0.76)),
    rgba(255, 255, 255, 0.07);
}

.mock-post span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-post strong {
  color: white;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.mock-post p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #141414;
  background: var(--gold);
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 40px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: min(310px, calc(100vw - 40px));
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  display: none;
}

.hero-panel strong {
  font-size: 24px;
}

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

.section {
  padding: 92px clamp(20px, 5vw, 72px);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(125, 29, 29, 0.18), transparent 32%),
    var(--charcoal);
}

.section-light {
  color: var(--paper-ink);
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

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

.vehicle-card,
.service-grid article {
  overflow: hidden;
  background: var(--charcoal-soft);
  border: 1px solid var(--line);
}

.catalogue-card {
  color: inherit;
  transition: transform 160ms ease, border-color 160ms ease;
}

.catalogue-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 139, 75, 0.58);
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: contain;
  background: #050505;
}

.vehicle-card.is-sold img {
  filter: grayscale(0.8);
}

.vehicle-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: white;
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.vehicle-media {
  position: relative;
  overflow: hidden;
}

.promo-ribbon {
  position: absolute;
  top: 16px;
  left: -34px;
  z-index: 2;
  min-width: 150px;
  padding: 7px 18px;
  color: #14100c;
  background: linear-gradient(135deg, #ffd37a, #d88b4b);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-38deg);
}

.promo-ribbon-inline {
  position: static;
  display: inline-block;
  min-width: 0;
  transform: none;
}

.old-price {
  display: inline-block;
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.status-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 14px currentColor;
}

.vehicle-media .status-dot {
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.status-green {
  color: #42ff7b;
  background: #27bb54;
}

.status-orange {
  color: #ffc247;
  background: #e08a19;
}

.status-red {
  color: #ff4d4d;
  background: #c92727;
}

.vehicle-content {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.make {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.price {
  justify-self: start;
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
}

.catalogue-mileage {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

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

.vehicle-actions form,
.row-actions form {
  margin: 0;
}

.mini-button {
  border: 1px solid var(--line);
  padding: 9px 11px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.mini-button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.vehicle-specs div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.vehicle-specs dt {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.vehicle-specs dd {
  margin: 2px 0 0;
  font-weight: 700;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 92px clamp(20px, 5vw, 72px);
  color: var(--paper-ink);
  background: var(--paper);
}

.showcase-copy p:last-child,
.split p {
  max-width: 680px;
  color: #4f4a42;
  font-size: 18px;
}

.sold-strip {
  display: grid;
  gap: 12px;
  align-content: center;
}

.sold-strip span {
  padding: 22px;
  color: white;
  background: linear-gradient(90deg, #141414, #2a2a2a);
  border-left: 5px solid var(--gold);
  font-size: clamp(22px, 4vw, 42px);
  font-family: Georgia, "Times New Roman", serif;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: start;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.service-list strong {
  font-size: 20px;
}

.service-list span {
  color: #5b554d;
}

.service-grid article img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.service-grid article h3,
.service-grid article p {
  padding: 0 18px;
}

.service-grid article h3 {
  margin-top: 18px;
}

.service-grid article p {
  color: var(--muted);
  min-height: 78px;
}

.account-section {
  color: var(--paper-ink);
  background:
    linear-gradient(135deg, rgba(111, 141, 115, 0.2), transparent 36%),
    var(--paper);
}

.account-section .section-heading {
  align-items: start;
}

.account-status {
  max-width: 360px;
  margin: 0;
  color: #5b554d;
  font-weight: 700;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.account-login,
.dashboard,
.workspace-empty {
  border: 1px solid rgba(216, 139, 75, 0.26);
  background: rgba(14, 13, 12, 0.7);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.account-login,
.workspace-empty {
  padding: 24px;
}

.account-login {
  display: grid;
  gap: 14px;
}

.account-login h3,
.dashboard h3 {
  color: white;
}

.account-login label,
.vehicle-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.check-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.check-label input {
  width: auto !important;
  min-width: 18px;
}

.account-login input,
.vehicle-form input,
.vehicle-form select {
  width: 100%;
  border: 1px solid rgba(216, 139, 75, 0.3);
  padding: 12px 13px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.login-help,
.form-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.form-message {
  min-height: 20px;
  color: var(--red);
  font-weight: 700;
}

.workspace-empty {
  display: grid;
  gap: 8px;
  min-height: 190px;
  align-content: center;
  color: rgba(255, 255, 255, 0.62);
}

.workspace-empty strong {
  color: white;
  font-size: 22px;
}

.dashboard {
  padding: 24px;
}

.dashboard-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.dashboard .button-ghost,
.vehicle-form .button-ghost {
  color: white;
  border-color: rgba(216, 139, 75, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.vehicle-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(216, 139, 75, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.form-wide {
  grid-column: 1 / -1;
}

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

.admin-list,
.saved-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-row,
.saved-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(216, 139, 75, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.admin-row img,
.saved-row img {
  width: 96px;
  height: 68px;
  object-fit: cover;
}

.row-title {
  margin: 0 0 4px;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
}

.row-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.row-actions .mini-button {
  color: white;
  border-color: rgba(216, 139, 75, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.empty-note {
  margin: 0;
  padding: 18px;
  color: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(216, 139, 75, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.social-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--paper-ink);
  background: var(--gold);
}

.social-band p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

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

.social-links a {
  padding: 9px 13px;
  color: white;
  background: #171717;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr) minmax(300px, 0.8fr);
  gap: 38px;
  padding: 82px clamp(20px, 5vw, 72px);
  background: #0a0a0a;
}

.brand-footer {
  margin-bottom: 22px;
}

.footer p,
.contact-card,
address {
  color: var(--muted);
  font-style: normal;
}

.contact-card h2 {
  font-size: 38px;
}

.contact-card a {
  color: white;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.auth-card input,
.auth-card textarea,
.vehicle-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  color: white;
  background: #151515;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.auth-page,
.panel-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 139, 75, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(216, 139, 75, 0.12), transparent 36%),
    linear-gradient(180deg, #07080a, #17100c 56%, #050506);
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 190px 20px 64px;
}

.auth-brand {
  position: fixed;
  top: 24px;
  left: clamp(20px, 5vw, 72px);
  z-index: 2;
  color: white;
}

.auth-brand .brand-logo,
.panel-header .brand-logo {
  border-radius: 50%;
  border-color: rgba(216, 139, 75, 0.74);
  background: rgba(5, 8, 12, 0.9);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.32),
    0 0 18px rgba(216, 139, 75, 0.24);
}

.auth-card {
  display: grid;
  gap: 14px;
  width: min(100%, 620px);
  padding: clamp(24px, 5vw, 42px);
  color: rgba(255, 255, 255, 0.92);
  border: 3px solid rgba(255, 174, 103, 0.92);
  background: rgba(23, 18, 14, 0.68);
  box-shadow:
    0 0 34px rgba(0, 0, 0, 0.52),
    inset 0 0 38px rgba(255, 178, 93, 0.06);
  backdrop-filter: blur(4px);
}

.auth-card h1 {
  margin: 0 0 10px;
  color: white;
  font-size: clamp(34px, 6vw, 58px);
  text-align: center;
  text-transform: uppercase;
}

.auth-card label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-card input,
.auth-card textarea,
.vehicle-form textarea {
  color: white;
  border-color: rgba(216, 139, 75, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.auth-card a {
  color: var(--amber);
  font-weight: 800;
}

.success-message {
  margin: 0;
  padding: 12px;
  color: #264b2a;
  background: rgba(111, 141, 115, 0.18);
  border: 1px solid rgba(111, 141, 115, 0.35);
  font-weight: 800;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, transparent, rgba(255, 178, 93, 0.14), transparent),
    rgba(5, 6, 8, 0.92);
  border-top: 2px solid rgba(216, 139, 75, 0.7);
  border-bottom: 1px solid rgba(216, 139, 75, 0.48);
  box-shadow: 0 0 28px rgba(216, 139, 75, 0.16);
}

.panel-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
}

.panel-nav a:hover {
  color: white;
}

.panel-shell {
  display: grid;
  gap: 22px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 210px clamp(20px, 5vw, 72px) 82px;
}

.panel-hero {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.panel-hero h1 {
  color: white;
  font-size: clamp(44px, 8vw, 88px);
}

.panel-hero p:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.admin-shortcuts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.admin-shortcuts a {
  padding: 10px 14px;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.34);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-shortcuts a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

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

.stats-grid article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(216, 139, 75, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.stats-grid strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
  text-transform: uppercase;
}

.request-row {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(216, 139, 75, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.request-row-admin {
  gap: 16px;
}

.request-form {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.request-form select,
.request-form textarea {
  border: 1px solid rgba(216, 139, 75, 0.28);
  padding: 10px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.admin-reply {
  padding: 12px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.06);
}

.message-thread {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(216, 139, 75, 0.18);
  background: rgba(0, 0, 0, 0.18);
}

.thread-message {
  width: min(100%, 720px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
}

.thread-message.is-admin {
  justify-self: end;
  border-color: rgba(216, 139, 75, 0.3);
}

.thread-message.is-client {
  justify-self: start;
}

.thread-message strong {
  display: block;
  margin-bottom: 6px;
  color: var(--amber);
  font-size: 12px;
  text-transform: uppercase;
}

.thread-message p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
}

.thread-message span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.thread-reply-form {
  display: grid;
  gap: 12px;
}

.thread-reply-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.thread-reply-form textarea {
  border: 1px solid rgba(216, 139, 75, 0.28);
  padding: 10px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.notification-pill {
  display: inline-flex;
  justify-self: center;
  margin: 18px auto 0;
  padding: 10px 14px;
  color: #141414 !important;
  background: var(--amber);
  font-size: 13px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.account-profile-card {
  scroll-margin-top: 150px;
}

.profile-settings {
  display: grid;
  gap: 24px;
}

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

.account-tab {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(216, 139, 75, 0.36);
  background: rgba(14, 13, 12, 0.74);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 28px rgba(255, 178, 93, 0.03);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.account-tab:hover,
.account-tab.is-active {
  color: white;
  border-color: rgba(255, 174, 103, 0.9);
  background: rgba(216, 139, 75, 0.18);
}

.account-section {
  display: none;
  color: inherit;
  background: rgba(14, 13, 12, 0.7);
}

.account-section.is-active {
  display: block;
}

.avatar-editor {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.account-avatar-preview {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 174, 103, 0.78);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 24px rgba(216, 139, 75, 0.22);
}

.avatar-form {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.avatar-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.avatar-form input[type="file"] {
  width: 100%;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 139, 75, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.password-form {
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 139, 75, 0.26);
}

.password-form h4 {
  margin: 0;
  color: white;
  font-size: 20px;
  text-transform: uppercase;
}

.password-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.password-form input {
  width: 100%;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.facemotors-shell {
  max-width: 1280px;
}

.facemotors-hero {
  max-width: 980px;
}

.facemotors-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.facemotors-side {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 16px;
}

.social-profile-card,
.social-compose,
.social-post {
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: rgba(14, 13, 12, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.social-profile-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 44%),
    radial-gradient(circle at 24% 6%, rgba(216, 139, 75, 0.2), transparent 36%),
    rgba(14, 13, 12, 0.76);
}

.social-profile-card > img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 174, 103, 0.74);
  box-shadow: 0 0 0 4px rgba(216, 139, 75, 0.12), 0 12px 32px rgba(0, 0, 0, 0.32);
}

.social-profile-card > img + h3 {
  margin-top: 2px;
}

.social-profile-card > div {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 100%;
  text-align: center;
}

.social-profile-card strong,
.social-post-head strong,
.social-comment strong {
  color: white;
}

.social-profile-card span,
.social-post-head span,
.social-profile-row small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.social-profile-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 139, 75, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.social-profile-card dl div {
  min-height: 76px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 12px 6px;
  border: 0;
  border-right: 1px solid rgba(216, 139, 75, 0.18);
  background: transparent;
  text-align: center;
}

.social-profile-card dl div:last-child {
  border-right: 0;
}

.social-profile-card dt {
  color: rgba(255, 255, 255, 0.58);
  width: 100%;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.social-profile-card dd {
  margin: 6px 0 0;
  color: white;
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
}

.social-profile-card h3 {
  margin: 0;
  color: white;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.social-profile-list,
.facemotors-feed {
  display: grid;
  gap: 16px;
}

.social-empty-profile {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 430px;
  padding: clamp(28px, 5vw, 58px);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(216, 139, 75, 0.28);
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 139, 75, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 46%),
    rgba(14, 13, 12, 0.72);
  text-align: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.social-empty-profile img {
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
  object-fit: cover;
  border: 2px solid rgba(255, 174, 103, 0.76);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 139, 75, 0.12), 0 16px 38px rgba(0, 0, 0, 0.34);
}

.social-empty-profile h2 {
  margin: 4px 0 8px;
  color: white;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
}

.social-empty-profile p {
  margin: 0;
  max-width: 440px;
  font-weight: 800;
}

.social-empty-profile div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.social-empty-profile span {
  min-width: 108px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 139, 75, 0.24);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-empty-profile span strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: 24px;
  line-height: 1;
}

.social-profile-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  margin: 0;
  border: 1px solid rgba(216, 139, 75, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.social-profile-row img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(216, 139, 75, 0.5);
}

.social-post-head img,
.social-comment img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(216, 139, 75, 0.5);
}

.social-profile-row span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.social-profile-row strong {
  overflow: hidden;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-profile-row form {
  grid-column: 1 / -1;
  margin: 0;
}

.social-profile-row .mini-button {
  width: 100%;
  min-height: 38px;
}

.social-profile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.social-profile-actions .mini-button {
  display: grid;
  place-items: center;
  min-height: 38px;
  text-align: center;
}

.social-profile-actions form {
  grid-column: 1 / -1;
  margin: 0;
}

.social-profile-actions form .mini-button {
  width: 100%;
}

.social-compose {
  padding: 22px;
}

.social-compose form,
.social-edit form {
  display: grid;
  gap: 12px;
}

.social-compose label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.social-compose input,
.social-compose textarea,
.social-edit textarea,
.social-comment-form input {
  width: 100%;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.social-post {
  position: relative;
  overflow: visible;
}

.social-post-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  overflow: visible;
}

.social-post-head div {
  display: grid;
}

.social-post-tools {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.social-post-tools form {
  margin: 0;
}

.social-post-menu {
  position: relative;
}

.social-post-menu > summary {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 139, 75, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  list-style: none;
  transition: color 140ms ease, border-color 140ms ease, background 140ms ease;
}

.social-post-menu > summary::-webkit-details-marker {
  display: none;
}

.social-post-menu > summary span {
  transform: translateY(-3px);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
}

.social-post-menu[open] > summary,
.social-post-menu > summary:hover {
  color: white;
  border-color: rgba(216, 139, 75, 0.6);
  background: rgba(216, 139, 75, 0.12);
}

.social-post-menu-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  gap: 10px;
  width: min(320px, calc(100vw - 36px));
  padding: 12px;
  border: 1px solid rgba(216, 139, 75, 0.36);
  background: rgba(6, 6, 6, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.44);
}

.social-post-menu-panel::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 13px;
  width: 11px;
  height: 11px;
  border-top: 1px solid rgba(216, 139, 75, 0.36);
  border-left: 1px solid rgba(216, 139, 75, 0.36);
  background: rgba(6, 6, 6, 0.96);
  transform: rotate(45deg);
}

.social-post-image {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  background: #050505;
}

.social-caption {
  margin: 0;
  padding: 16px 16px 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.social-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.social-actions form {
  margin: 0;
}

.like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 58px;
  height: 38px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 139, 75, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: color 140ms ease, border-color 140ms ease, transform 140ms ease, background 140ms ease;
}

.like-button:hover,
.like-button.is-active {
  color: #ff5470;
  border-color: rgba(255, 84, 112, 0.56);
  background: radial-gradient(circle at 36% 35%, rgba(255, 84, 112, 0.22), rgba(255, 84, 112, 0.08));
  box-shadow: 0 0 20px rgba(255, 84, 112, 0.12);
}

.like-button.is-active,
.like-button.like-pop {
  animation: likePulse 260ms ease-out;
}

.like-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.like-heart {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
}

.like-button [data-like-count] {
  display: grid;
  place-items: center;
  min-width: 12px;
  line-height: 1;
  transform: translateY(1px);
}

@keyframes likePulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.16);
  }
  100% {
    transform: scale(1);
  }
}

.comment-lock {
  color: var(--amber);
  font-size: 11px;
  text-transform: uppercase;
}

.mini-button.is-active {
  color: #141414;
  border-color: var(--amber);
  background: var(--amber);
}

.verified-badge {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-left: 5px;
  color: #111;
  background: linear-gradient(135deg, #ffcf74, #d88b4b);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
  box-shadow: 0 0 12px rgba(255, 178, 93, 0.42);
}

.social-edit {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(216, 139, 75, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.social-edit summary {
  cursor: pointer;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  list-style: none;
}

.social-edit summary::-webkit-details-marker {
  display: none;
}

.social-post-menu-panel form {
  margin: 0;
}

.social-menu-danger {
  width: 100%;
  min-height: 38px;
  color: #ff9b9b;
  border: 1px solid rgba(255, 95, 95, 0.38);
  background: rgba(255, 74, 74, 0.08);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.social-menu-danger:hover {
  color: white;
  border-color: rgba(255, 95, 95, 0.68);
  background: rgba(255, 74, 74, 0.16);
}

.social-comments {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
}

.social-comment {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.social-comment img {
  width: 36px;
  height: 36px;
}

.social-comment p {
  margin: 0;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
}

.social-comment form {
  margin: 0;
}

.social-comment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 4px;
}

.maintenance-control {
  border-color: rgba(255, 174, 103, 0.42);
}

.maintenance-toggle-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  gap: 12px;
  margin: 0;
}

.maintenance-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.maintenance-switch input {
  width: 18px;
  height: 18px;
  accent-color: var(--amber);
}

.maintenance-page {
  min-height: 100vh;
  color: white;
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 139, 75, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(33, 19, 13, 0.82), rgba(4, 4, 4, 0.96)),
    #050505;
}

.maintenance-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.maintenance-card {
  display: grid;
  justify-items: center;
  width: min(100%, 620px);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(216, 139, 75, 0.42);
  background: rgba(10, 10, 10, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  text-align: center;
}

.maintenance-card img {
  width: 132px;
  height: 132px;
  margin-bottom: 18px;
  object-fit: contain;
}

.maintenance-card h1 {
  margin: 0 0 14px;
  color: white;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.9;
}

.maintenance-card p:not(.eyebrow) {
  max-width: 460px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 800;
}

.closed-thread-note {
  margin: 0;
  padding: 12px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 77, 77, 0.24);
  background: rgba(255, 77, 77, 0.08);
  font-weight: 800;
}

.request-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.catalogue-page {
  background: var(--charcoal);
}

.catalogue-hero {
  padding: 190px clamp(20px, 5vw, 72px) 70px;
  color: white;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 139, 75, 0.26), transparent 28%),
    linear-gradient(180deg, #08090b, #15100d);
  border-bottom: 1px solid rgba(216, 139, 75, 0.42);
  text-align: center;
}

.catalogue-hero h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 96px);
}

.catalogue-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.catalogue-section {
  padding-top: 64px;
}

.vehicle-detail-shell {
  padding: 190px clamp(20px, 5vw, 72px) 72px;
}

.vehicle-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 28px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.vehicle-detail-image {
  width: 100%;
  min-height: 420px;
  height: auto;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(216, 139, 75, 0.34);
}

.vehicle-gallery {
  position: sticky;
  top: 118px;
  height: calc(100vh - 138px);
  max-height: calc(100vh - 138px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  align-content: stretch;
}

.vehicle-main-frame {
  position: relative;
  min-height: 0;
  display: grid;
}

.vehicle-gallery .vehicle-detail-image {
  aspect-ratio: 1.35;
  min-height: 0;
  height: 100%;
  max-height: none;
}

.vehicle-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.vehicle-gallery-arrow:hover {
  border-color: rgba(255, 174, 103, 0.82);
  background: rgba(216, 139, 75, 0.24);
  transform: translateY(-50%) scale(1.04);
}

.vehicle-gallery-prev {
  left: 14px;
}

.vehicle-gallery-next {
  right: 14px;
}

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

.vehicle-thumb-button {
  display: block;
  padding: 0;
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: #050505;
  cursor: pointer;
}

.vehicle-thumb-button.is-active {
  border-color: rgba(255, 174, 103, 0.9);
  box-shadow: 0 0 18px rgba(216, 139, 75, 0.22);
}

.vehicle-thumbs img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: contain;
  border: 0;
  background: transparent;
}

.vehicle-detail-content {
  display: grid;
  gap: 16px;
}

.vehicle-detail-content h1 {
  color: white;
  font-size: clamp(42px, 6vw, 74px);
}

.vehicle-description {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.spec-panel {
  padding: 18px;
  border: 1px solid rgba(216, 139, 75, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.spec-panel h2 {
  margin-bottom: 14px;
  color: var(--amber);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.spec-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.spec-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.spec-panel dt {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 800;
}

.spec-panel dd {
  margin: 0;
  color: white;
  font-weight: 900;
  text-align: right;
}

.price-panel p,
.price-panel strong {
  display: block;
  margin: 0 0 8px;
  color: white;
  font-size: 18px;
}

.vehicle-status-line {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.tax-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.user-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(216, 139, 75, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.inline-admin-form {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
}

.inline-admin-form input,
.inline-admin-form select {
  min-height: 38px;
  border: 1px solid rgba(216, 139, 75, 0.28);
  padding: 8px 10px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.moderation-user-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 0.9fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(216, 139, 75, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.moderation-actions {
  display: grid;
  gap: 8px;
}

.moderation-actions form {
  margin: 0;
}

.moderation-ban-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.moderation-pill {
  display: inline-grid;
  place-items: center;
  margin-left: 8px;
  padding: 4px 7px;
  color: #141414;
  background: var(--amber);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  vertical-align: middle;
}

.moderation-pill.is-danger {
  color: white;
  background: var(--red);
}

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

.moderation-ip-grid article {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(216, 139, 75, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.moderation-ip-grid strong,
.moderation-log-table strong {
  color: white;
}

.moderation-ip-grid span,
.moderation-ip-grid small,
.moderation-log-table span,
.moderation-log-table small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.moderation-log-table {
  display: grid;
  gap: 8px;
}

.moderation-log-table article {
  display: grid;
  grid-template-columns: 150px 120px 64px minmax(180px, 1fr) minmax(180px, 0.85fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(216, 139, 75, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.moderation-log-table small {
  grid-column: 1 / -1;
  overflow-wrap: anywhere;
}

.announcement-shell {
  padding: 190px clamp(20px, 5vw, 72px) 80px;
}

.announcement-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: rgba(14, 13, 12, 0.76);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.announcement-detail > img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(216, 139, 75, 0.24);
}

.announcement-body {
  display: grid;
  align-content: center;
  gap: 14px;
}

.announcement-body h1 {
  margin: 0;
  color: white;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.92;
  text-transform: uppercase;
}

.announcement-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  white-space: normal;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #928b81;
  background: #050505;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .vehicle-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .moderation-log-table article {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-form {
    grid-column: 1 / -1;
  }
}

@media (max-height: 820px) and (min-width: 821px) {
  .hero {
    align-items: start;
    padding-top: 170px;
    padding-bottom: 260px;
  }

  .hero:has(.home-center) {
    padding-top: 150px;
    padding-bottom: 270px;
  }

  .hero:has(.home-live-strip) {
    padding-bottom: 380px;
  }

  .hero-content {
    align-self: start;
  }

  .welcome-box {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .welcome-box h1 {
    margin-bottom: 12px;
  }

  .welcome-box p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.08;
  }

  .welcome-actions {
    margin-top: 14px;
  }

  .home-bottom {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .home-live-strip {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
    margin-top: 16px;
  }

  .home-live-panel {
    padding: 12px;
  }

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

  .home-live-heading h2 {
    font-size: 16px;
  }

  .home-center {
    grid-template-columns: minmax(340px, 0.95fr) minmax(300px, 0.7fr);
    gap: 22px;
  }

  .home-promo-beacon {
    top: 152px;
  }

  .hero:has(.home-promo-beacon) .home-center {
    margin-top: 44px;
  }

  .home-intro h1 {
    font-size: clamp(54px, 7vw, 86px);
  }

  .home-intro p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.35;
  }

  .home-intro-meta {
    margin-top: 16px;
  }

  .home-showcase {
    min-height: 330px;
    padding: 14px;
  }

  .home-showcase-head {
    top: 28px;
    left: 34px;
    right: 34px;
  }

  .home-slides,
  .home-slide {
    inset: 28px 34px 44px;
  }

  .home-slide div {
    padding: 70px 18px 50px;
  }

  .home-slide h2 {
    font-size: clamp(21px, 2.3vw, 30px);
  }

  .home-slider-dots {
    right: 44px;
    bottom: 52px;
  }

  .home-arrivals {
    grid-template-columns: 1fr;
  }

  .home-arrivals-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 139, 75, 0.2);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 82px;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .site-header .brand {
    position: relative;
    top: auto;
    left: auto;
    display: inline-flex;
    transform: none;
  }

  .site-header .brand-logo {
    width: 62px;
    height: 62px;
    border-width: 2px;
    box-shadow:
      0 0 0 3px rgba(216, 139, 75, 0.78),
      0 10px 26px rgba(0, 0, 0, 0.5);
  }

  .site-header .brand-text {
    display: inline;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 21;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    max-width: none;
    gap: 0;
    padding: 86px 24px 24px;
    background: rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-105%);
    transition: transform 200ms ease;
  }

  .nav-group {
    display: contents;
  }

  .nav-spacer {
    display: none;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }

  .nav-avatar-button {
    justify-self: start;
    margin: 16px 0 0;
  }

  .profile-menu {
    position: static;
    min-width: 0;
    margin: 12px 0 4px;
    transform: none;
  }

  .profile-menu::before {
    display: none;
  }

  .site-nav a:not(.nav-search)::after,
  .nav-search::before,
  .nav-search::after {
    display: none;
  }

  .nav-search {
    width: auto;
    height: auto;
    display: block;
  }

  .nav-search .sr-only {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .toast-stack {
    top: 14px;
    left: 14px;
    right: auto;
    bottom: auto;
  }

  .hero {
    min-height: auto;
    padding: 128px 20px 0;
    overflow: visible;
  }

  .hero-slideshow,
  .hero-image,
  .hero-overlay {
    position: fixed;
  }

  .hero-content {
    width: min(100%, 620px);
  }

  .welcome-box {
    border-width: 2px;
  }

  .catalogue-hero {
    padding-top: 128px;
  }

  .vehicle-detail-shell {
    padding-top: 128px;
  }

  .vehicle-detail,
  .request-form {
    grid-template-columns: 1fr;
  }

  .vehicle-gallery {
    position: static;
    height: auto;
    max-height: none;
  }

  .vehicle-gallery .vehicle-detail-image {
    height: auto;
    max-height: none;
  }

  .facemotors-layout {
    grid-template-columns: 1fr;
  }

  .facemotors-side {
    position: static;
  }

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

  .auth-shell {
    padding-top: 128px;
  }

  .panel-shell {
    padding-top: 128px;
  }

  .home-bottom {
    position: relative;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 34px -20px 0;
    padding-bottom: 18px;
  }

  .hero:has(.home-live-strip) {
    padding-bottom: 0;
  }

  .hero:has(.home-center) {
    padding-bottom: 0;
  }

  .home-center {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-promo-beacon {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 26px;
    transform: none;
  }

  .hero:has(.home-promo-beacon) .home-center {
    margin-top: 0;
  }

  .home-intro {
    justify-items: center;
    text-align: center;
  }

  .home-intro h1 {
    font-size: clamp(48px, 14vw, 82px);
  }

  .home-intro .welcome-actions {
    justify-content: center;
  }

  .home-intro-meta {
    justify-content: center;
  }

  .home-showcase {
    min-height: 360px;
    padding: 14px;
  }

  .home-showcase-head {
    top: 28px;
    left: 32px;
    right: 32px;
  }

  .home-showcase-head strong {
    max-width: 48%;
  }

  .home-showcase-head > span {
    max-width: 48%;
  }

  .home-slides,
  .home-slide {
    inset: 28px 32px 44px;
  }

  .home-slide div {
    padding: 74px 16px 50px;
  }

  .home-slide h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .home-slider-dots {
    right: 42px;
    bottom: 52px;
  }

  .home-arrivals {
    grid-template-columns: 1fr;
  }

  .home-arrivals-heading {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 139, 75, 0.2);
  }

  .home-arrivals-grid {
    grid-template-columns: 1fr;
  }

  .announcement-shell {
    padding-top: 128px;
  }

  .announcement-detail {
    grid-template-columns: 1fr;
  }

  .home-live-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .home-live-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .section-heading,
  .showcase,
  .split,
  .facemotors-home,
  .social-band,
  .site-footer-grid,
  .account-layout,
  .stats-grid,
  .footer,
  .copyright {
    display: grid;
    grid-template-columns: 1fr;
  }

  .facemotors-home-panel {
    grid-template-columns: 1fr;
  }

  .mock-post-large {
    min-height: 260px;
  }

  .panel-header {
    display: grid;
  }

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

  .admin-row,
  .saved-row,
  .user-row,
  .moderation-user-row,
  .avatar-editor {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .avatar-editor > form:last-child {
    grid-column: 1 / -1;
  }

  .user-row {
    grid-template-columns: 1fr;
  }

  .moderation-user-row,
  .moderation-ban-form {
    grid-template-columns: 1fr;
  }

  .row-actions {
    grid-column: 1 / -1;
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 13px;
  }

  .avatar-editor {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .account-tabs {
    grid-template-columns: 1fr;
  }

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

  .section,
  .showcase,
  .footer {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .welcome-actions .button,
  .facemotors-home-actions .button {
    width: 100%;
  }

  .welcome-box p {
    font-size: 14px;
  }

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

  .dashboard-top,
  .admin-row,
  .saved-row,
  .user-row,
  .moderation-log-table article,
  .social-post-head,
  .social-comment,
  .social-comment-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .moderation-ip-grid {
    grid-template-columns: 1fr;
  }

  .social-profile-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .social-profile-row .mini-button {
    grid-column: 1 / -1;
  }

  .inline-admin-form {
    display: grid;
  }

  .admin-row img,
  .saved-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.8;
  }
}
