: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: none;
  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-start;
}

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

.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;
}

.facemotors-menu-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  vertical-align: -3px;
  border: 1px solid rgba(255, 190, 112, 0.7);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 190, 112, 0.95) 0 2px, transparent 3px),
    rgba(216, 139, 75, 0.08);
  box-shadow: 0 0 14px rgba(216, 139, 75, 0.22);
}

.facemotors-menu-icon::before,
.facemotors-menu-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(255, 190, 112, 0.34);
}

.facemotors-menu-icon::before {
  top: 3px;
  left: 2px;
}

.facemotors-menu-icon::after {
  right: 2px;
  bottom: 3px;
}

.nav-social-link:hover .facemotors-menu-icon {
  border-color: rgba(255, 220, 160, 0.95);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 220, 160, 1) 0 2px, transparent 3px),
    rgba(216, 139, 75, 0.18);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-main-menu {
  position: relative;
  z-index: 30;
}

.nav-main-menu[open] {
  z-index: 35;
}

.nav-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 16px;
  cursor: pointer;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 139, 75, 0.58);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.24);
  box-shadow: 0 0 18px rgba(216, 139, 75, 0.16);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.nav-menu-button:hover {
  color: white;
  border-color: rgba(255, 190, 112, 0.88);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.22), rgba(255, 255, 255, 0.055)),
    rgba(0, 0, 0, 0.34);
  transform: translateY(-1px);
}

.nav-menu-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.nav-menu-icon i {
  display: block;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(255, 178, 93, 0.34);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-main-menu[open] .nav-menu-icon i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-main-menu[open] .nav-menu-icon i:nth-child(2) {
  opacity: 0;
}

.nav-main-menu[open] .nav-menu-icon i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-main-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  z-index: 80;
  align-content: start;
  width: min(390px, calc(100vw - 24px));
  height: 100svh;
  min-width: 0;
  padding: 108px 18px 24px 28px;
  overflow-y: auto;
  border-top: 0;
  border-left: 0;
  border-bottom: 0;
  background:
    radial-gradient(circle at 0 0, rgba(216, 139, 75, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(14, 10, 8, 0.98), rgba(4, 4, 4, 0.99));
  box-shadow: 28px 0 70px rgba(0, 0, 0, 0.62);
  transform-origin: left center;
}

.nav-main-panel::before {
  display: none;
}

.nav-main-panel::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
}

.nav-main-menu[open] .nav-main-panel::after {
  opacity: 1;
  animation: navOverlayIn 180ms ease both;
}

.nav-main-menu.is-closing .nav-main-panel::after {
  animation: navOverlayOut 150ms ease both;
}

.nav-main-menu[open] .nav-main-panel {
  animation: sideMenuIn 260ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.nav-main-menu.is-closing .nav-main-panel {
  animation: sideMenuOut 190ms ease both;
}

.nav-main-panel a,
.nav-main-panel .profile-divider,
.nav-main-panel .profile-menu-user {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-main-panel .profile-menu-user,
.nav-main-panel a {
  display: block !important;
  width: 100%;
  visibility: visible;
}

.nav-main-panel a {
  padding: 13px 12px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(216, 139, 75, 0.12);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-main-panel a:hover {
  color: white;
  background: rgba(216, 139, 75, 0.14);
}

.nav-main-menu[open] .nav-main-panel .profile-menu-user {
  animation: sideMenuItemIn 260ms ease 80ms both;
}

.nav-main-menu[open] .nav-main-panel a:nth-of-type(1) { animation: sideMenuItemIn 240ms ease 120ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(2) { animation: sideMenuItemIn 240ms ease 155ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(3) { animation: sideMenuItemIn 240ms ease 190ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(4) { animation: sideMenuItemIn 240ms ease 225ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(5) { animation: sideMenuItemIn 240ms ease 260ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(6) { animation: sideMenuItemIn 240ms ease 295ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(7) { animation: sideMenuItemIn 240ms ease 330ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(8) { animation: sideMenuItemIn 240ms ease 365ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(9) { animation: sideMenuItemIn 240ms ease 400ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(10) { animation: sideMenuItemIn 240ms ease 435ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(11) { animation: sideMenuItemIn 240ms ease 470ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(12) { animation: sideMenuItemIn 240ms ease 505ms both; }
.nav-main-menu[open] .nav-main-panel a:nth-of-type(n+13) { animation: sideMenuItemIn 240ms ease 540ms both; }
.nav-main-menu[open] .nav-main-panel .profile-divider {
  animation: sideMenuItemIn 240ms ease 345ms both;
}

.nav-main-menu[open] .veyna-side-drawer .nav-drawer-section:nth-of-type(2) a:nth-of-type(1) { animation-delay: 435ms; }
.nav-main-menu[open] .veyna-side-drawer .nav-drawer-section:nth-of-type(2) a:nth-of-type(2) { animation-delay: 470ms; }
.nav-main-menu[open] .veyna-side-drawer .nav-drawer-section:nth-of-type(2) a:nth-of-type(3) { animation-delay: 505ms; }
.nav-main-menu[open] .veyna-side-drawer .nav-drawer-section:nth-of-type(2) a:nth-of-type(4) { animation-delay: 540ms; }
.nav-main-menu[open] .veyna-side-drawer .nav-drawer-section:nth-of-type(3) a:nth-of-type(1) { animation-delay: 575ms; }
.nav-main-menu[open] .veyna-side-drawer .nav-drawer-foot a:nth-of-type(1) { animation-delay: 610ms; }

@keyframes sideMenuIn {
  from {
    opacity: 0;
    transform: translate3d(-104%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes sideMenuOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-104%, 0, 0);
  }
}

@keyframes sideMenuItemIn {
  from {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes navOverlayIn {
  to {
    opacity: 1;
  }
}

@keyframes navOverlayOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.nav-profile,
.nav-notifications,
.nav-search-toggle {
  position: relative;
}

.nav-profile[open],
.nav-notifications[open],
.nav-search-toggle[open] {
  z-index: 30;
}

.nav-profile[open]::after,
.nav-notifications[open]::after {
  display: none;
  content: none;
}

.nav-profile.is-closing::after {
  display: none;
  content: none;
}

@keyframes navArrowIn {
  from {
    opacity: 0;
    transform: translateY(-5px) rotate(45deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
  }
}

@keyframes navArrowOut {
  from {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
  }

  to {
    opacity: 0;
    transform: translateY(-5px) rotate(45deg);
  }
}

.nav-avatar-button,
.nav-icon-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,
.nav-icon-button::-webkit-details-marker {
  display: none;
}

.nav-icon-button {
  color: white;
  font-size: 18px;
  background: rgba(216, 139, 75, 0.08);
}

.nav-icon-button:hover,
.nav-avatar-button:hover {
  border-color: rgba(255, 190, 112, 0.95);
  box-shadow: 0 0 24px rgba(216, 139, 75, 0.28);
}

.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);
}

.notification-badge {
  right: -7px;
  top: -5px;
  bottom: auto;
  background: #ffcf6d;
}

.avatar-badge.is-hidden {
  display: none;
}

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

.account-menu {
  width: min(320px, calc(100vw - 28px));
  max-height: min(690px, calc(100vh - 132px));
  overflow: auto;
  padding: 10px;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

.notification-menu {
  width: min(320px, calc(100vw - 28px));
}

.nav-search-menu {
  width: min(280px, calc(100vw - 28px));
  padding: 12px;
}

.nav-search-menu form {
  display: flex;
  gap: 8px;
}

.nav-search-menu input {
  flex: 1 1 auto;
  min-height: 40px;
  padding: 0 12px;
  color: #f7f3ea;
  border: 1px solid rgba(247, 243, 234, 0.14);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.28);
}

.nav-search-menu button {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 9px;
  color: #15100a;
  background: linear-gradient(180deg, #e0b96f, #bd8540);
  cursor: pointer;
}

.nav-search-menu button svg {
  width: 16px;
  height: 16px;
}

[data-nav-menu][open]:not(.nav-main-menu) .profile-menu {
  animation: navMenuIn 180ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

[data-nav-menu].is-closing:not(.nav-main-menu) .profile-menu {
  animation: navMenuOut 150ms ease both;
}

@keyframes navMenuIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes navMenuOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
}

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

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

.profile-menu-user {
  display: grid;
  gap: 3px;
  padding: 12px;
  margin-bottom: 4px;
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: rgba(216, 139, 75, 0.08);
}

.profile-menu-user strong {
  color: white;
  font-size: 14px;
}

.profile-menu-user span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.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);
}

.account-menu .profile-menu-user {
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 12px;
  margin-bottom: 6px;
  border-color: rgba(216, 139, 75, 0.28);
  background: rgba(216, 139, 75, 0.08);
}

.account-menu .profile-menu-user strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
}

.account-menu .profile-menu-user span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.profile-menu-section {
  border-top: 1px solid rgba(216, 139, 75, 0.14);
}

.profile-menu-section:first-of-type {
  border-top: 0;
}

.profile-menu-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 4px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  list-style: none;
  transition: color 0.16s ease;
}

.profile-menu-section summary::-webkit-details-marker {
  display: none;
}

.profile-menu-section summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--amber);
  border: 1px solid rgba(216, 139, 75, 0.22);
  background: rgba(255, 255, 255, 0.035);
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.18s ease, background 0.18s ease;
}

.profile-menu-section[open] summary::after {
  content: "-";
  background: rgba(216, 139, 75, 0.13);
}

.profile-menu-section summary:hover {
  color: white;
}

.profile-menu-section summary span {
  color: white;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.profile-menu-section summary small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-menu-links {
  display: grid;
  gap: 3px;
  padding: 0 0 10px;
}

.account-menu .profile-menu-links a,
.profile-menu-session a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.70);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: 0;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.account-menu .profile-menu-links a span,
.profile-menu-session a span {
  display: grid;
  place-items: center;
  width: 20px;
  opacity: 0.82;
  font-size: 12px;
}

.account-menu .profile-menu-links a:hover,
.profile-menu-session a:hover {
  color: white;
  border-color: rgba(216, 139, 75, 0.24);
  background: rgba(216, 139, 75, 0.11);
  transform: translateX(2px);
}

.profile-menu-session {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(216, 139, 75, 0.22);
}

.profile-menu-section[open] .profile-menu-links {
  animation: profileSectionIn 180ms ease both;
}

@keyframes profileSectionIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-menu.nav-main-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  z-index: 80;
  display: grid;
  align-content: start;
  width: min(390px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  height: 100svh;
  min-width: 0;
  padding: 108px 18px 24px 28px;
  margin: 0;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.86);
  border-top: 0;
  border-left: 0;
  border-bottom: 0;
  background:
    radial-gradient(circle at 0 0, rgba(216, 139, 75, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(14, 10, 8, 0.98), rgba(4, 4, 4, 0.99));
  box-shadow: 28px 0 70px rgba(0, 0, 0, 0.62);
  text-transform: none;
  text-shadow: none;
  transform-origin: left center;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.profile-menu.nav-main-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.profile-menu.nav-main-panel::before {
  display: none;
}

.profile-menu.nav-main-panel::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
}

.nav-main-menu[open] .profile-menu.nav-main-panel {
  animation: sideMenuIn 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav-main-menu.is-closing .profile-menu.nav-main-panel {
  animation: sideMenuOut 220ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.nav-main-menu[open] .profile-menu.nav-main-panel::after {
  opacity: 1;
  animation: navOverlayIn 180ms ease both;
}

.nav-main-menu.is-closing .profile-menu.nav-main-panel::after {
  animation: navOverlayOut 150ms ease both;
}

.profile-menu.nav-main-panel .profile-menu-user,
.profile-menu.nav-main-panel a,
.profile-menu.nav-main-panel .profile-divider {
  opacity: 1;
  transform: translateX(0);
}

.profile-menu.nav-main-panel .profile-menu-user,
.profile-menu.nav-main-panel a {
  display: block;
  width: 100%;
  visibility: visible;
}

.profile-menu.nav-main-panel a {
  padding: 13px 12px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(216, 139, 75, 0.12);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.nav-main-menu[open] .profile-menu.nav-main-panel .profile-menu-user {
  animation: sideMenuItemIn 260ms ease 80ms both;
}

.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(1) { animation: sideMenuItemIn 240ms ease 120ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(2) { animation: sideMenuItemIn 240ms ease 155ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(3) { animation: sideMenuItemIn 240ms ease 190ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(4) { animation: sideMenuItemIn 240ms ease 225ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(5) { animation: sideMenuItemIn 240ms ease 260ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(6) { animation: sideMenuItemIn 240ms ease 295ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(7) { animation: sideMenuItemIn 240ms ease 330ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(8) { animation: sideMenuItemIn 240ms ease 365ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(9) { animation: sideMenuItemIn 240ms ease 400ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(10) { animation: sideMenuItemIn 240ms ease 435ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(11) { animation: sideMenuItemIn 240ms ease 470ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(12) { animation: sideMenuItemIn 240ms ease 505ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel a:nth-of-type(n+13) { animation: sideMenuItemIn 240ms ease 540ms both; }
.nav-main-menu[open] .profile-menu.nav-main-panel .profile-divider {
  animation: sideMenuItemIn 240ms ease 345ms both;
}

.profile-notifications {
  display: grid;
  gap: 8px;
  padding: 0;
  margin-bottom: 0;
  border: 1px solid rgba(216, 139, 75, 0.26);
  background: linear-gradient(145deg, rgba(216, 139, 75, 0.1), rgba(255, 255, 255, 0.025));
}

.profile-notifications-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid rgba(216, 139, 75, 0.24);
}

.profile-notifications-head strong {
  color: white;
  font-size: 13px;
}

.profile-notifications-head button {
  padding: 0;
  color: var(--amber);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-notification-list {
  display: grid;
  gap: 6px;
  max-height: 285px;
  padding: 10px;
  overflow: auto;
}

.profile-menu .profile-notification {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 11px;
  border: 1px solid rgba(255, 178, 93, 0.16);
  background: rgba(216, 139, 75, 0.1);
  white-space: normal;
}

.profile-notification.is-read {
  opacity: 0.7;
  background: rgba(255, 255, 255, 0.035);
}

.profile-notification:not(.is-read) {
  padding-left: 18px;
  border-color: rgba(255, 190, 112, 0.36);
  box-shadow: inset 3px 0 0 rgba(255, 190, 112, 0.9);
}

.profile-notification:not(.is-read)::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffcf6d;
  box-shadow: 0 0 12px rgba(255, 207, 109, 0.7);
}

.profile-notification strong {
  color: white;
  font-size: 12px;
}

.profile-notification span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.35;
}

.notification-all-link {
  display: block;
  margin: 0 10px 10px;
  padding: 10px 12px;
  color: var(--amber);
  border: 1px solid rgba(216, 139, 75, 0.26);
  background: rgba(0, 0, 0, 0.24);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.notification-page-list {
  display: grid;
  gap: 12px;
}

.notification-page-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(216, 139, 75, 0.25);
  background: rgba(255, 255, 255, 0.035);
}

.notification-page-item.is-unread {
  border-color: rgba(255, 190, 112, 0.58);
  background:
    linear-gradient(90deg, rgba(216, 139, 75, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.2);
  box-shadow: inset 4px 0 0 rgba(255, 190, 112, 0.9);
}

.notification-page-item h3 {
  margin: 5px 0;
  color: white;
  font-size: clamp(18px, 2vw, 24px);
}

.notification-page-item p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.notification-page-item small,
.notification-type,
.notification-state span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.notification-type {
  color: var(--amber);
}

.notification-state {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.permission-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.permission-checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 139, 75, 0.25);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.toast-stack {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: auto;
  top: auto;
  z-index: 240;
  display: grid;
  justify-items: end;
  gap: 10px;
  width: min(390px, calc(100vw - 32px));
  pointer-events: none;
}

body:has(.assistant-widget) .toast-stack {
  bottom: max(102px, calc(env(safe-area-inset-bottom) + 102px));
}

.toast {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 13px 16px;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(9, 8, 7, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
  pointer-events: auto;
  animation: toastIn 260ms cubic-bezier(0.19, 1, 0.22, 1) both, toastOut 360ms ease-in 4.8s forwards;
  backdrop-filter: blur(10px);
}

.toast-success {
  border-color: rgba(66, 255, 123, 0.42);
  box-shadow:
    inset 3px 0 0 rgba(66, 255, 123, 0.76),
    0 18px 48px rgba(0, 0, 0, 0.48);
}

.toast-error {
  border-color: rgba(255, 77, 77, 0.42);
  box-shadow:
    inset 3px 0 0 rgba(255, 77, 77, 0.82),
    0 18px 48px rgba(0, 0, 0, 0.48);
}

.toast.is-dismissed {
  animation: toastOut 220ms ease-in forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translate(18px, 10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translate(18px, 10px) scale(0.98);
    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% {
    opacity: 0;
  }

  10%,
  68% {
    opacity: 1;
  }

  82%,
  100% {
    opacity: 0;
  }
}

@keyframes heroFadeFirst {
  0%,
  68% {
    opacity: 1;
  }

  82%,
  100% {
    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: 12px;
  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: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: block;
  color: white;
  overflow: hidden;
  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 {
  position: absolute;
  top: 18px;
  right: -38px;
  display: grid;
  place-items: center;
  min-width: 148px;
  min-height: 27px;
  padding: 7px 18px;
  color: #16100a;
  border: 0;
  background: linear-gradient(135deg, #f2be6c, #d89543);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
  font-size: 10px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(38deg);
  transform-origin: center;
}

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

.home-showcase-head > span {
  position: absolute;
  top: 14px;
  left: 14px;
  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: 15px;
}

.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: 86px clamp(22px, 3.4vw, 32px) 54px;
}

.home-slide h2 {
  display: -webkit-box;
  max-width: min(420px, 100%);
  margin: 8px 0 8px;
  overflow: hidden;
  color: white;
  font-size: clamp(24px, 2.75vw, 40px);
  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(420px, 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: 28px;
  bottom: 28px;
  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-contests {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(255, 198, 80, 0.38);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 198, 80, 0.18), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(255, 66, 150, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(15, 10, 12, 0.92), rgba(8, 8, 10, 0.82));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48), 0 0 34px rgba(255, 198, 80, 0.1);
  overflow: hidden;
}

.home-contests::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -20%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: rotate(14deg);
  pointer-events: none;
  animation: contestShine 4.6s ease-in-out infinite;
}

.home-contests::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffcf6d);
  box-shadow: 0 0 18px rgba(255, 207, 109, 0.42);
}

.home-contests-heading {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}

.home-contests-heading span {
  color: #fff;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 198, 80, 0.45);
}

.home-contests-heading strong {
  color: #ffcf6d;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.home-contest-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  min-width: 0;
  min-height: clamp(310px, 36vw, 430px);
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 230, 109, 0.28);
  background: #050505;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-contest-card:hover {
  border-color: rgba(255, 230, 109, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 36px rgba(255, 198, 80, 0.16);
  transform: translateY(-2px);
}

.home-contest-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.02);
  transition: transform 420ms ease, opacity 220ms ease;
}

.home-contest-card:hover img {
  opacity: 0.9;
  transform: scale(1.055);
}

.home-contest-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34) 55%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 58%);
}

.home-contest-content {
  display: grid;
  gap: 18px;
  width: min(720px, 100%);
  padding: clamp(24px, 4vw, 48px);
}

.home-contest-content .eyebrow {
  color: #ffcf6d;
}

.home-contest-content h2 {
  max-width: 780px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}

.home-contest-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-contest-stats span {
  display: grid;
  gap: 4px;
  min-width: 148px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 230, 109, 0.28);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.home-contest-stats small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-contest-stats strong {
  color: white;
  font-size: 17px;
  font-weight: 900;
}

.home-contest-content em {
  justify-self: start;
  padding-bottom: 6px;
  color: #ffcf6d;
  border-bottom: 1px solid currentColor;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes contestShine {
  0%,
  40% {
    transform: translateX(-90%) rotate(14deg);
  }

  100% {
    transform: translateX(360%) rotate(14deg);
  }
}

.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,
.partner-strip a {
  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 img {
  max-width: 92px;
  max-height: 42px;
  object-fit: contain;
}

.partner-admin-logo {
  width: 96px;
  max-height: 52px;
  object-fit: contain;
  margin-top: 8px;
  border: 1px solid rgba(216, 139, 75, 0.24);
  background: rgba(0, 0, 0, 0.2);
}

/*.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;
  gap: 8px;
  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);
}

.button.is-danger {
  color: #ff9c9c;
  border-color: rgba(217, 69, 91, 0.45);
  background: rgba(217, 69, 91, 0.1);
}

.button.is-danger:hover {
  border-color: rgba(217, 69, 91, 0.75);
  background: rgba(217, 69, 91, 0.16);
}

.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;
  width: min(100%, 1720px);
  margin-inline: auto;
}

.vehicle-card,
.service-grid article {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(15, 13, 12, 0.9);
  border: 1px solid rgba(216, 139, 75, 0.2);
  box-shadow: none;
}

.catalogue-card {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.catalogue-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 190, 112, 0.68);
  box-shadow: none;
}

.vehicle-media-link,
.vehicle-content-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.vehicle-content-wrap {
  position: relative;
}

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

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

.vehicle-card.is-reserved img {
  filter: saturate(0.82) brightness(0.72);
}

.vehicle-state-ribbon {
  position: absolute;
  top: 18px;
  left: -38px;
  z-index: 3;
  min-width: 158px;
  padding: 8px 18px;
  color: #111;
  background: linear-gradient(135deg, #ffd37a, #e0a12f);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  font-size: 11px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-38deg);
}

.vehicle-state-ribbon.is-reserved {
  background: linear-gradient(135deg, #ffe19b, #e0a12f);
}

.vehicle-state-ribbon.is-sold {
  color: white;
  background: linear-gradient(135deg, #ff5a5a, #9f1414);
}

.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;
  background:
    radial-gradient(circle at 50% 0, rgba(216, 139, 75, 0.12), transparent 46%),
    #050505;
}

.vehicle-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.promo-ribbon {
  position: absolute;
  top: 16px;
  right: -34px;
  left: auto;
  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;
}

.vehicle-badges {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.editorial-badge,
.new-tag,
.consignment-tag,
.tax-covered-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.editorial-badge-coup_de_coeur {
  color: #3a0a1c;
  background: linear-gradient(135deg, #ff9fc0, #e0517f);
}

.editorial-badge-bonne_affaire {
  color: #062615;
  background: linear-gradient(135deg, #8ee6b0, #33a765);
}

.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;
}

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

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

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

.vehicle-content {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
}

.catalogue-views-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 700;
}

.catalogue-views-badge svg {
  width: 14px;
  height: 14px;
}

.catalogue-card-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.catalogue-card-title .make {
  margin-bottom: 0;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.catalogue-card-title .model-name {
  color: white;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.vehicle-state-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}

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

.new-tag {
  color: #062615;
  background: linear-gradient(135deg, #8ee6f0, #33a7a7);
}

.consignment-tag {
  color: #24123f;
  background: linear-gradient(135deg, #c9a6ff, #8a5fd6);
}

.tax-covered-tag {
  color: #1a1300;
  background: linear-gradient(135deg, #ffd37a, #d88b4b);
}

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

.catalogue-mileage {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.catalogue-mileage span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  text-transform: uppercase;
}

.catalogue-showcase-hero {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 74vh, 820px);
  margin: 92px auto 0;
  border-top: 1px solid rgba(216, 139, 75, 0.34);
  border-bottom: 1px solid rgba(216, 139, 75, 0.34);
  background: #050505;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.catalogue-showcase-slides,
.catalogue-showcase-slide {
  position: absolute;
  inset: 0;
}

.catalogue-showcase-slide {
  display: grid;
  align-items: end;
  padding: clamp(34px, 6vw, 86px);
  color: white;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: scale(1.018);
  transition: opacity 700ms ease, transform 900ms ease;
}

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

.catalogue-showcase-slide .catalogue-showcase-badge,
.catalogue-showcase-slide .catalogue-showcase-copy h2,
.catalogue-showcase-slide .catalogue-showcase-copy p,
.catalogue-showcase-slide .catalogue-showcase-copy em {
  opacity: 0;
  transform: translateY(26px);
  transform-origin: left bottom;
}

.catalogue-showcase-slide.is-active .catalogue-showcase-badge {
  animation: showcaseTextWave 820ms cubic-bezier(0.22, 1, 0.36, 1) 90ms both;
}

.catalogue-showcase-slide.is-active .catalogue-showcase-copy h2 {
  animation: showcaseTextWave 900ms cubic-bezier(0.22, 1, 0.36, 1) 190ms both;
}

.catalogue-showcase-slide.is-active .catalogue-showcase-copy p {
  animation: showcaseTextWave 900ms cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
}

.catalogue-showcase-slide.is-active .catalogue-showcase-copy em {
  animation: showcaseTextWave 840ms cubic-bezier(0.22, 1, 0.36, 1) 460ms both;
}

.catalogue-showcase-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.82);
}

.catalogue-showcase-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.44)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
}

.catalogue-showcase-ribbon {
  position: absolute;
  z-index: 4;
  top: clamp(28px, 4vw, 54px);
  right: clamp(-58px, -3vw, -38px);
  width: clamp(230px, 20vw, 340px);
  padding: 13px 22px;
  color: #080808;
  background: linear-gradient(135deg, #f6c96d, #d88b4b 58%, #f0a85e);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 950;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(36deg);
  transform-origin: center;
}

.catalogue-showcase-ribbon::before,
.catalogue-showcase-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.catalogue-showcase-ribbon::before {
  left: 10px;
}

.catalogue-showcase-ribbon::after {
  right: 10px;
}

.catalogue-showcase-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(100%, 680px);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.72);
}

.catalogue-showcase-badge {
  width: fit-content;
  padding: 8px 12px;
  color: var(--amber);
  border: 1px solid rgba(216, 139, 75, 0.46);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.48);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.catalogue-showcase-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.88;
  text-transform: uppercase;
}

.catalogue-showcase-copy p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.65;
}

.catalogue-showcase-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalogue-showcase-meta span {
  padding: 9px 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.34);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalogue-showcase-copy em {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--amber);
  border: 1px solid rgba(216, 139, 75, 0.44);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.38);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.catalogue-showcase-slide:hover .catalogue-showcase-copy em {
  transform: translateY(-2px);
  border-color: rgba(216, 139, 75, 0.72);
  background: rgba(216, 139, 75, 0.12);
}

@keyframes showcaseTextWave {
  0% {
    opacity: 0;
    transform: translateY(26px) rotate(-0.8deg);
  }

  58% {
    opacity: 1;
    transform: translateY(-5px) rotate(0.25deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalogue-showcase-slide,
  .catalogue-showcase-slide .catalogue-showcase-badge,
  .catalogue-showcase-slide .catalogue-showcase-copy h2,
  .catalogue-showcase-slide .catalogue-showcase-copy p,
  .catalogue-showcase-slide .catalogue-showcase-copy em {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.catalogue-showcase-dots {
  position: absolute;
  z-index: 5;
  right: clamp(26px, 4vw, 56px);
  bottom: clamp(24px, 4vw, 48px);
  display: flex;
  gap: 8px;
}

.catalogue-showcase-dots span {
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.catalogue-showcase-dots span.is-active {
  width: 52px;
  background: var(--amber);
}

.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;
}

.field-hint {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

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

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

select,
select option,
select optgroup {
  color: #f7f1ea;
  background-color: #11100f;
}

select {
  color-scheme: dark;
  border-color: rgba(216, 139, 75, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    #11100f;
  scrollbar-color: rgba(216, 139, 75, 0.85) rgba(0, 0, 0, 0.45);
}

select:focus {
  outline: 0;
  border-color: rgba(255, 190, 112, 0.86);
  box-shadow: 0 0 0 3px rgba(216, 139, 75, 0.14);
}

select option {
  color: #f7f1ea;
  background: #11100f;
}

select option:checked {
  color: #11100f;
  background: #d8ad60;
}

select option:hover,
select option:focus {
  color: #ffffff;
  background: #2a2119;
}

select optgroup {
  color: #d8ad60;
  font-weight: 900;
}

.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;
}

.consignment-response-actions {
  margin: 14px 18px;
}

.request-vehicle-actions {
  margin: 0 18px 14px;
}

.consignment-tax-note {
  margin: 0 18px 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.6;
}

.button.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.consignment-accepted-note {
  margin: 0 18px 14px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(216, 139, 75, 0.3);
  border-radius: 12px;
  background: rgba(216, 139, 75, 0.1);
  font-size: 13px;
  line-height: 1.6;
}

.consignment-accepted-note strong {
  color: var(--amber, #d8aa5b);
}

.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-row-admin.is-unread {
  border-color: rgba(216, 139, 75, 0.6);
  background: rgba(216, 139, 75, 0.08);
}

.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(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.client-garage-form {
  margin-bottom: 18px;
}

.client-garage-row,
.client-garage-admin-row {
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

.client-garage-row {
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
}

.client-garage-vstats {
  display: block;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(216, 139, 75, 0.34);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.client-garage-vstats img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.client-garage-vstats:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.client-garage-vstats-admin {
  margin-top: 12px;
  max-width: 280px;
}

.client-garage-admin-form {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  border: 0;
  background: transparent;
}

.client-garage-admin-row {
  align-items: stretch;
}

.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;
}

.account-section .request-row .message-thread,
.account-section .request-row .thread-reply-form,
.account-section .request-row .closed-thread-note {
  display: none;
}

.requests-admin-page .request-row .message-thread,
.requests-admin-page .request-row .thread-reply-form {
  display: none;
}

.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-avatar {
  width: 84px;
  height: 84px;
  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-avatar {
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
  border: 2px solid rgba(255, 174, 103, 0.76);
  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 .social-empty-avatar {
  min-width: 0;
  padding: 0;
  border: 2px solid rgba(255, 174, 103, 0.76);
  background: transparent;
}

.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-row-avatar {
  width: 56px;
  height: 56px;
  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-post-head .social-row-avatar {
  width: 46px;
  height: 46px;
}

.social-comment-avatar {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(216, 139, 75, 0.5);
}

.contest-participant-avatar {
  width: 34px;
  height: 34px;
}

.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;
}

.contest-compose,
.social-contest-box {
  display: grid;
  gap: 12px;
  margin: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 66, 150, 0.42);
  background:
    radial-gradient(circle at 0 0, rgba(255, 66, 150, 0.2), transparent 34%),
    rgba(16, 10, 22, 0.76);
}

.contest-compose {
  margin: 0;
}

.social-contest-box h3 {
  margin: 0;
  color: white;
  font-size: 22px;
  text-transform: uppercase;
}

.social-contest-box p {
  margin: 0;
}

.contest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contest-meta span {
  padding: 7px 9px;
  color: #ffe66d;
  border: 1px solid rgba(255, 230, 109, 0.34);
  background: rgba(0, 0, 0, 0.24);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contest-prizes {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.contest-winners {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(66, 255, 123, 0.26);
  background: rgba(66, 255, 123, 0.08);
}

.contest-admin-panel {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.24);
}

.contest-admin-panel summary {
  cursor: pointer;
  color: #ffe66d;
  font-weight: 900;
  text-transform: uppercase;
}

.contest-admin-actions {
  margin: 10px 0;
}

.contest-participant-list {
  display: grid;
  gap: 8px;
}

.contest-participant-list label {
  display: grid;
  grid-template-columns: auto 32px 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(216, 139, 75, 0.2);
}

.contest-participant-list img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
}

.contest-participant-list .contest-participant-avatar {
  width: 32px;
  height: 32px;
}

.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: #fff;
  background: linear-gradient(135deg, #55b3f8, #0095f6);
  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(0, 149, 246, 0.42);
}

.presence-avatar {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
}

.presence-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  overflow: hidden;
}

.nav-avatar,
.brand-logo,
.account-avatar-preview,
.social-profile-card img,
.social-profile-row img,
.social-post-head img,
.social-comment img,
.org-member img,
.review-avatar img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

.presence-avatar.is-online::after {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 5%;
  width: 8px;
  height: 8px;
  border: 1px solid #080808;
  border-radius: 50%;
  background: #35e66d;
  box-shadow: 0 0 0 1px rgba(53, 230, 109, 0.16), 0 0 9px rgba(53, 230, 109, 0.62);
}

.nav-presence-avatar {
  width: 38px;
  height: 38px;
}

.nav-presence-avatar.is-online::after {
  left: 10%;
  bottom: 6%;
  width: 7px;
  height: 7px;
}

.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: 190px 20px 64px;
}

.maintenance-card {
  display: grid;
  justify-items: center;
  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);
  text-align: center;
  backdrop-filter: blur(4px);
}

.maintenance-card img {
  width: 112px;
  height: 112px;
  margin-bottom: 4px;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(5, 8, 12, 0.9);
  box-shadow:
    0 0 0 4px rgba(216, 139, 75, 0.72),
    0 14px 38px rgba(0, 0, 0, 0.48);
}

.maintenance-card h1 {
  margin: 0 0 4px;
  color: white;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}

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

.maintenance-progress {
  position: relative;
  width: min(100%, 360px);
  height: 5px;
  margin: 8px 0 0;
  overflow: hidden;
  border: 1px solid rgba(216, 139, 75, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.maintenance-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--amber), #ffd37a, transparent);
  box-shadow: 0 0 18px rgba(255, 178, 93, 0.5);
  animation: maintenanceLoading 1.45s ease-in-out infinite;
}

.maintenance-dots {
  display: inline-flex;
  gap: 7px;
  min-height: 18px;
  margin-bottom: 2px;
}

.maintenance-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(255, 178, 93, 0.72);
  animation: maintenanceDot 900ms ease-in-out infinite;
}

.development-shell {
  display: grid;
  min-height: calc(100vh - 260px);
  place-items: center;
  padding: clamp(110px, 14vw, 170px) 22px clamp(60px, 9vw, 110px);
}

.development-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 680px);
  padding: clamp(30px, 5vw, 54px);
  text-align: center;
  border: 1px solid rgba(216, 139, 75, 0.52);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 139, 75, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(28, 20, 16, 0.94), rgba(5, 5, 5, 0.96));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.development-card img {
  width: 106px;
  height: 106px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(216, 139, 75, 0.28));
}

.development-card h1 {
  max-width: 560px;
  margin: 0;
  color: white;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 0.98;
}

.development-card p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.development-card .button {
  margin-top: 8px;
}

.home-platform-page {
  min-height: 100vh;
  color: white;
  background:
    radial-gradient(circle at 12% 16%, rgba(216, 139, 75, 0.16), transparent 30%),
    radial-gradient(circle at 82% 36%, rgba(255, 210, 128, 0.08), transparent 34%),
    #070504;
}

.home-platform {
  overflow: hidden;
}

.platform-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(150px, 16vh, 190px) clamp(20px, 5vw, 78px) clamp(70px, 9vw, 120px);
  border-bottom: 1px solid rgba(216, 139, 75, 0.32);
}

.platform-hero-media,
.platform-hero-media .hero-image,
.platform-hero-overlay {
  position: absolute;
}

.platform-hero-media {
  inset: -34px 0;
  overflow: hidden;
}

.platform-hero-media .hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) saturate(1.08) contrast(1.02);
  transform: scale(1.025);
}

.platform-hero-overlay {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.56)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 44%, rgba(0, 0, 0, 0.42));
}

.platform-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  width: min(100%, 1480px);
  margin: 0 auto;
}

.platform-hero-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.platform-hero-copy h1,
.platform-section h2,
.platform-final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: white;
  line-height: 0.88;
  letter-spacing: 0;
}

.platform-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(64px, 8.4vw, 132px);
  text-transform: uppercase;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.66);
}

.platform-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.45;
}

.platform-hero-tags,
.platform-feature-list,
.platform-metric-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-hero-tags span,
.platform-feature-list span,
.platform-metric-strip span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.platform-promo-chip {
  position: absolute;
  z-index: 3;
  top: clamp(104px, 13vh, 138px);
  left: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: min(720px, calc(100% - 40px));
  padding: 10px 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 211, 122, 0.52);
  background: rgba(12, 8, 7, 0.62);
  box-shadow: 0 0 28px rgba(216, 139, 75, 0.12);
  animation: platformPulse 2.6s ease-in-out infinite;
}

.platform-promo-chip span,
.platform-promo-chip strong {
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.platform-promo-chip span {
  color: rgba(255, 255, 255, 0.58);
}

.platform-promo-chip strong {
  color: #ffd37a;
}

@keyframes platformPulse {
  0%,
  100% { box-shadow: 0 0 26px rgba(216, 139, 75, 0.10); }
  50% { box-shadow: 0 0 38px rgba(255, 211, 122, 0.24); }
}

.platform-live-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(216, 139, 75, 0.34);
  background: rgba(5, 5, 5, 0.58);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

.platform-live-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-live-top {
  position: absolute;
  inset: 30px 30px auto 30px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.platform-live-top span,
.platform-live-top strong {
  padding: 9px 12px;
  color: white;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.5);
}

.platform-live-top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.platform-live-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3947;
  box-shadow: 0 0 12px rgba(255, 57, 71, 0.8);
}

.platform-live-top strong {
  position: relative;
  color: #1b120d;
  background: linear-gradient(135deg, #ffd37a, #d88b4b);
  transform: rotate(45deg) translate(42px, -25px);
  min-width: 150px;
  text-align: center;
}

.platform-live-slides,
.platform-live-slide {
  position: absolute;
  inset: 0;
}

.platform-live-slide {
  display: grid;
  align-content: end;
  color: white;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

.platform-live-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.platform-live-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(1.05);
  transition: transform 5.2s ease;
}

.platform-live-slide.is-active img {
  transform: scale(1.055);
}

.platform-live-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.86));
}

.platform-live-slide div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 120px 44px 58px;
}

.platform-live-slide small,
.platform-live-slide em {
  width: fit-content;
  color: var(--amber);
  font-size: 12px;
  font-style: normal;
  font-weight: 1000;
  text-transform: uppercase;
}

.platform-live-slide h2 {
  display: -webkit-box;
  max-width: 440px;
  margin: 0;
  overflow: hidden;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.92;
  text-transform: uppercase;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.platform-live-slide p {
  display: -webkit-box;
  max-width: 430px;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  line-height: 1.35;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.platform-slider-dots {
  z-index: 6;
}

.platform-section,
.platform-final-cta {
  position: relative;
  width: min(100% - 40px, 1480px);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) 0;
}

.platform-section + .platform-section,
.platform-final-cta {
  border-top: 1px solid rgba(216, 139, 75, 0.18);
}

.platform-section-head {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin-bottom: 34px;
}

.platform-section h2,
.platform-final-cta h2 {
  max-width: 980px;
  font-size: clamp(32px, 4.15vw, 64px);
  line-height: 0.96;
}

.platform-section-head p:not(.eyebrow),
.platform-garage-copy p:not(.eyebrow),
.platform-client p:not(.eyebrow),
.platform-final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.platform-metric-strip {
  margin-bottom: 26px;
}

.platform-metric-strip strong {
  display: block;
  color: white;
  font-size: 22px;
}

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

.platform-vehicle-card,
.platform-social-post,
.platform-garage-promos,
.platform-review-list article,
.platform-client-grid span {
  border: 1px solid rgba(216, 139, 75, 0.26);
  background: linear-gradient(145deg, rgba(27, 20, 17, 0.84), rgba(5, 5, 5, 0.88));
}

.platform-vehicle-card {
  display: grid;
  min-height: 410px;
  overflow: hidden;
  color: white;
  text-decoration: none;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.platform-vehicle-card:hover,
.platform-social-post:hover,
.platform-garage-promos a:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 122, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 24px rgba(216, 139, 75, 0.1);
}

.platform-vehicle-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  filter: brightness(0.78);
}

.platform-vehicle-card div {
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 22px;
}

.platform-vehicle-card span,
.platform-vehicle-card p,
.platform-garage-promos small,
.platform-review-list p,
.platform-social-post p {
  color: rgba(255, 255, 255, 0.66);
}

.platform-vehicle-card span,
.platform-garage-promos strong,
.platform-social-post strong {
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.platform-vehicle-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 2.4vw, 34px);
  text-transform: uppercase;
}

.platform-vehicle-card p {
  margin: 0;
  font-weight: 900;
}

.platform-garage,
.platform-reviews,
.platform-client {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
}

.platform-garage-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.platform-garage-promos {
  display: grid;
  gap: 12px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.platform-garage-promos > strong {
  color: white;
  font-size: 22px;
  text-transform: uppercase;
}

.platform-garage-promos a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.platform-garage-promos a span {
  font-size: 24px;
}

.platform-garage-promos del {
  color: rgba(255, 255, 255, 0.38);
}

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

.platform-social-stats {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 340px;
  padding: 24px;
  border: 1px solid rgba(255, 211, 122, 0.36);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 211, 122, 0.16), transparent 40%),
    rgba(0, 0, 0, 0.42);
}

.platform-social-stats span {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 900;
  text-transform: uppercase;
}

.platform-social-stats strong {
  color: white;
  font-size: 34px;
}

.platform-social-post {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  color: white;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease;
}

.platform-social-post img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: brightness(0.66);
}

.platform-social-post div {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 8px;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.platform-social-post p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.platform-review-score {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.platform-review-score > strong {
  color: white;
  font-size: clamp(64px, 7vw, 108px);
  line-height: 0.86;
}

.platform-review-score > span {
  color: #ffd37a;
  font-size: 24px;
  letter-spacing: 3px;
}

.platform-review-score small {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 1000;
  text-transform: uppercase;
}

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

.platform-review-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
}

.platform-review-list img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(216, 139, 75, 0.44);
}

.platform-review-list strong,
.platform-review-list span {
  display: block;
}

.platform-review-list span {
  color: #ffd37a;
  font-size: 13px;
  letter-spacing: 2px;
}

.platform-review-list p {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.platform-client > div:first-child {
  display: grid;
  justify-items: start;
  gap: 18px;
}

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

.platform-client-grid span {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: end;
  padding: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.platform-client-grid strong {
  color: white;
  font-size: 38px;
  line-height: 1;
}

.platform-event-card {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 81, 181, 0.48);
  background: #14081c;
  box-shadow: 0 0 60px rgba(165, 63, 255, 0.14);
}

.platform-event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.46) saturate(1.15);
  transition: transform 500ms ease;
}

.platform-event-card:hover img {
  transform: scale(1.04);
}

.platform-event-card div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 14px;
  padding: clamp(26px, 5vw, 58px);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 81, 181, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28));
}

.platform-event-card h2 {
  margin: 0;
  color: white;
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 0.92;
  text-transform: uppercase;
}

.platform-event-card span,
.platform-event-card em {
  color: #ffdc7a;
  font-style: normal;
  font-weight: 1000;
  text-transform: uppercase;
}

.platform-final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  padding-bottom: clamp(90px, 10vw, 140px);
}

.platform-final-cta p:not(.eyebrow) {
  margin: 0 auto;
}

.home-platform [data-scroll-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.75, 0.18, 1),
    filter 760ms ease;
  filter: blur(8px);
  will-change: opacity, transform, filter;
}

.home-platform [data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.home-platform [data-scroll-reveal="soft-left"] {
  transform: translate3d(-34px, 18px, 0);
}

.home-platform [data-scroll-reveal="soft-right"] {
  transform: translate3d(34px, 18px, 0);
}

.home-platform [data-scroll-reveal="scale"] {
  transform: translate3d(0, 26px, 0) scale(0.975);
}

.home-platform [data-scroll-reveal].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.home-platform [data-scroll-delay="1"] { transition-delay: 90ms; }
.home-platform [data-scroll-delay="2"] { transition-delay: 160ms; }
.home-platform [data-scroll-delay="3"] { transition-delay: 230ms; }
.home-platform [data-scroll-delay="4"] { transition-delay: 300ms; }

.platform-section::before {
  content: "";
  position: absolute;
  inset: 18% auto auto -8%;
  width: 220px;
  height: 220px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 139, 75, 0.12), transparent 68%);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.platform-section.is-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.platform-hero-copy,
.platform-live-card {
  animation: platformHeroEnter 900ms cubic-bezier(0.2, 0.75, 0.18, 1) both;
}

.platform-live-card {
  animation-delay: 160ms;
}

@keyframes platformHeroEnter {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.platform-vehicle-card img,
.platform-social-post img,
.platform-live-slide img,
.platform-event-card img {
  will-change: transform;
}

.platform-vehicle-card:hover img,
.platform-social-post:hover img {
  transform: scale(1.035);
}

.platform-vehicle-card img,
.platform-social-post img {
  transition: transform 460ms ease, filter 260ms ease;
}

.platform-metric-strip span,
.platform-client-grid span,
.platform-garage-promos,
.platform-review-list article,
.platform-social-stats {
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease;
}

.platform-metric-strip span:hover,
.platform-client-grid span:hover,
.platform-review-list article:hover,
.platform-social-stats:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 211, 122, 0.42);
  background: linear-gradient(145deg, rgba(42, 29, 22, 0.88), rgba(8, 8, 8, 0.9));
}

@media (prefers-reduced-motion: reduce) {
  .home-platform [data-scroll-reveal],
  .platform-hero-copy,
  .platform-live-card,
  .platform-section::before,
  .platform-vehicle-card,
  .platform-social-post,
  .platform-garage-promos a {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1180px) {
  .platform-hero-grid,
  .platform-garage,
  .platform-reviews,
  .platform-client,
  .platform-social-grid {
    grid-template-columns: 1fr;
  }

  .platform-live-card,
  .platform-social-stats,
  .platform-social-post,
  .platform-social-post img {
    min-height: 360px;
  }

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

@media (max-width: 720px) {
  .platform-hero {
    min-height: auto;
    padding: 138px 18px 56px;
  }

  .platform-hero-media,
  .platform-hero-media .hero-image,
  .platform-hero-overlay {
    position: absolute;
  }

  .platform-hero-copy {
    justify-items: center;
    text-align: center;
  }

  .platform-hero-copy h1 {
    font-size: clamp(54px, 18vw, 88px);
  }

  .platform-hero-tags,
  .platform-feature-list,
  .platform-metric-strip,
  .platform-hero-copy .welcome-actions {
    justify-content: center;
  }

  .platform-promo-chip {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 22px;
    transform: none;
  }

  .platform-live-card {
    min-height: 390px;
  }

  .platform-live-slide div {
    padding: 112px 24px 54px;
  }

  .platform-live-top {
    inset: 24px 24px auto 24px;
  }

  .platform-live-top strong {
    transform: rotate(45deg) translate(38px, -30px);
  }

  .platform-section,
  .platform-final-cta {
    width: min(100% - 28px, 1480px);
    padding: 58px 0;
  }

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

  .platform-garage-promos a {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .platform-garage-promos small {
    grid-column: 2;
  }

  .platform-review-list article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .platform-review-list img {
    width: 44px;
    height: 44px;
  }
}

.maintenance-dots span:nth-child(2) {
  animation-delay: 120ms;
}

.maintenance-dots span:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes maintenanceLoading {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(260%);
  }
}

@keyframes maintenanceDot {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

.closed-thread-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 77, 77, 0.28);
  border-radius: 12px;
  background: rgba(255, 77, 77, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.closed-thread-note i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #ff6b6b;
}

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

.catalogue-page {
  background:
    radial-gradient(circle at 50% 0, rgba(216, 139, 75, 0.12), transparent 28%),
    linear-gradient(180deg, #060606, #120c09 42%, #050505);
}

.catalogue-hero {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 170px clamp(20px, 5vw, 72px) 64px;
  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-compact {
  padding: 58px clamp(20px, 5vw, 72px) 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 139, 75, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(20, 14, 11, 0.96), rgba(10, 10, 10, 0.98));
}

.catalogue-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.92;
  text-transform: uppercase;
}

.catalogue-hero-compact h1 {
  font-size: clamp(30px, 4.2vw, 56px);
}

.catalogue-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.6;
}

.catalogue-quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.catalogue-quick-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.catalogue-quick-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 190, 112, 0.72);
  background: rgba(216, 139, 75, 0.12);
}

.catalogue-section {
  padding-top: clamp(42px, 5vw, 78px);
}

.catalogue-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  width: min(100%, 1380px);
  margin: 0 auto 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(216, 139, 75, 0.22);
}

.catalogue-section-head h2 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
}

.catalogue-section-head > span {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(216, 139, 75, 0.24);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalogue-filter-card {
  width: min(100%, 1380px);
  margin: 0 auto 28px;
  padding: 14px;
  border: 1px solid rgba(247, 243, 234, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.026);
}

.catalogue-filter-form {
  display: grid;
  grid-template-columns: minmax(200px, 1.4fr) minmax(150px, 1fr) minmax(110px, 0.7fr) minmax(110px, 0.7fr) minmax(160px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.catalogue-filter-form input,
.catalogue-filter-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 10px;
  color: #f7f3ea;
  background: rgba(0, 0, 0, 0.22);
}

.catalogue-filter-reset {
  color: rgba(247, 243, 234, 0.56);
  font-size: 13px;
  text-decoration: underline;
  white-space: nowrap;
}

.catalogue-filter-reset:hover,
.catalogue-filter-reset:focus-visible {
  color: rgba(247, 243, 234, 0.85);
}

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

@media (max-width: 560px) {
  .catalogue-filter-form {
    grid-template-columns: 1fr;
  }
}

.catalogue-actions {
  display: flex;
  justify-content: center;
  width: min(100%, 1720px);
  margin: clamp(30px, 4vw, 48px) auto 0;
}

.sold-vehicles-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 139, 75, 0.36);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  animation: soldArchiveFloat 3.4s ease-in-out infinite;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.sold-vehicles-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 190, 112, 0.78), transparent);
}

.sold-vehicles-link:hover {
  color: white;
  border-color: rgba(255, 190, 112, 0.72);
  transform: translateY(-2px);
}

@keyframes soldArchiveFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -4px;
  }
}

.vehicle-state-text {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-state-text.is-reserved {
  color: #ffc247;
}

.vehicle-state-text.is-available {
  color: #42ff7b;
}

.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);
  border-radius: 14px;
}

.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;
  overflow: hidden;
  border: 1px solid rgba(216, 139, 75, 0.28);
  border-radius: 8px;
  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-showcase-badge {
  width: fit-content;
  padding: 8px 12px;
  color: var(--amber);
  border: 1px solid rgba(216, 139, 75, 0.44);
  border-radius: 999px;
  background: rgba(216, 139, 75, 0.08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.vehicle-showcase-page .vehicle-detail-content h1 {
  font-size: clamp(38px, 5.2vw, 66px);
}

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

.vehicle-consignment-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 139, 75, 0.28);
  border-radius: 10px;
  background: rgba(216, 139, 75, 0.08);
  font-size: 14px;
}

.vehicle-consignment-contact i {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--amber, #d8aa5b);
}

.vehicle-consignment-contact a {
  color: var(--amber, #d8aa5b);
  font-weight: 800;
}

.showcase-market-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(216, 139, 75, 0.3);
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 139, 75, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.showcase-market-panel .eyebrow {
  margin: 0 0 6px;
  color: rgba(216, 139, 75, 0.88);
}

.showcase-market-panel h2 {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-market-panel strong {
  display: block;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.showcase-market-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

.finance-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
}

.finance-modal:target {
  display: grid;
}

.finance-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.vehicle-detail .button {
  border-radius: 8px;
}

.finance-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(100%, 560px);
  padding: clamp(24px, 4vw, 42px);
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.48);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(34, 25, 19, 0.96), rgba(7, 7, 7, 0.96)),
    #090909;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.finance-modal-card h2 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.finance-modal-card p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.7;
}

.request-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 18px;
  width: min(100%, 1180px);
  margin: 0 auto 18px;
}

.request-detail-card {
  align-content: start;
}

.request-detail-image {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border: 1px solid rgba(216, 139, 75, 0.28);
}

.request-detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.request-detail-facts span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-panel {
  padding: 18px;
  border: 1px solid rgba(216, 139, 75, 0.24);
  border-radius: 12px;
  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;
}

.org-shell {
  width: min(100%, 1800px);
}

.org-tree-wrap {
  width: 100%;
  max-width: 1800px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 56px);
  border: 1px solid rgba(216, 139, 75, 0.32);
  background:
    radial-gradient(circle at 50% 0, rgba(216, 139, 75, 0.22), transparent 34%),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.05), transparent 26%),
    linear-gradient(135deg, rgba(18, 12, 9, 0.92), rgba(5, 5, 5, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 26px 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  scrollbar-color: rgba(216, 139, 75, 0.55) rgba(255, 255, 255, 0.05);
}

.org-tree,
.org-tree ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 30px);
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.org-tree ul {
  padding-top: 54px;
}

.org-tree ul::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 50%;
  width: calc(100% - 230px);
  min-width: 0;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(216, 139, 75, 0.68), transparent);
  box-shadow: 0 0 14px rgba(216, 139, 75, 0.22);
}

.org-node {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  flex: 0 1 252px;
}

.org-tree > .org-node {
  width: 100%;
  flex: 1 1 100%;
}

.org-tree > .org-node > ul {
  width: 100%;
}

.org-tree > .org-node > ul > .org-node {
  flex: 1 1 540px;
}

.org-node-branch > ul {
  width: min(100%, 780px);
  margin-inline: auto;
}

.org-node::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 50%;
  width: 1px;
  height: 27px;
  background: linear-gradient(rgba(216, 139, 75, 0.72), rgba(216, 139, 75, 0.22));
  box-shadow: 0 0 12px rgba(216, 139, 75, 0.24);
}

.org-tree > .org-node::before {
  display: none;
}

.org-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 252px);
  min-height: 124px;
  padding: 16px;
  border: 1px solid rgba(216, 139, 75, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 42%),
    radial-gradient(circle at 50% 0, rgba(216, 139, 75, 0.12), transparent 58%),
    rgba(8, 8, 8, 0.96);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.org-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 178, 93, 0.68);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 26px rgba(216, 139, 75, 0.14);
}

.org-node-root > .org-card {
  width: min(100%, 360px);
  border-color: rgba(255, 178, 93, 0.68);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 178, 93, 0.28), transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(14, 10, 8, 0.98);
}

.org-node-branch > .org-card {
  border-color: rgba(216, 139, 75, 0.55);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.18), transparent 50%),
    rgba(10, 8, 7, 0.97);
}

.org-card h2 {
  margin: 0;
  color: white;
  font-size: clamp(15px, 1.35vw, 20px);
  text-transform: uppercase;
}

.org-node-root > .org-card h2 {
  color: var(--amber);
  font-size: clamp(24px, 2.6vw, 38px);
}

.org-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  line-height: 1.45;
}

.org-members {
  display: grid;
  gap: 8px;
}

.org-member {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  text-align: left;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.org-member:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 139, 75, 0.55);
  background: rgba(216, 139, 75, 0.08);
}

.org-member img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(216, 139, 75, 0.55);
}

.org-member .presence-avatar {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 139, 75, 0.55);
}

.org-member span {
  display: grid;
  min-width: 0;
}

.org-member strong {
  color: white;
}

.org-member-name {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  line-height: 1.15;
}

.org-member-name .verified-badge {
  flex: 0 0 auto;
  margin-left: 0;
  transform: translateY(-1px);
}

.org-member small {
  color: rgba(255, 255, 255, 0.54);
  font-weight: 900;
  text-transform: uppercase;
}

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

.reviews-shell,
.garage-shell {
  width: min(100%, 1380px);
}

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

.reviews-shell > .reviews-hero {
  display: none;
}

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

.review-summary strong {
  grid-row: span 2;
  color: white;
  font-size: clamp(58px, 7vw, 90px);
  line-height: 1;
}

.review-summary span,
.review-stars {
  color: #ffd37a;
  letter-spacing: 2px;
  text-shadow: 0 0 14px rgba(255, 190, 112, 0.25);
}

.review-summary small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
  text-transform: uppercase;
}

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

.reviews-google-panel {
  display: grid;
  grid-template-columns: minmax(360px, 470px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: rgba(10, 9, 8, 0.86);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.3);
}

.reviews-map-card,
.reviews-score-card {
  min-height: 330px;
  border: 0;
  box-shadow: none;
}

.reviews-map-card {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.18), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 28%),
    #090909;
}

.reviews-map-card span {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-score-card {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(216, 139, 75, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 48%),
    rgba(12, 10, 9, 0.88);
}

.reviews-place-head {
  display: grid;
  gap: 5px;
}

.reviews-place-head h2 {
  margin: 0;
  color: white;
  font-size: clamp(20px, 2.2vw, 30px);
  text-transform: uppercase;
}

.reviews-place-head small {
  color: rgba(255, 255, 255, 0.54);
  font-weight: 800;
}

.review-bars {
  display: grid;
  gap: 9px;
}

.review-bar-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.review-bar-row div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.review-bar-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffcf74, #d88b4b);
}

.reviews-all-button {
  justify-self: start;
  margin-top: 2px;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

.star-rating legend {
  width: 100%;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.25);
  font-size: 25px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  transition: color 140ms ease, transform 140ms ease, text-shadow 140ms ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #ffd37a;
  text-shadow: 0 0 18px rgba(255, 190, 112, 0.45);
}

.star-rating label:hover {
  transform: translateY(-2px) scale(1.06);
}

.review-form-card,
.review-card,
.review-admin-row,
.garage-part-card {
  border: 1px solid rgba(216, 139, 75, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 44%),
    rgba(12, 10, 9, 0.84);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.review-form-card {
  position: sticky;
  top: 118px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.review-form-card form {
  display: grid;
  gap: 11px;
  width: 100%;
  min-width: 0;
}

.review-form-card label,
.review-form-card textarea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.review-form-card textarea {
  min-height: 112px;
  max-height: 112px;
  resize: none;
  line-height: 1.55;
}

.review-form-card h2 {
  margin: 0;
  color: white;
  font-size: 16px;
  line-height: 1.05;
  text-transform: uppercase;
}

.review-form-card .button {
  width: 100%;
  justify-content: center;
}

.reviews-list {
  display: grid;
  gap: 16px;
}

.review-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.review-card header,
.review-admin-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 139, 75, 0.45);
}

.review-card strong,
.review-admin-row strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
  line-height: 1.15;
}

.review-card small,
.review-admin-row small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.review-card > header > .review-stars {
  grid-column: auto;
  justify-self: end;
  margin-top: 0;
  font-size: 12px;
  letter-spacing: 1px;
}

.review-card p,
.review-admin-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
  line-height: 1.58;
}

.review-card blockquote {
  margin: 0;
  padding: 14px;
  border-left: 3px solid var(--amber);
  background: rgba(216, 139, 75, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.review-card blockquote strong {
  display: block;
  margin-bottom: 6px;
}

.review-admin-row {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.review-reply-form {
  display: grid;
  gap: 10px;
  margin: 0;
}

.garage-shell {
  width: min(100%, 1500px);
}

.garage-catalogue-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 26px;
  padding: 24px;
  border: 1px solid rgba(216, 139, 75, 0.28);
  background:
    radial-gradient(circle at 12% 0, rgba(216, 139, 75, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(10, 9, 8, 0.88);
}

.garage-catalogue-intro h2 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
}

.garage-catalogue-intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
  line-height: 1.5;
}

.garage-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

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

.garage-part-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
}

.garage-part-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(216, 139, 75, 0.13), transparent 46%),
    radial-gradient(circle at 92% 0, rgba(255, 255, 255, 0.07), transparent 34%);
  pointer-events: none;
}

.garage-part-card > * {
  position: relative;
  z-index: 1;
}

.garage-part-card header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.garage-part-card header > span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(216, 139, 75, 0.42);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 211, 122, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.06);
  font-size: 30px;
}

.garage-part-card h2 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 0.95;
  text-transform: uppercase;
}

.garage-part-note {
  max-width: 520px;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
  line-height: 1.45;
}

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

.garage-price {
  display: grid;
  gap: 8px;
  min-height: 92px;
  align-content: center;
  padding: 14px 10px;
  border: 1px solid rgba(216, 139, 75, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.24);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.garage-price small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.garage-price strong {
  color: white;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1;
}

.garage-price.is-muted {
  opacity: 0.24;
}

.garage-price.is-highlighted {
  transform: translateY(-3px);
  border-color: rgba(255, 190, 112, 0.75);
  background:
    linear-gradient(180deg, rgba(216, 139, 75, 0.18), rgba(216, 139, 75, 0.08)),
    rgba(0, 0, 0, 0.32);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.garage-shell {
  width: min(100%, 1680px);
}

.garage-hero {
  /*min-height: 330px;*/
  align-content: end;
  /*background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 82% 16%, rgba(216, 139, 75, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 44%);*/
}

.garage-catalogue-intro {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 28px;
  padding: 22px;
  margin-bottom: 22px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 8, 8, 0.92);
}

.garage-catalogue-intro h2 {
  font-family: inherit;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1;
}

.garage-search {
  position: relative;
  display: flex;
  align-items: center;
}

.garage-search span {
  position: absolute;
  left: 16px;
  color: var(--amber);
  font-size: 22px;
  pointer-events: none;
}

.garage-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px 0 50px;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.36);
  background: rgba(255, 255, 255, 0.055);
  outline: 0;
  font-weight: 800;
}

.garage-search input:focus {
  border-color: rgba(255, 190, 112, 0.9);
  box-shadow: 0 0 0 3px rgba(216, 139, 75, 0.13);
}

.garage-shop-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.garage-sidebar {
  position: sticky;
  top: 118px;
}

.garage-sidebar-card,
.garage-toolbar,
.garage-product-card {
  border: 1px solid rgba(216, 139, 75, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 8, 7, 0.94);
}

.garage-sidebar-card {
  padding: 18px;
}

.garage-category-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.garage-category-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.garage-category-button:hover,
.garage-category-button.is-active {
  color: white;
  border-color: rgba(255, 190, 112, 0.72);
  background: rgba(216, 139, 75, 0.14);
  transform: translateX(3px);
}

.garage-category-button strong {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  color: #111;
  background: var(--amber);
  font-size: 11px;
}

.garage-products {
  display: grid;
  gap: 18px;
}

.garage-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding: 18px;
}

.garage-filter {
  justify-content: flex-start;
  margin-top: 8px;
}

.garage-result-count {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.garage-result-count strong {
  color: var(--amber);
  font-size: 18px;
}

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

.garage-product-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  min-height: 245px;
  padding: 18px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.garage-product-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -46px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(216, 139, 75, 0.12);
  pointer-events: none;
}

.garage-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 190, 112, 0.62);
  background:
    linear-gradient(145deg, rgba(216, 139, 75, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(9, 8, 7, 0.95);
}

.garage-product-card.has-promo {
  border-color: rgba(255, 190, 112, 0.52);
}

.garage-product-card.is-hidden {
  display: none;
}

.garage-promo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  color: #111;
  background: linear-gradient(135deg, #ffd66f, #d8a44d);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.garage-product-card.has-promo .garage-product-main {
  padding-right: 86px;
}

.garage-product-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(216, 139, 75, 0.38);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 211, 122, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.06);
  font-size: 28px;
}

.garage-product-main {
  min-width: 0;
}

.garage-product-tag {
  margin: 0 0 7px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.garage-product-card h2 {
  margin: 0;
  color: white;
  font-size: clamp(19px, 1.6vw, 26px);
  line-height: 1.02;
  text-transform: uppercase;
}

.garage-product-main p:not(.garage-product-tag) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
  line-height: 1.45;
}

.garage-product-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.garage-product-meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.garage-product-meta strong {
  display: grid;
  justify-items: end;
  gap: 4px;
  color: var(--amber);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.garage-product-meta del {
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  text-decoration-color: rgba(255, 92, 92, 0.9);
}

.garage-product-action {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 42px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.garage-product-action:hover {
  color: #111;
  border-color: var(--amber);
  background: var(--amber);
}

.company-shell {
  width: min(100%, 1420px);
}

.company-hero {
  min-height: 310px;
  align-content: end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(17, 11, 8, 0.55)),
    linear-gradient(135deg, rgba(216, 139, 75, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(10, 9, 8, 0.94);
}

.company-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 22px;
  align-items: stretch;
  margin-top: 28px;
}

.company-overview article,
.company-overview aside,
.company-info-card {
  border: 1px solid rgba(216, 139, 75, 0.28);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.10), rgba(255, 255, 255, 0.025)),
    rgba(10, 9, 8, 0.82);
}

.company-overview article {
  padding: clamp(24px, 3vw, 40px);
}

.company-overview article h2 {
  max-width: 780px;
  margin: 0;
  color: white;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 0.98;
}

.company-overview article p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.company-overview aside {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 26px;
}

.company-overview aside span {
  font-size: 42px;
}

.company-overview aside strong {
  color: white;
  font-size: 22px;
}

.company-overview aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.company-info-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  min-height: 190px;
  padding: 22px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.company-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 190, 112, 0.62);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(10, 9, 8, 0.9);
}

.company-info-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(216, 139, 75, 0.35);
  background: rgba(255, 255, 255, 0.045);
  font-size: 25px;
}

.company-info-card h2 {
  margin: 0;
  color: white;
  font-family: inherit;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.company-info-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.company-editorial-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(180px, 14vw, 230px) clamp(18px, 4vw, 64px) clamp(56px, 7vw, 110px);
}

.company-editorial-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(420px, 56vh, 620px);
  padding: clamp(38px, 6vw, 84px);
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 139, 75, 0.36);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, rgba(216, 139, 75, 0.18), rgba(0, 0, 0, 0.12)),
    rgba(9, 8, 7, 0.96);
}

.company-editorial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://i.imgur.com/3RamIu8.png") right clamp(28px, 8vw, 100px) center / min(34vw, 420px) no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.company-editorial-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.company-editorial-hero > div {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.company-editorial-hero h1 {
  margin: 8px 0 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 11vw, 164px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-editorial-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.45;
}

.company-editorial-intro,
.company-editorial-note {
  max-width: 1060px;
  margin: clamp(54px, 7vw, 105px) auto 0;
  text-align: center;
}

.company-editorial-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.company-editorial-intro h2,
.company-editorial-note h2,
.company-editorial-section-heading h2 {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.98;
}

.company-editorial-intro p:not(.company-editorial-kicker),
.company-editorial-note p:not(.company-editorial-kicker) {
  max-width: 860px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.8;
}

.company-editorial-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 86px);
  margin-top: clamp(62px, 8vw, 120px);
  padding-top: clamp(34px, 5vw, 70px);
  border-top: 1px solid rgba(216, 139, 75, 0.26);
}

.company-editorial-columns article {
  display: grid;
  align-content: start;
  gap: 14px;
}

.company-editorial-columns article > span {
  font-size: 32px;
}

.company-editorial-columns h2 {
  max-width: 580px;
  margin: 0;
  color: white;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1.06;
}

.company-editorial-columns p:not(.eyebrow) {
  max-width: 620px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.75;
}

.company-editorial-details {
  margin-top: clamp(62px, 8vw, 120px);
  padding-top: clamp(34px, 5vw, 70px);
  border-top: 1px solid rgba(216, 139, 75, 0.26);
}

.company-editorial-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.company-detail-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.company-detail-row > span {
  color: var(--amber);
  font-size: 28px;
}

.company-detail-row h3 {
  margin: 0;
  color: white;
  font-size: clamp(22px, 2.5vw, 34px);
}

.company-detail-row p {
  max-width: 840px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.7;
}

.company-editorial-note {
  padding-top: clamp(34px, 5vw, 70px);
  border-top: 1px solid rgba(216, 139, 75, 0.26);
}

.garage-empty {
  display: none;
  margin: 14px 0 0;
}

.garage-empty.is-visible {
  display: block;
}

.invoice-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.invoice-status-paid {
  color: #b8ffd1;
  border-color: rgba(62, 221, 119, 0.45);
  background: rgba(62, 221, 119, 0.12);
}

.invoice-status-pending {
  color: #ffe3a8;
  border-color: rgba(255, 190, 112, 0.48);
  background: rgba(216, 139, 75, 0.14);
}

.invoice-status-quote {
  color: #ffe3a8;
  border-color: rgba(255, 190, 112, 0.48);
  background: rgba(216, 139, 75, 0.14);
}

.invoice-status-cancelled {
  color: #ffb1b1;
  border-color: rgba(255, 92, 92, 0.48);
  background: rgba(255, 92, 92, 0.12);
}

.invoice-status-archived {
  color: rgba(255, 255, 255, 0.56);
}

.invoice-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.invoice-filter-form input,
.invoice-filter-form select {
  min-height: 40px;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.3);
  background: rgba(255, 255, 255, 0.055);
  padding: 0 10px;
  font-weight: 800;
}

.invoice-form select[multiple] {
  min-height: 190px;
  padding: 10px;
}

select[multiple] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #0d0c0b;
}

select[multiple] option {
  margin-bottom: 3px;
  padding: 9px 10px;
  border: 1px solid transparent;
}

select[multiple] option:checked {
  border-color: rgba(255, 190, 112, 0.48);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.95), rgba(255, 211, 122, 0.86)),
    #d8ad60;
}

.invoice-service-picker {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(216, 139, 75, 0.28);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(9, 8, 7, 0.72);
}

.invoice-service-picker-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.invoice-service-picker-head .eyebrow {
  margin-bottom: 5px;
}

.invoice-service-picker-head strong {
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}

.invoice-service-picker-head > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.invoice-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 440px;
  overflow: auto;
  padding-right: 4px;
}

.invoice-service-option {
  position: relative;
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) auto 78px;
  gap: 12px !important;
  align-items: center;
  min-height: 72px;
  padding: 13px;
  color: rgba(255, 255, 255, 0.76) !important;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.invoice-service-option:hover,
.invoice-service-option:has(input[type="checkbox"]:checked) {
  transform: translateY(-1px);
  border-color: rgba(255, 190, 112, 0.62);
  background: rgba(216, 139, 75, 0.12);
}

.invoice-service-option > input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.invoice-service-check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(216, 139, 75, 0.52);
  background: rgba(0, 0, 0, 0.32);
}

.invoice-service-check::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #111;
  border-bottom: 2px solid #111;
  opacity: 0;
  transform: rotate(-45deg) translateY(-1px);
}

.invoice-service-option input[type="checkbox"]:checked + .invoice-service-check {
  border-color: var(--amber);
  background: var(--amber);
}

.invoice-service-option input[type="checkbox"]:checked + .invoice-service-check::after {
  opacity: 1;
}

.invoice-service-main {
  min-width: 0;
}

.invoice-service-main strong {
  display: block;
  color: white;
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
}

.invoice-service-main small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.invoice-service-price {
  color: var(--amber);
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
}

.invoice-service-quantity {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.invoice-service-quantity input {
  width: 62px !important;
  min-height: 34px;
  padding: 7px 8px !important;
  text-align: center;
}

.invoice-shell {
  width: min(100%, 1220px);
}

.invoice-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(216, 139, 75, 0.24);
}

.invoice-topbar h1 {
  margin: 4px 0 0;
  color: white;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.invoice-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.invoice-document {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 46px);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 139, 75, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(8, 8, 8, 0.94);
}

.invoice-document-head,
.invoice-parties {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}

.invoice-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.invoice-brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(216, 139, 75, 0.35);
  background: rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.invoice-document-head h2 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.9;
  text-transform: uppercase;
}

.invoice-document-head div:last-child,
.invoice-parties article {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(216, 139, 75, 0.22);
  background: rgba(0, 0, 0, 0.22);
}

.invoice-lines {
  display: grid;
  border: 1px solid rgba(216, 139, 75, 0.24);
}

.invoice-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 70px 140px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(216, 139, 75, 0.16);
}

.invoice-line:last-child {
  border-bottom: 0;
}

.invoice-line-head {
  color: var(--amber);
  background: rgba(216, 139, 75, 0.12);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.invoice-line strong,
.invoice-parties strong,
.invoice-document-head strong {
  color: white;
}

.invoice-line small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 800;
}

.invoice-line del {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  text-decoration-color: rgba(255, 92, 92, 0.9);
}

.invoice-totals-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.invoice-stamp {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 132px;
  color: rgba(216, 139, 75, 0.62);
  opacity: 0.85;
  mix-blend-mode: screen;
  transform: rotate(-9deg);
  pointer-events: none;
  user-select: none;
}

.invoice-stamp svg {
  width: 100%;
  height: auto;
  fill: none;
}

.invoice-stamp text {
  fill: currentColor;
}

.invoice-stamp span {
  color: currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invoice-stamp-paid {
  position: absolute;
  top: clamp(18px, 4vw, 40px);
  right: clamp(10px, 3vw, 34px);
  padding: 8px 22px;
  border: 3px solid rgba(109, 243, 145, 0.78);
  border-radius: 10px;
  color: rgba(109, 243, 145, 0.85);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-11deg);
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
}

.invoice-totals {
  display: grid;
  gap: 8px;
  width: min(100%, 420px);
  margin: 0 0 0 auto;
}

.invoice-totals p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(216, 139, 75, 0.16);
}

.invoice-total {
  color: white;
  font-size: 20px;
}

.invoice-note {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(216, 139, 75, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.invoice-note-internal {
  border-style: dashed;
}

@media print {
  .site-header,
  .footer,
  .panel-hero .welcome-actions,
  .invoice-topbar-actions a {
    display: none !important;
  }

  .panel-page,
  .invoice-document {
    color: #111;
    background: white !important;
  }

  .invoice-document {
    border: 0;
  }

  .invoice-stamp,
  .invoice-stamp-paid {
    mix-blend-mode: multiply;
  }
}

.home-garage-promos {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 190, 112, 0.38);
  background:
    radial-gradient(circle at 12% 0, rgba(255, 211, 122, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(216, 139, 75, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 8, 0.82);
  animation: garagePromoPulse 2.6s ease-in-out infinite;
}

.home-garage-promos h2 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 2.7vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.home-garage-promos p:not(.eyebrow) {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  line-height: 1.45;
}

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

.home-garage-promo-card {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.26);
  text-decoration: none;
}

.home-garage-promo-card span {
  font-size: 22px;
}

.home-garage-promo-card strong {
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-garage-promo-card small {
  display: grid;
  gap: 3px;
  color: var(--amber);
  font-size: 15px;
  font-weight: 950;
}

.home-garage-promo-card del {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  text-decoration-color: rgba(255, 92, 92, 0.9);
}

@keyframes garagePromoPulse {
  50% {
    border-color: rgba(255, 190, 112, 0.72);
    box-shadow: 0 0 36px rgba(216, 139, 75, 0.14);
  }
}

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

  .company-overview,
  .company-info-grid,
  .company-editorial-columns,
  .company-editorial-section-heading {
    grid-template-columns: 1fr;
  }

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

  .garage-sidebar {
    position: static;
  }

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

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

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

  .invoice-document-head,
  .invoice-parties,
  .invoice-line {
    grid-template-columns: 1fr;
  }

  .invoice-service-list {
    grid-template-columns: 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: 10px;
  }

  .home-showcase-head {
    top: 13px;
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

  .home-slides,
  .home-slide {
    inset: 13px;
  }

  .home-slide div {
    padding: 76px 22px 50px;
  }

  .home-slide h2 {
    font-size: clamp(22px, 2.55vw, 32px);
  }

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

  .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-actions {
    justify-self: start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }

  .nav-avatar-button,
  .nav-icon-button {
    justify-self: start;
    margin: 0;
  }

  .profile-menu {
    position: static;
    min-width: 0;
    width: min(100%, 360px);
    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 {
    right: 12px;
    bottom: 12px;
    left: 12px;
    top: auto;
    justify-items: stretch;
    width: 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;
  }

  .catalogue-hero-compact {
    padding-top: 36px;
  }

  .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: 10px;
  }

  .home-showcase-head {
    top: 13px;
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

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

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

  .home-slides,
  .home-slide {
    inset: 13px;
  }

  .home-slide div {
    padding: 78px 18px 52px;
  }

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

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

  .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;
  }

  .home-contests-heading {
    display: grid;
  }

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

  .home-contests-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-contest-card {
    min-height: 420px;
  }

  .home-contest-content {
    padding: 24px;
  }

  .home-contest-stats {
    flex-direction: column;
  }

  .home-contest-stats span {
    min-width: 0;
  }

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

  .notification-state {
    justify-items: start;
  }

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

  .reviews-layout,
  .reviews-google-panel,
  .garage-grid {
    grid-template-columns: 1fr;
  }

  .review-form-card {
    position: static;
  }

  .garage-catalogue-intro {
    grid-template-columns: 1fr;
  }

  .garage-filter {
    justify-content: flex-start;
  }

  .garage-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

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

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

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

  .org-tree-wrap {
    overflow-x: visible;
    padding: 20px;
  }

  .org-tree,
  .org-tree ul {
    display: grid;
    min-width: 0;
    gap: 18px;
    justify-items: center;
  }

  .org-tree ul {
    width: 100%;
    padding-top: 20px;
  }

  .org-tree ul::before {
    display: none;
  }

  .org-node::before {
    top: -20px;
    height: 20px;
  }

  .org-card,
  .org-node-root > .org-card {
    width: min(100%, 360px);
  }

  .catalogue-showcase-hero {
    width: 100%;
    min-height: 520px;
    margin-top: 92px;
  }

  .catalogue-showcase-slide {
    padding: 28px;
  }

  .catalogue-showcase-ribbon {
    top: 24px;
    right: -64px;
    width: 230px;
    padding: 11px 18px;
    font-size: 10px;
  }

  .catalogue-showcase-copy h2 {
    font-size: clamp(42px, 13vw, 76px);
  }

  .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;
  }

  .review-stars {
    grid-column: 1 / -1;
  }

  .garage-price-grid {
    grid-template-columns: 1fr;
  }

  .garage-catalogue-intro {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .garage-category-list,
  .garage-product-grid {
    grid-template-columns: 1fr;
  }

  .garage-product-card {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 16px;
  }

  .garage-product-icon {
    width: 50px;
    height: 50px;
  }

  .home-garage-promo-list {
    grid-template-columns: 1fr;
  }

  .company-hero {
    min-height: 250px;
  }

  .company-overview article,
  .company-overview aside,
  .company-info-card {
    padding: 18px;
  }

  .company-info-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .company-info-icon {
    width: 48px;
    height: 48px;
  }

  .company-editorial-shell {
    padding: 118px 14px 64px;
  }

  .company-editorial-hero {
    min-height: 420px;
    padding: 28px;
  }

  .company-editorial-hero::before {
    background-position: center 42px;
    background-size: 220px;
    opacity: 0.08;
  }

  .company-editorial-hero h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .company-detail-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .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;
  }

  .invoice-service-picker-head,
  .invoice-service-option {
    grid-template-columns: 1fr;
  }

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

  .client-garage-vstats {
    max-width: none;
  }

  .invoice-service-picker-head {
    display: grid;
  }

  .invoice-service-option {
    justify-items: start;
  }

  .invoice-service-quantity {
    justify-items: start;
  }

  .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;
  }
}

@media (max-width: 900px) {
  .platform-hero-media,
  .platform-hero-media .hero-image,
  .platform-hero-overlay {
    position: absolute;
  }

  .platform-hero-copy .welcome-actions .button,
  .platform-final-cta .welcome-actions .button {
    width: auto;
  }
}

@media (max-width: 560px) {
  .platform-hero-copy .welcome-actions .button,
  .platform-final-cta .welcome-actions .button {
    width: 100%;
  }
}

.admin-console-page {
  --admin-panel: rgba(11, 10, 9, 0.82);
}

.admin-console {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 190px clamp(16px, 3vw, 42px) 82px;
}

.admin-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(216, 139, 75, 0.32);
  background: linear-gradient(145deg, rgba(216, 139, 75, 0.12), transparent 48%), rgba(0, 0, 0, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.admin-sidebar-card,
.admin-metric-grid article,
.admin-module-card,
.admin-insight-card,
.admin-quick-settings {
  border: 1px solid rgba(216, 139, 75, 0.26);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 44%), rgba(7, 7, 7, 0.72);
}

.admin-sidebar-card {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.admin-sidebar-card strong {
  color: white;
  font-size: 18px;
}

.admin-sidebar-kicker,
.admin-sidebar-card small,
.admin-sidebar nav a span,
.admin-module-card p,
.admin-metric-grid small,
.admin-health-card small,
.admin-timeline small {
  color: rgba(255, 255, 255, 0.58);
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-sidebar nav a:hover {
  color: white;
  border-color: rgba(216, 139, 75, 0.42);
  background: rgba(216, 139, 75, 0.1);
}

.admin-sidebar nav a.is-active {
  color: white;
  border-color: rgba(216, 139, 75, 0.55);
  background: rgba(216, 139, 75, 0.16);
}

.admin-sidebar nav a svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.admin-hero-solo {
  grid-template-columns: minmax(0, 1fr);
}

.admin-console-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(216, 139, 75, 0.32);
  background: radial-gradient(circle at 20% 20%, rgba(216, 139, 75, 0.22), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%), var(--admin-panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.admin-hero h1 {
  max-width: 860px;
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.92;
}

.admin-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.4vw, 21px);
}

.admin-hero-actions,
.admin-module-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-health-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: rgba(0, 0, 0, 0.35);
}

.admin-health-card span,
.admin-metric-grid span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-health-card strong {
  color: white;
  font-size: 34px;
  text-transform: uppercase;
}

.admin-health-card .is-ok {
  color: #6df391;
}

.admin-health-card .is-warning {
  color: #ffcf66;
}

.admin-metric-grid,
.admin-dashboard-grid,
.admin-insight-grid,
.admin-settings-grid {
  display: grid;
  gap: 16px;
}

.admin-metric-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-metric-grid article {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
}

.admin-metric-grid strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

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

.admin-module-card {
  display: grid;
  gap: 16px;
  min-height: 255px;
  padding: 22px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.admin-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 185, 96, 0.58);
  background: linear-gradient(145deg, rgba(216, 139, 75, 0.14), transparent 48%), rgba(12, 10, 9, 0.86);
}

.admin-module-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--amber);
  border: 1px solid rgba(216, 139, 75, 0.34);
  background: rgba(216, 139, 75, 0.09);
  font-size: 22px;
}

.admin-module-icon svg {
  width: 22px;
  height: 22px;
}

.admin-module-card-compact {
  min-height: 180px;
}

.oauth-character-card {
  gap: 18px;
}

.oauth-character-list {
  display: grid;
  gap: 12px;
}

.oauth-character-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.oauth-character-option:hover,
.oauth-character-option:has(input:checked) {
  border-color: rgba(255, 185, 96, 0.72);
  background: rgba(216, 139, 75, 0.12);
  transform: translateY(-1px);
}

.oauth-character-option strong,
.oauth-character-option small {
  display: block;
}

.oauth-character-option strong {
  color: white;
  text-transform: uppercase;
}

.oauth-character-option small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.admin-module-card h2 {
  margin: 0 0 6px;
  color: white;
  font-size: 24px;
  text-transform: uppercase;
}

.admin-module-links a {
  padding: 9px 11px;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.28);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.admin-insight-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.admin-insight-card,
.admin-quick-settings {
  padding: 22px;
}

.admin-timeline,
.admin-priority-list {
  display: grid;
  gap: 10px;
}

.admin-timeline a,
.admin-priority-list a {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: white;
  border: 1px solid rgba(216, 139, 75, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.admin-timeline a:hover,
.admin-priority-list a:hover {
  border-color: rgba(216, 139, 75, 0.52);
  background: rgba(216, 139, 75, 0.09);
}

.admin-timeline span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
}

.admin-priority-list a {
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
}

.admin-priority-list strong {
  color: white;
  font-size: 28px;
}

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

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

.admin-compact-form .button,
.admin-compact-form .check-label {
  align-self: end;
}

@media (max-width: 1180px) {
  .admin-console {
    grid-template-columns: 1fr;
    padding-top: 170px;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .admin-hero,
  .admin-insight-grid,
  .admin-settings-grid,
  .admin-compact-form {
    grid-template-columns: 1fr;
  }

  .admin-sidebar nav,
  .admin-metric-grid,
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* Veyna 2026 premium refresh: centralized visual layer, no behavioral changes. */
:root {
  --vm-bg: #08090b;
  --vm-bg-soft: #0f1115;
  --vm-surface: rgba(18, 20, 24, 0.82);
  --vm-surface-strong: rgba(24, 27, 32, 0.94);
  --vm-card: rgba(255, 255, 255, 0.055);
  --vm-card-hover: rgba(255, 255, 255, 0.085);
  --vm-border: rgba(255, 255, 255, 0.12);
  --vm-border-strong: rgba(255, 255, 255, 0.2);
  --vm-text: #f7f3ea;
  --vm-muted: #a8adb7;
  --vm-subtle: #737b89;
  --vm-accent: #d6aa5b;
  --vm-accent-2: #7cc7ff;
  --vm-danger: #e46363;
  --vm-success: #67d98f;
  --vm-radius: 8px;
  --vm-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --vm-shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
  --ink: var(--vm-text);
  --muted: var(--vm-muted);
  --charcoal: var(--vm-bg);
  --charcoal-soft: var(--vm-bg-soft);
  --line: var(--vm-border);
  --gold: var(--vm-accent);
  --amber: #f1c778;
  --shadow: var(--vm-shadow);
}

body {
  color: var(--vm-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 170, 91, 0.12), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(124, 199, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #0a0b0e 0%, #08090b 48%, #0d0f13 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

.site-header {
  min-height: 78px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(8, 9, 11, 0.78);
  border-top: 0;
  border-bottom: 1px solid var(--vm-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(8, 9, 11, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.site-header .brand {
  top: 50%;
  left: clamp(18px, 4vw, 56px);
  display: inline-flex;
  justify-items: initial;
  gap: 12px;
  transform: translateY(-50%);
}

.site-header .brand-logo {
  width: 48px;
  height: 48px;
  border: 1px solid var(--vm-border-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

.site-header .brand-text {
  display: inline;
  color: white;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

.site-nav {
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding-left: clamp(138px, 18vw, 230px);
  font-size: 12px;
  font-weight: 800;
  text-shadow: none;
}

.nav-spacer {
  display: none;
}

.nav-group {
  gap: clamp(10px, 2vw, 28px);
}

.site-nav a,
.nav-menu-button,
.nav-avatar-button,
.nav-icon-button {
  border-radius: var(--vm-radius);
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav a:hover,
.nav-menu-button:hover,
.nav-avatar-button:hover,
.nav-icon-button:hover {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

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

.profile-menu,
.nav-main-panel,
.notification-menu,
.account-menu {
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  background: rgba(14, 16, 20, 0.96);
  box-shadow: var(--vm-shadow-soft);
  backdrop-filter: blur(20px);
}

.button,
.mini-button,
.sold-vehicles-link,
.reviews-all-button,
.catalogue-quick-nav a,
.admin-module-links a {
  min-height: 40px;
  border-radius: var(--vm-radius);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.mini-button:hover,
.catalogue-quick-nav a:hover,
.admin-module-links a:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #111318;
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #f4d38c, #c9963f);
  box-shadow: 0 14px 34px rgba(214, 170, 91, 0.24);
}

.button-ghost,
.mini-button,
.sold-vehicles-link,
.reviews-all-button {
  color: var(--vm-text);
  border: 1px solid var(--vm-border);
  background: rgba(255, 255, 255, 0.055);
}

.button-ghost:hover,
.mini-button:hover,
.sold-vehicles-link:hover,
.reviews-all-button:hover {
  border-color: rgba(214, 170, 91, 0.48);
  background: rgba(214, 170, 91, 0.1);
}

.eyebrow {
  color: var(--vm-accent);
  letter-spacing: 0;
  font-weight: 850;
}

.panel-page,
.catalogue-page,
.home-platform-page,
.auth-page {
  background:
    radial-gradient(circle at 10% 6%, rgba(214, 170, 91, 0.12), transparent 30%),
    radial-gradient(circle at 88% 2%, rgba(124, 199, 255, 0.08), transparent 28%),
    var(--vm-bg);
}

.panel-shell,
.garage-shell,
.facemotors-shell {
  width: min(100% - 32px, 1480px);
}

.panel-hero,
.catalogue-hero,
.garage-catalogue-intro,
.facemotors-hero,
.auth-card,
.dashboard,
.vehicle-card,
.platform-vehicle-card,
.garage-product-card,
.garage-sidebar-card,
.garage-toolbar,
.social-profile-card,
.social-compose,
.social-post,
.account-row,
.request-row,
.admin-row,
.development-card,
.announcement-detail,
.review-form-card,
.admin-sidebar,
.admin-sidebar-card,
.admin-metric-grid article,
.admin-module-card,
.admin-insight-card,
.admin-health-card {
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--vm-shadow-soft);
}

.panel-hero,
.catalogue-hero,
.garage-catalogue-intro,
.facemotors-hero,
.admin-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 170, 91, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(13, 15, 19, 0.86);
}

.panel-hero h1,
.catalogue-hero h1,
.garage-catalogue-intro h2,
.facemotors-hero h1,
.auth-card h1,
.platform-hero-copy h1,
.platform-section h2,
.admin-hero h1 {
  color: white;
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.dashboard h3,
.admin-module-card h2,
.garage-product-card h2,
.vehicle-card h3,
.platform-vehicle-card h3 {
  letter-spacing: 0;
  text-transform: none;
}

.vehicle-card,
.platform-vehicle-card,
.garage-product-card,
.social-post,
.admin-module-card {
  overflow: hidden;
}

.vehicle-card:hover,
.platform-vehicle-card:hover,
.garage-product-card:hover,
.social-post:hover,
.admin-module-card:hover {
  border-color: rgba(214, 170, 91, 0.42);
  background: var(--vm-card-hover);
}

.vehicle-media,
.vehicle-card img,
.platform-vehicle-card img,
.garage-product-icon,
.social-post-image,
.account-row-image {
  border-radius: calc(var(--vm-radius) - 2px);
}

.vehicle-form,
.invoice-form,
.invoice-filter-form,
.request-form,
.password-form,
.avatar-form,
.auth-card form,
.review-reply-form,
.inline-admin-form {
  gap: 14px;
}

.vehicle-form label,
.auth-card label,
.account-login label,
.invoice-filter-form label,
.password-form label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

input,
select,
textarea,
.vehicle-form input,
.vehicle-form select,
.vehicle-form textarea,
.auth-card input,
.auth-card textarea,
.invoice-filter-form input,
.invoice-filter-form select {
  color: var(--vm-text);
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

input:focus,
select:focus,
textarea:focus,
.vehicle-form input:focus,
.vehicle-form select:focus,
.vehicle-form textarea:focus,
.auth-card input:focus,
.auth-card textarea:focus,
.invoice-filter-form input:focus,
.invoice-filter-form select:focus {
  outline: 0;
  border-color: rgba(214, 170, 91, 0.72);
  box-shadow: 0 0 0 3px rgba(214, 170, 91, 0.16);
}

input[type="checkbox"],
input[type="radio"],
.vehicle-form input[type="checkbox"],
.vehicle-form input[type="radio"],
.auth-card input[type="checkbox"],
.auth-card input[type="radio"] {
  width: auto;
  min-height: auto;
  accent-color: var(--vm-accent);
  border-radius: 4px;
  box-shadow: none;
}

select option,
select optgroup {
  background: #15181d;
  color: var(--vm-text);
}

.admin-list,
.account-list,
.social-profile-list,
.admin-timeline,
.admin-priority-list {
  gap: 12px;
}

.request-row,
.admin-row,
.account-row,
.social-profile-row,
.profile-notification,
.admin-timeline a,
.admin-priority-list a {
  border-radius: var(--vm-radius);
  border-color: var(--vm-border);
  background: rgba(255, 255, 255, 0.045);
}

.row-title,
.request-row strong,
.admin-row strong,
.account-row h4 {
  color: white;
}

.row-meta,
.empty-note,
.empty-state,
.admin-module-card p,
.admin-metric-grid small,
.admin-health-card small {
  color: var(--vm-muted);
}

.stats-grid,
.admin-metric-grid {
  gap: 14px;
}

.stats-grid article,
.admin-metric-grid article {
  border-color: var(--vm-border);
  background: rgba(255, 255, 255, 0.055);
}

.account-tabs {
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--vm-shadow-soft);
}

.account-tab {
  border-radius: calc(var(--vm-radius) - 2px);
}

.account-tab.is-active,
.account-tab:hover {
  background: rgba(214, 170, 91, 0.14);
  color: white;
}

.facemotors-layout,
.garage-shop-layout {
  align-items: start;
}

.admin-console-page {
  --admin-panel: rgba(13, 15, 19, 0.88);
}

.admin-console {
  width: min(100% - 24px, 1680px);
  padding-top: 128px;
}

.admin-sidebar {
  top: 98px;
  background: rgba(12, 14, 18, 0.76);
  backdrop-filter: blur(18px);
}

.admin-sidebar nav a {
  border-radius: var(--vm-radius);
  text-transform: none;
}

.admin-hero {
  border-radius: var(--vm-radius);
  border-color: var(--vm-border);
  box-shadow: var(--vm-shadow);
}

.admin-hero h1 {
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.98;
}

.admin-module-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--vm-radius);
  color: #111318;
  background: linear-gradient(135deg, #f1cf87, #c7943e);
  font-size: 13px;
  font-weight: 900;
}

.admin-module-links a {
  border-color: var(--vm-border);
  background: rgba(255, 255, 255, 0.055);
}

.admin-priority-list a {
  grid-template-columns: 76px minmax(0, 1fr);
}

.site-footer {
  border-top: 1px solid var(--vm-border);
  background: rgba(8, 9, 11, 0.92);
}

@media (max-width: 1180px) {
  .site-header .brand {
    left: clamp(16px, 3vw, 32px);
  }

  .site-nav {
    padding-left: clamp(112px, 22vw, 190px);
  }

  .admin-console {
    padding-top: 112px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
  }

  .site-header .brand {
    top: 14px;
    transform: none;
  }

  .site-header .brand-logo {
    width: 42px;
    height: 42px;
  }

  .site-header .brand-text {
    display: inline;
    font-size: 12px;
  }

  .site-nav {
    padding-left: 0;
  }

  .nav-toggle {
    border-radius: var(--vm-radius);
    border: 1px solid var(--vm-border);
    background: rgba(255, 255, 255, 0.06);
  }

  .panel-shell,
  .garage-shell,
  .facemotors-shell,
  .admin-console {
    width: min(100% - 20px, 1480px);
  }

  .admin-console {
    padding-top: 104px;
  }

  .admin-hero,
  .panel-hero,
  .catalogue-hero,
  .garage-catalogue-intro,
  .facemotors-hero {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .button,
  .mini-button,
  .welcome-actions .button,
  .hero-actions .button,
  .form-actions .button {
    width: 100%;
    justify-content: center;
  }

  .admin-priority-list a {
    grid-template-columns: 1fr;
  }
}

/* Focused homepage redesign. The previous homepage stays in markup as a safety fallback. */
.home-legacy {
  display: none !important;
}

.home-refined {
  background:
    radial-gradient(circle at 12% 8%, rgba(214, 170, 91, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(8, 9, 11, 0), #090a0d 46%, #0d0f13 100%);
}

.home-refined .refined-hero {
  min-height: min(840px, 100svh);
  padding: clamp(128px, 14vh, 170px) clamp(18px, 5vw, 72px) clamp(56px, 8vw, 96px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-refined .platform-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.86), rgba(5, 6, 8, 0.42) 54%, rgba(5, 6, 8, 0.76)),
    linear-gradient(180deg, rgba(5, 6, 8, 0.16), rgba(5, 6, 8, 0.38) 58%, #090a0d);
}

.refined-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: end;
  gap: clamp(30px, 7vw, 110px);
  width: min(100%, 1360px);
  margin: 0 auto;
}

.refined-hero-copy {
  max-width: 780px;
  gap: 20px;
}

.refined-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(58px, 9vw, 128px);
  line-height: 0.9;
  text-transform: none;
}

.refined-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.5vw, 22px);
}

.refined-hero-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--vm-radius);
  background: rgba(10, 12, 15, 0.64);
  box-shadow: var(--vm-shadow-soft);
  backdrop-filter: blur(18px);
}

.refined-hero-panel a,
.refined-promo-line {
  display: grid;
  gap: 4px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(var(--vm-radius) - 2px);
  background: rgba(255, 255, 255, 0.045);
}

.refined-hero-panel a:hover {
  border-color: rgba(214, 170, 91, 0.46);
  background: rgba(214, 170, 91, 0.1);
}

.refined-hero-panel span,
.refined-promo-line span,
.refined-news-slide small,
.refined-service-card span,
.refined-client-card span {
  color: var(--vm-accent);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.refined-hero-panel strong,
.refined-promo-line strong {
  color: white;
  font-size: 15px;
}

.home-refined .platform-section,
.home-refined .platform-final-cta {
  width: min(100% - 36px, 1360px);
  padding: clamp(58px, 7vw, 96px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.home-refined .platform-section::before {
  display: none;
}

.refined-section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.refined-section-heading-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-width: none;
}

.refined-section-heading h2,
.refined-final-cta h2 {
  margin: 0;
  color: white;
  font-size: clamp(30px, 4.4vw, 62px);
  line-height: 0.98;
}

.refined-section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--vm-muted);
  font-size: 17px;
}

.refined-news {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.refined-news .refined-section-heading {
  margin-bottom: 0;
}

.refined-news-slider {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  overflow: hidden;
  background: var(--vm-surface);
  box-shadow: var(--vm-shadow-soft);
}

.refined-news-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.refined-news-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.refined-news-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
}

.refined-news-slide div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 42px);
}

.refined-news-slide h3 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.02;
}

.refined-news-slide p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--vm-muted);
  line-height: 1.55;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.refined-news-dots {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
}

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

.refined-service-card,
.refined-client-card {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 260px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(14, 16, 20, 0.78);
  box-shadow: var(--vm-shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.refined-service-card:hover,
.refined-client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 170, 91, 0.46);
  background: rgba(214, 170, 91, 0.1);
}

.refined-service-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 2.6vw, 36px);
}

.refined-service-card p,
.refined-client-card small {
  margin: 0;
  color: var(--vm-muted);
  line-height: 1.5;
}

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

.refined-vehicle-card {
  min-height: 360px;
}

.refined-vehicle-card img {
  aspect-ratio: 1.62;
}

.refined-confidence {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.refined-confidence .refined-section-heading {
  margin-bottom: 0;
}

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

.refined-client-card {
  min-height: 190px;
}

.refined-client-card strong {
  color: white;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
}

.refined-contest-card {
  border-color: rgba(124, 199, 255, 0.34);
}

.refined-final-cta {
  gap: 18px;
  text-align: center;
}

.refined-final-cta .welcome-actions {
  justify-content: center;
}

@media (max-width: 1180px) {
  .refined-hero-inner,
  .refined-news,
  .refined-confidence {
    grid-template-columns: 1fr;
  }

  .refined-hero-panel {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .home-refined .refined-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .refined-hero-copy {
    text-align: left;
  }

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

  .refined-news-slide {
    grid-template-columns: 1fr;
  }

  .refined-news-slide img {
    height: 210px;
  }

  .refined-news-slider {
    min-height: 500px;
  }

  .refined-section-heading-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-refined .platform-section,
  .home-refined .platform-final-cta {
    width: min(100% - 22px, 1360px);
    padding: 48px 0;
  }

  .refined-hero-inner {
    gap: 24px;
  }

  .refined-hero-panel,
  .refined-service-card,
  .refined-client-card {
    padding: 14px;
  }
}

/* Veyna Motors homepage rebuild. */
.vm-home {
  color: var(--vm-text);
  background: #08090b;
  overflow: hidden;
}

.vm-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(130px, 16vh, 180px) clamp(18px, 5vw, 72px) clamp(42px, 7vw, 86px);
  overflow: hidden;
}

.vm-hero-media,
.vm-hero-media .hero-image,
.vm-hero-shade {
  position: absolute;
  inset: 0;
}

.vm-hero-media {
  z-index: -2;
}

.vm-hero-media .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.98) contrast(1.04);
}

.vm-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.9), rgba(5, 6, 8, 0.36) 54%, rgba(5, 6, 8, 0.74)),
    linear-gradient(180deg, rgba(5, 6, 8, 0.2), rgba(5, 6, 8, 0.5) 66%, #08090b);
}

.vm-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: end;
  gap: clamp(28px, 7vw, 120px);
  width: min(100%, 1380px);
  margin: 0 auto;
}

.vm-hero-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
  max-width: 790px;
}

.vm-hero-copy h1,
.vm-section-head h2,
.vm-aftercare-copy h2,
.vm-final h2 {
  margin: 0;
  color: white;
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.vm-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(64px, 10.5vw, 156px);
  font-weight: 850;
  line-height: 0.86;
}

.vm-hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.55;
}

.vm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vm-hero-feature {
  display: grid;
  gap: 10px;
  padding: 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--vm-radius);
  background: rgba(11, 13, 16, 0.66);
  box-shadow: var(--vm-shadow-soft);
  backdrop-filter: blur(20px);
}

.vm-hero-feature:hover,
.vm-service-grid a:hover,
.vm-vehicle-card:hover,
.vm-proof-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 170, 91, 0.48);
}

.vm-hero-feature img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: calc(var(--vm-radius) - 2px);
}

.vm-hero-feature span,
.vm-strip .eyebrow,
.vm-section .eyebrow,
.vm-final .eyebrow {
  color: var(--vm-accent);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.vm-hero-feature strong {
  color: white;
  font-size: 20px;
}

.vm-hero-feature small {
  color: var(--vm-muted);
}

.vm-strip,
.vm-section,
.vm-final {
  width: min(100% - 36px, 1380px);
  margin: 0 auto;
}

.vm-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vm-strip h2 {
  margin: 4px 0 0;
  color: white;
  font-size: clamp(22px, 3vw, 34px);
}

.vm-strip-slider {
  position: relative;
  min-height: 112px;
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  background: rgba(255, 255, 255, 0.045);
}

.vm-strip-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px 120px 20px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.vm-strip-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.vm-strip-slide span {
  color: white;
  font-size: 18px;
  font-weight: 850;
}

.vm-strip-slide small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vm-muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.vm-strip-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
}

.vm-section {
  padding: clamp(70px, 9vw, 128px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vm-section-head {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.vm-section-head-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-width: none;
}

.vm-section-head h2,
.vm-aftercare-copy h2,
.vm-final h2 {
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.98;
}

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

.vm-service-grid a,
.vm-proof-grid a {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(15, 17, 21, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.vm-service-grid span {
  color: var(--vm-accent);
  font-size: 12px;
  font-weight: 900;
}

.vm-service-grid strong {
  color: white;
  font-size: clamp(26px, 3vw, 42px);
}

.vm-service-grid small {
  max-width: 310px;
  color: var(--vm-muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.vm-vehicle-card {
  display: grid;
  overflow: hidden;
  color: white;
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  background: rgba(15, 17, 21, 0.9);
  transition: transform 180ms ease, border-color 180ms ease;
}

.vm-vehicle-card img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
  filter: brightness(0.88);
}

.vm-vehicle-card div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.vm-vehicle-card span {
  color: var(--vm-accent);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.vm-vehicle-card strong {
  color: white;
  font-size: clamp(24px, 2.6vw, 36px);
}

.vm-vehicle-card small {
  color: var(--vm-muted);
}

.vm-aftercare {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.vm-aftercare-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.vm-aftercare-copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  color: var(--vm-muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.vm-proof-grid a {
  min-height: 190px;
}

.vm-proof-grid strong {
  color: white;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.9;
}

.vm-proof-grid span {
  color: var(--vm-muted);
  font-weight: 800;
}

.vm-final {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(72px, 10vw, 130px) 0;
  text-align: center;
}

.vm-home [data-scroll-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.vm-home [data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .vm-hero-content,
  .vm-strip,
  .vm-aftercare {
    grid-template-columns: 1fr;
  }

  .vm-hero-feature {
    max-width: 560px;
  }
}

@media (max-width: 820px) {
  .vm-hero {
    min-height: auto;
    padding: 128px 18px 54px;
  }

  .vm-hero-copy h1 {
    font-size: clamp(54px, 16vw, 86px);
  }

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

  .vm-section-head-row {
    grid-template-columns: 1fr;
  }

  .vm-strip-slide {
    padding-right: 22px;
  }

  .vm-strip-dots {
    position: static;
    justify-content: flex-start;
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
  .vm-strip,
  .vm-section,
  .vm-final {
    width: min(100% - 22px, 1380px);
  }

  .vm-service-grid a,
  .vm-proof-grid a {
    min-height: 210px;
  }
}

/* Final art direction pass: darker, quieter, more marque premium. */
.vm-home {
  --vm-home-bg: #050607;
  --vm-home-line: rgba(255, 255, 255, 0.105);
  --vm-home-soft: rgba(255, 255, 255, 0.055);
  --vm-home-text: #f8f6f0;
  --vm-home-muted: rgba(248, 246, 240, 0.62);
  --vm-home-faint: rgba(248, 246, 240, 0.42);
  color: var(--vm-home-text);
  background:
    radial-gradient(circle at 16% 0%, rgba(214, 170, 91, 0.07), transparent 28%),
    linear-gradient(180deg, #050607, #090a0d 58%, #050607);
}

.vm-home .button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0;
}

.vm-home .button-primary {
  color: #050607;
  border-color: rgba(255, 255, 255, 0.72);
  background: #f4f0e8;
  box-shadow: none;
}

.vm-home .button-ghost {
  color: var(--vm-home-text);
  border-color: var(--vm-home-line);
  background: rgba(255, 255, 255, 0.025);
}

.vm-home .button:hover {
  transform: translateY(-1px);
}

.vm-hero {
  min-height: 100svh;
  align-items: center;
  padding: clamp(128px, 15vh, 172px) clamp(18px, 5vw, 72px) clamp(56px, 8vw, 94px);
}

.vm-hero-media .hero-image {
  filter: brightness(0.66) saturate(0.82) contrast(1.08);
}

.vm-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.46) 52%, rgba(5, 6, 7, 0.72)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.22), rgba(5, 6, 7, 0.28) 52%, #050607);
}

.vm-hero-content {
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  align-items: center;
  width: min(100%, 1420px);
}

.vm-hero-copy {
  gap: 24px;
}

.vm-hero-copy .eyebrow,
.vm-section .eyebrow,
.vm-final .eyebrow {
  color: rgba(244, 240, 232, 0.72);
  font-size: 11px;
  letter-spacing: 0;
}

.vm-hero-copy h1 {
  max-width: 880px;
  font-size: clamp(66px, 11vw, 168px);
  font-weight: 760;
  line-height: 0.84;
}

.vm-hero-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--vm-home-muted);
  font-size: clamp(16px, 1.35vw, 20px);
}

.vm-hero-feature {
  align-self: end;
  gap: 8px;
  padding: 0 0 0 18px;
  border: 0;
  border-left: 1px solid var(--vm-home-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.vm-hero-feature img {
  aspect-ratio: 1.85;
  border-radius: 4px;
  filter: brightness(0.78);
}

.vm-hero-feature span {
  color: var(--vm-home-faint);
}

.vm-hero-feature strong {
  font-size: 18px;
  font-weight: 760;
}

.vm-hero-feature small {
  color: var(--vm-home-muted);
}

.vm-section,
.vm-final {
  width: min(100% - 44px, 1320px);
  padding: clamp(84px, 10vw, 150px) 0;
  border-bottom: 1px solid var(--vm-home-line);
}

.vm-section-head {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.vm-section-head h2,
.vm-aftercare-copy h2,
.vm-final h2 {
  max-width: 760px;
  font-size: clamp(34px, 5.4vw, 78px);
  font-weight: 680;
  line-height: 1;
}

.vm-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}

.vm-service-grid a {
  min-height: 210px;
  padding: 28px 0 0;
  border: 0;
  border-top: 1px solid var(--vm-home-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vm-service-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 240, 232, 0.42);
  background: transparent;
}

.vm-service-grid span {
  color: var(--vm-home-faint);
}

.vm-service-grid strong {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 680;
}

.vm-service-grid small {
  color: var(--vm-home-muted);
}

.vm-selection {
  padding-top: clamp(74px, 9vw, 128px);
}

.vm-vehicle-grid {
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: clamp(16px, 2vw, 28px);
}

.vm-vehicle-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vm-vehicle-card:hover {
  transform: translateY(-2px);
  border-color: transparent;
}

.vm-vehicle-card img {
  aspect-ratio: 1.5;
  border-radius: 4px;
  filter: brightness(0.82) saturate(0.88);
}

.vm-vehicle-card div {
  padding: 16px 0 0;
  border-top: 1px solid var(--vm-home-line);
}

.vm-vehicle-card span {
  color: var(--vm-home-faint);
}

.vm-vehicle-card strong {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 680;
}

.vm-vehicle-card small {
  color: var(--vm-home-muted);
}

.vm-aftercare {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
}

.vm-aftercare-copy {
  gap: 20px;
}

.vm-aftercare-copy p:not(.eyebrow) {
  color: var(--vm-home-muted);
}

.vm-proof-grid {
  gap: 0;
  border-top: 1px solid var(--vm-home-line);
}

.vm-proof-grid a {
  min-height: 140px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--vm-home-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vm-proof-grid a:hover {
  transform: none;
  border-color: var(--vm-home-line);
  background: transparent;
}

.vm-proof-grid strong {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 680;
}

.vm-proof-grid span {
  color: var(--vm-home-muted);
}

.vm-final {
  border-bottom: 0;
}

@media (max-width: 1100px) {
  .vm-hero-content,
  .vm-aftercare {
    grid-template-columns: 1fr;
  }

  .vm-hero-feature {
    width: min(100%, 520px);
  }
}

@media (max-width: 820px) {
  .vm-hero {
    min-height: 92svh;
    padding: 122px 18px 46px;
  }

  .vm-hero-content {
    gap: 34px;
  }

  .vm-hero-copy h1 {
    font-size: clamp(58px, 18vw, 96px);
  }

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

  .vm-section,
  .vm-final {
    width: min(100% - 26px, 1320px);
    padding: 64px 0;
  }

  .vm-service-grid a {
    min-height: 160px;
  }

  .vm-proof-grid a {
    min-height: 112px;
  }
}

/* Radical minimal homepage: hero + two essential links. */
.vm-home-minimal {
  min-height: 100vh;
  color: #f7f3ea;
  background: #050607;
}

.vm-minimal-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(112px, 14vh, 164px) 22px clamp(58px, 8vh, 92px);
  overflow: hidden;
  text-align: center;
}

.vm-minimal-media,
.vm-minimal-media .hero-image,
.vm-minimal-shade {
  position: absolute;
  inset: 0;
}

.vm-minimal-media {
  z-index: -2;
}

.vm-minimal-media .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.54) saturate(0.82) contrast(1.08);
}

.vm-minimal-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.34), rgba(5, 6, 7, 0.9)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.2), rgba(5, 6, 7, 0.72) 76%, #050607);
}

.vm-minimal-content {
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(100%, 920px);
}

.vm-minimal-content h1 {
  margin: 0;
  color: white;
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(64px, 11vw, 158px);
  font-weight: 720;
  line-height: 0.86;
  letter-spacing: 0;
}

.vm-minimal-content p {
  max-width: 540px;
  margin: 0;
  color: rgba(247, 243, 234, 0.72);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
}

.vm-minimal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.vm-home-minimal .button {
  min-height: 48px;
  min-width: 174px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
}

.vm-home-minimal .button-primary {
  color: #050607;
  border-color: rgba(255, 255, 255, 0.86);
  background: #f2eee5;
}

.vm-home-minimal .button-ghost {
  color: #f7f3ea;
  border-color: rgba(247, 243, 234, 0.32);
  background: rgba(255, 255, 255, 0.035);
}

.vm-minimal-orientation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(100% - 44px, 1040px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 108px) 0 clamp(76px, 10vw, 132px);
  border-top: 1px solid rgba(247, 243, 234, 0.14);
}

.vm-minimal-orientation a {
  display: grid;
  gap: 10px;
  min-height: 150px;
  align-content: end;
  padding: 0 clamp(20px, 4vw, 46px) 26px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.14);
}

.vm-minimal-orientation a + a {
  border-left: 1px solid rgba(247, 243, 234, 0.14);
}

.vm-minimal-orientation span {
  color: rgba(247, 243, 234, 0.48);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.vm-minimal-orientation strong {
  color: #f7f3ea;
  font-size: clamp(23px, 2.8vw, 36px);
  font-weight: 680;
  line-height: 1.08;
}

.vm-minimal-orientation a:hover {
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 720px) {
  .vm-minimal-hero {
    min-height: 88svh;
    padding: 118px 18px 48px;
  }

  .vm-minimal-content h1 {
    font-size: clamp(54px, 18vw, 88px);
  }

  .vm-minimal-actions,
  .vm-home-minimal .button {
    width: 100%;
  }

  .vm-minimal-orientation {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1040px);
    padding-top: 46px;
  }

  .vm-minimal-orientation a {
    min-height: 128px;
    padding: 0 0 24px;
  }

  .vm-minimal-orientation a + a {
    border-left: 0;
  }
}

/* Homepage landing: one cinematic hero + one vehicle section. */
.vm-home-minimal {
  background: #050607;
}

.vm-home-minimal .vm-minimal-hero {
  min-height: 100svh;
  padding: clamp(132px, 18vh, 196px) 22px clamp(132px, 18vh, 178px);
}

.vm-home-minimal .vm-minimal-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.68), rgba(5, 6, 7, 0.22) 48%, rgba(5, 6, 7, 0.66)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.16), rgba(5, 6, 7, 0.18) 48%, rgba(5, 6, 7, 0.82));
}

.vm-home-minimal .vm-minimal-media .hero-image {
  filter: brightness(0.64) saturate(0.86) contrast(1.08);
}

.vm-minimal-logo {
  position: absolute;
  top: clamp(88px, 12vh, 122px);
  left: 50%;
  z-index: 2;
  width: clamp(76px, 8vw, 118px);
  height: clamp(76px, 8vw, 118px);
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.48));
}

.vm-home-minimal .vm-minimal-content {
  gap: 20px;
  margin-top: clamp(36px, 8vh, 92px);
}

.vm-home-minimal .vm-minimal-content h1 {
  font-size: clamp(66px, 11.5vw, 164px);
  font-weight: 720;
}

.vm-home-minimal .vm-minimal-content p {
  max-width: 520px;
  color: rgba(247, 243, 234, 0.76);
}

.vm-home-minimal .vm-minimal-actions {
  max-width: 760px;
}

.vm-vehicle-search {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 6vh, 54px);
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(220px, 520px) auto;
  align-items: center;
  gap: 14px;
  width: min(calc(100% - 44px), 900px);
  padding: 12px;
  transform: translateX(-50%);
  border: 1px solid rgba(247, 243, 234, 0.18);
  border-radius: 6px;
  background: rgba(8, 9, 11, 0.62);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.vm-vehicle-search label {
  padding-left: 8px;
  color: rgba(247, 243, 234, 0.54);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.vm-vehicle-search input {
  width: 100%;
  min-height: 44px;
  color: #f7f3ea;
  border: 0;
  border-left: 1px solid rgba(247, 243, 234, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vm-vehicle-search input:focus {
  box-shadow: none;
}

.vm-vehicle-search button {
  min-height: 44px;
  padding: 0 18px;
  color: #050607;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 4px;
  background: #f2eee5;
  font-weight: 850;
  cursor: pointer;
}

.vm-minimal-vehicles {
  width: min(100% - 44px, 1220px);
  margin: 0 auto;
  padding: clamp(86px, 10vw, 140px) 0 clamp(96px, 11vw, 150px);
}

.vm-minimal-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.vm-minimal-section-head span {
  color: rgba(247, 243, 234, 0.48);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.vm-minimal-section-head h2 {
  margin: 6px 0 0;
  color: #f7f3ea;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 680;
  line-height: 1;
}

.vm-minimal-section-head a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(247, 243, 234, 0.2);
  border-radius: 4px;
  color: #f7f3ea;
  font-size: 13px;
  font-weight: 850;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vm-minimal-section-head a:hover,
.vm-minimal-section-head a:focus-visible {
  color: var(--vm-accent, #d6aa5b);
  border-color: rgba(214, 170, 91, 0.72);
  background: rgba(214, 170, 91, 0.08);
  box-shadow: 0 0 28px rgba(214, 170, 91, 0.12);
  transform: translateY(-2px);
}

.vm-minimal-section-head a span {
  transition: transform 180ms ease;
}

.vm-minimal-section-head a:hover span,
.vm-minimal-section-head a:focus-visible span {
  transform: translateX(4px);
}

.vm-minimal-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
}

.vm-minimal-vehicle-grid a {
  display: grid;
  gap: 10px;
  color: #f7f3ea;
}

.vm-minimal-vehicle-grid img {
  width: 100%;
  aspect-ratio: 1.54;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.84) saturate(0.9);
}

.vm-minimal-vehicle-grid strong {
  padding-top: 10px;
  border-top: 1px solid rgba(247, 243, 234, 0.13);
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 680;
}

.vm-minimal-vehicle-grid small {
  color: rgba(247, 243, 234, 0.58);
}

@media (max-width: 860px) {
  .vm-vehicle-search {
    grid-template-columns: 1fr;
    gap: 8px;
    bottom: 22px;
  }

  .vm-vehicle-search label {
    padding-left: 0;
  }

  .vm-vehicle-search input {
    border-left: 0;
    border-top: 1px solid rgba(247, 243, 234, 0.14);
  }

  .vm-minimal-section-head,
  .vm-minimal-vehicle-grid {
    grid-template-columns: 1fr;
  }

  .vm-minimal-section-head a {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .vm-home-minimal .vm-minimal-hero {
    min-height: 100svh;
    padding: 118px 14px 190px;
  }

  .vm-minimal-logo {
    top: 82px;
    width: 72px;
    height: 72px;
  }

  .vm-home-minimal .vm-minimal-content h1 {
    font-size: clamp(54px, 19vw, 88px);
  }

  .vm-home-minimal .vm-minimal-actions {
    width: 100%;
  }

  .vm-home-minimal .button,
  .vm-vehicle-search button {
    width: 100%;
  }

  .vm-minimal-vehicles {
    width: min(100% - 24px, 1220px);
  }
}

/* Hero reduced to image + controls. */
.vm-home-minimal .vm-minimal-hero {
  min-height: 100svh;
  place-items: end center;
  padding: 92px clamp(14px, 4vw, 46px) clamp(18px, 4vh, 42px);
}

.vm-home-minimal .vm-minimal-media .hero-image {
  filter: none;
}

.vm-home-minimal .vm-minimal-shade {
  background: linear-gradient(180deg, transparent 58%, rgba(5, 6, 7, 0.3) 76%, rgba(5, 6, 7, 0.72) 100%);
}

.vm-minimal-content,
.vm-minimal-logo {
  display: none;
}

.vm-hero-control {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  justify-items: center;
  width: min(calc(100vw - 36px), 860px);
  margin-inline: auto;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(214, 170, 91, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(7, 7, 7, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.vm-vehicle-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: rgba(247, 243, 234, 0.82);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.vm-vehicle-count span,
.vm-vehicle-count strong {
  color: var(--vm-accent);
  font-size: 18px;
}

.vm-contest-card {
  position: absolute;
  top: clamp(84px, 10vh, 104px);
  right: clamp(-98px, -5vw, -58px);
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 382px;
  padding: 10px 62px;
  color: #f7f3ea;
  text-decoration: none;
  text-align: center;
  border-block: 1px solid rgba(255, 204, 92, 0.72);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(209, 39, 158, 0.94), rgba(134, 42, 118, 0.92) 48%, rgba(184, 115, 76, 0.96)),
    rgba(0, 0, 0, 0.72);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34), 0 0 32px rgba(255, 74, 178, 0.2);
  backdrop-filter: blur(14px);
  transform: rotate(28deg);
  transform-origin: center;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.vm-contest-card:hover,
.vm-contest-card:focus-visible {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 42px rgba(255, 74, 178, 0.24);
  transform: rotate(28deg) translateY(-2px);
}

.vm-contest-card span,
.vm-contest-card small {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vm-contest-card span {
  color: rgba(255, 246, 226, 0.92);
}

.vm-contest-card strong {
  color: #f7f3ea;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.05;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.vm-contest-card small {
  color: rgba(247, 243, 234, 0.72);
}

.vm-css-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--vm-accent);
  vertical-align: middle;
}

.vm-css-icon-car::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 2px 2px 3px 3px;
}

.vm-css-icon-car::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 3px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  box-shadow: -3px 8px 0 -1px currentColor, 3px 8px 0 -1px currentColor;
}

.vm-css-icon-garage::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 7px;
  bottom: 2px;
  border: 1.5px solid currentColor;
  border-top: 0;
}

.vm-css-icon-garage::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-left: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.vm-css-icon-arrow::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.vm-css-icon-arrow::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 3px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.vm-css-icon-search::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.vm-css-icon-search::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 6px;
  height: 1.7px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.vm-home-minimal .vm-minimal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: none;
  width: 100%;
  margin-inline: auto;
  margin-block: 0;
}

.vm-home-minimal .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  flex: 1 1 180px;
  max-width: 205px;
  min-height: 43px;
  font-size: 12px;
  border-color: rgba(247, 243, 234, 0.18);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(247, 243, 234, 0.86);
}

.vm-home-minimal .button:hover,
.vm-home-minimal .button:focus-visible {
  color: var(--vm-accent);
  border-color: rgba(214, 170, 91, 0.72);
  background: rgba(214, 170, 91, 0.09);
  box-shadow: 0 0 24px rgba(214, 170, 91, 0.1);
  transform: translateY(-1px);
}

.vm-home-minimal .button .vm-css-icon {
  color: var(--vm-accent);
  width: 14px;
  height: 14px;
}

.vm-home-minimal .button-primary {
  color: rgba(247, 243, 234, 0.86);
  border-color: rgba(247, 243, 234, 0.18);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.vm-vehicle-search {
  position: static;
  display: grid;
  grid-template-columns: 92px minmax(180px, 1fr) 126px;
  width: 100%;
  padding: 0;
  transform: none;
  border: 1px solid rgba(247, 243, 234, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
}

.vm-vehicle-search label {
  display: grid;
  place-items: center;
  align-self: center;
  padding-left: 0;
  color: rgba(214, 170, 91, 0.82);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vm-vehicle-search input {
  min-height: 46px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.vm-vehicle-search button {
  min-height: 46px;
  color: var(--vm-accent);
  border: 0;
  border-left: 1px solid rgba(214, 170, 91, 0.18);
  border-radius: 0;
  background: rgba(214, 170, 91, 0.08);
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .vm-home-minimal .vm-minimal-hero {
    padding: 86px 12px 18px;
  }

  .vm-home-minimal .vm-minimal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vm-home-minimal .button {
    max-width: none;
  }

  .vm-contest-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-bottom: 4px;
    padding: 12px 14px;
    transform: none;
  }

  .vm-contest-card:hover,
  .vm-contest-card:focus-visible {
    transform: translateY(-1px);
  }

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

  .vm-vehicle-search label {
    justify-content: start;
    min-height: 34px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(247, 243, 234, 0.1);
  }

  .vm-vehicle-search button {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(214, 170, 91, 0.18);
    border-left: 0;
  }
}

/* Homepage lower section: keep the premium mood without a flat black slab. */
.vm-home-minimal {
  background:
    radial-gradient(circle at 28% 0, rgba(214, 170, 91, 0.12), transparent 34%),
    linear-gradient(180deg, #111111 0%, #151310 44%, #0d0e10 100%);
}

.vm-home-minimal .vm-minimal-shade {
  background: linear-gradient(180deg, transparent 62%, rgba(15, 14, 12, 0.18) 80%, rgba(17, 16, 14, 0.5) 100%);
}

.vm-home-minimal .vm-minimal-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  height: 82px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.98), rgba(7, 8, 10, 0.92));
  border-bottom: 1px solid rgba(247, 243, 234, 0.1);
}

.vm-minimal-vehicles {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(76px, 9vw, 118px) max(22px, calc((100vw - 1220px) / 2)) clamp(92px, 10vw, 138px);
  background:
    linear-gradient(180deg, rgba(32, 29, 24, 0.92) 0%, rgba(18, 18, 18, 0.98) 58%, #111214 100%),
    radial-gradient(circle at 50% 0, rgba(214, 170, 91, 0.12), transparent 36%);
  border-top: 1px solid rgba(214, 170, 91, 0.2);
}

.vm-minimal-vehicles::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.018));
}

.vm-minimal-section-head,
.vm-minimal-vehicle-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 1220px);
  margin-inline: auto;
}

.vm-minimal-vehicle-grid img {
  filter: brightness(0.98) saturate(1.02) contrast(1.03);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

/* Premium footer refresh with dynamic partners preserved. */
.veyna-footer {
  color: rgba(247, 243, 234, 0.72);
  border-top: 1px solid rgba(214, 170, 91, 0.18);
  background:
    radial-gradient(circle at 12% 0, rgba(214, 170, 91, 0.13), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.045), transparent 26%),
    linear-gradient(180deg, #111111 0%, #08090b 100%);
}

.veyna-footer-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 0.8fr) minmax(240px, 1fr) minmax(220px, 0.95fr);
  gap: clamp(18px, 3vw, 38px);
  width: min(100% - 44px, 1320px);
  margin: 0 auto;
  padding: clamp(24px, 3.6vw, 42px) 0;
}

.veyna-footer-discover {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100% - 44px, 1320px);
  margin: 0 auto;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(214, 170, 91, 0.18);
  color: #f7f3ea;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease;
}

.veyna-footer-discover:hover {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214, 170, 91, 0.12) 20%,
    rgba(214, 170, 91, 0.12) 80%,
    transparent
  );
}

.veyna-footer-discover i:first-child {
  color: #d88b4b;
  flex: 0 0 auto;
}

.veyna-footer-discover i:last-child {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.veyna-footer-discover:hover i:last-child {
  transform: translateX(4px);
}

.veyna-footer-discover span {
  font-size: 13px;
}

.veyna-footer-discover strong {
  color: #d88b4b;
}

@media (max-width: 560px) {
  .veyna-footer-discover {
    flex-wrap: wrap;
  }

  .veyna-footer-discover i:last-child {
    display: none;
  }
}

.veyna-footer-shell.no-partners {
  grid-template-columns: minmax(220px, 1.15fr) minmax(180px, 0.75fr) minmax(220px, 0.9fr);
}

.veyna-footer h2 {
  margin: 0 0 10px;
  color: #f7f3ea;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.veyna-footer a {
  color: inherit;
  text-decoration: none;
}

.veyna-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  color: #fff;
  font-weight: 850;
  text-transform: uppercase;
}

.veyna-footer-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border: 1px solid rgba(214, 170, 91, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
}

.veyna-footer-brand p {
  max-width: 310px;
  margin: 0 0 10px;
  line-height: 1.45;
}

.veyna-footer-brand address,
.veyna-footer-nav {
  display: grid;
  gap: 6px;
}

.veyna-footer-community {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 6px;
  text-align: center;
}

.veyna-footer-legal {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
}

.veyna-footer-legal a {
  color: rgba(247, 243, 234, 0.44);
  font-size: 12px;
}

.veyna-footer-legal a:hover,
.veyna-footer-legal a:focus-visible {
  color: rgba(247, 243, 234, 0.72);
}

.veyna-footer-brand address {
  font-style: normal;
}

.veyna-footer-brand address span,
.veyna-footer-brand address a,
.veyna-footer-nav a,
.veyna-community-card span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.veyna-footer svg {
  width: 16px;
  height: 16px;
  color: var(--vm-accent, #d6aa5b);
  stroke-width: 1.8;
}

.veyna-footer-nav a {
  width: fit-content;
  min-height: 26px;
  color: rgba(247, 243, 234, 0.72);
  transition: color 180ms ease, transform 180ms ease;
}

.veyna-footer-nav a:hover,
.veyna-footer-nav a:focus-visible {
  color: #f7f3ea;
  transform: translateX(3px);
}

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

.veyna-partner-card {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 8px;
  color: rgba(247, 243, 234, 0.82);
  text-align: center;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.veyna-partner-card:hover,
.veyna-partner-card:focus-visible {
  border-color: rgba(214, 170, 91, 0.62);
  background: rgba(214, 170, 91, 0.065);
  transform: translateY(-2px) scale(1.02);
}

.veyna-partner-card img {
  max-width: 104px;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.08);
  opacity: 0.68;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.veyna-partner-card:hover img,
.veyna-partner-card:focus-visible img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.veyna-partner-card strong {
  font-size: 12px;
  font-weight: 850;
}

.veyna-footer-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  color: rgba(247, 243, 234, 0.5);
  border: 1px dashed rgba(247, 243, 234, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.veyna-community-card {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.026);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.veyna-community-card:hover,
.veyna-community-card:focus-visible {
  border-color: rgba(214, 170, 91, 0.58);
  background: rgba(214, 170, 91, 0.06);
  transform: translateY(-2px);
}

.veyna-community-card span {
  color: rgba(247, 243, 234, 0.62);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.veyna-community-card strong {
  color: #f7f3ea;
  font-size: 16px;
  font-weight: 850;
}

.veyna-community-card small {
  color: rgba(247, 243, 234, 0.58);
}

.veyna-discord-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  align-self: center;
  color: rgba(247, 243, 234, 0.74);
  border-radius: 50%;
  background: transparent;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.veyna-footer .veyna-discord-icon svg {
  width: 44px;
  height: 44px;
  display: block;
  fill: currentColor;
  color: currentColor;
  stroke: none;
}

.veyna-discord-icon:hover,
.veyna-discord-icon:focus-visible {
  color: var(--vm-accent, #d6aa5b);
  background: rgba(214, 170, 91, 0.055);
  transform: translateY(-1px);
}

/* Premium side navigation drawer. */
.nav-main-menu {
  position: relative;
}

.nav-main-menu[open] {
  z-index: 120;
}

.nav-menu-button {
  position: relative;
  z-index: 125;
  overflow: hidden;
}

.nav-menu-label {
  display: grid;
  min-width: 52px;
}

.nav-menu-label-open,
.nav-menu-label-close {
  grid-area: 1 / 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu-label-close {
  opacity: 0;
  transform: translateY(8px);
}

.nav-main-menu[open] .nav-menu-label-open {
  opacity: 0;
  transform: translateY(-8px);
}

.nav-main-menu[open] .nav-menu-label-close {
  opacity: 1;
  transform: translateY(0);
}

.nav-main-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  will-change: opacity;
}

.nav-main-menu[open] .nav-main-backdrop {
  pointer-events: auto;
  animation: navOverlayIn 240ms ease both;
}

.nav-main-menu.is-closing .nav-main-backdrop {
  animation: navOverlayOut 180ms ease both;
}

.profile-menu.nav-main-panel {
  position: fixed;
  top: 88px;
  bottom: 18px;
  left: 18px;
  right: auto;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 18px;
  width: min(386px, calc(100vw - 36px));
  height: auto;
  max-height: calc(100svh - 106px);
  padding: 18px;
  margin: 0;
  overflow-y: auto;
  color: rgba(247, 243, 234, 0.86);
  border: 1px solid rgba(214, 170, 91, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(214, 170, 91, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(17, 18, 19, 0.96), rgba(7, 7, 8, 0.97));
  box-shadow: none;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform-origin: left center;
  backface-visibility: hidden;
  contain: layout paint style;
  isolation: isolate;
  will-change: transform, opacity;
}

.profile-menu.nav-main-panel::before,
.profile-menu.nav-main-panel::after,
.nav-main-panel::before,
.nav-main-panel::after {
  display: none;
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.1);
}

.nav-drawer-head img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border: 1px solid rgba(214, 170, 91, 0.36);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
}

.nav-drawer-head strong,
.nav-drawer-head span {
  display: block;
}

.nav-drawer-head strong {
  color: #f7f3ea;
  font-size: 14px;
  font-weight: 900;
}

.nav-drawer-head span {
  margin-top: 2px;
  color: rgba(247, 243, 234, 0.5);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.nav-drawer-section h2 {
  margin: 4px 0 2px;
  color: rgba(214, 170, 91, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-menu.nav-main-panel .nav-drawer-section a,
.profile-menu.nav-main-panel .nav-drawer-foot a {
  display: flex !important;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(247, 243, 234, 0.74);
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 13px;
  font-weight: 850;
  text-transform: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.profile-menu.nav-main-panel .nav-drawer-section a svg,
.profile-menu.nav-main-panel .nav-drawer-foot a svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: rgba(214, 170, 91, 0.86);
  stroke-width: 1.9;
}

.profile-menu.nav-main-panel .nav-drawer-section a:hover,
.profile-menu.nav-main-panel .nav-drawer-section a:focus-visible,
.profile-menu.nav-main-panel .nav-drawer-foot a:hover,
.profile-menu.nav-main-panel .nav-drawer-foot a:focus-visible {
  color: #f7f3ea;
  border-color: rgba(214, 170, 91, 0.42);
  background: rgba(214, 170, 91, 0.07);
  transform: translateX(4px);
}

.nav-drawer-foot {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(247, 243, 234, 0.1);
}

.profile-menu.nav-main-panel .nav-drawer-foot .nav-drawer-discord {
  min-height: 38px;
  width: fit-content;
  padding-right: 14px;
}

.nav-drawer-foot > span,
.nav-drawer-foot small {
  color: rgba(247, 243, 234, 0.42);
  font-size: 11px;
  font-weight: 750;
}

.nav-drawer-head,
.nav-drawer-section,
.nav-drawer-foot {
  opacity: 1;
  transform: none;
}

.nav-main-menu[open] .nav-drawer-head {
  animation: none;
}

.nav-main-menu[open] .nav-drawer-section:nth-of-type(1) {
  animation: none;
}

.nav-main-menu[open] .nav-drawer-section:nth-of-type(2) {
  animation: none;
}

.nav-main-menu[open] .nav-drawer-section:nth-of-type(3) {
  animation: none;
}

.nav-main-menu[open] .nav-drawer-foot {
  animation: none;
}

@media (max-width: 720px) {
  .profile-menu.nav-main-panel {
    top: 82px;
    bottom: 12px;
    left: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100svh - 94px);
    padding: 16px;
    border-radius: 16px;
  }
}

/* Hard override: keep the main menu as a real side drawer, never a tiny dropdown. */
.nav-main-menu > .profile-menu.nav-main-panel {
  position: fixed !important;
  top: 88px !important;
  right: auto !important;
  bottom: 20px !important;
  left: 20px !important;
  width: min(440px, calc(100vw - 40px)) !important;
  min-width: min(440px, calc(100vw - 40px)) !important;
  height: calc(100svh - 108px) !important;
  min-height: 520px;
  max-height: calc(100svh - 108px) !important;
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  padding: 22px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-main-menu > .profile-menu.nav-main-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-head,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot {
  flex: 0 0 auto;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-head {
  padding-bottom: 18px;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-head img {
  width: 54px;
  height: 54px;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-head strong {
  font-size: 17px;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section {
  gap: 9px;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section h2 {
  margin-top: 2px;
  margin-bottom: 4px;
  font-size: 12px;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section a,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot a {
  min-height: 50px;
  padding: 0 15px;
  font-size: 14px;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section a svg,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot a svg {
  width: 20px;
  height: 20px;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot {
  margin-top: auto;
}

@media (max-width: 720px) {
  .nav-main-menu > .profile-menu.nav-main-panel {
    top: 82px !important;
    bottom: 14px !important;
    left: 14px !important;
    width: calc(100vw - 28px) !important;
    min-width: 0 !important;
    height: calc(100svh - 96px) !important;
    min-height: 0;
    max-height: calc(100svh - 96px) !important;
    padding: 18px !important;
  }
}

/* Side drawer v2: app-like premium navigation. */
html.is-main-menu-open,
body.is-main-menu-open {
  overflow: hidden;
}

.nav-main-menu > .nav-main-backdrop {
  position: fixed;
  inset: 0;
  z-index: 86;
  display: block;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(214, 170, 91, 0.08), transparent 34%),
    rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 260ms ease-in-out;
  will-change: opacity;
}

.nav-main-menu[open] > .nav-main-backdrop {
  pointer-events: auto;
  opacity: 1;
  animation: none;
}

.nav-main-menu.is-closing > .nav-main-backdrop {
  opacity: 0;
  animation: none;
}

.nav-main-menu > .profile-menu.nav-main-panel {
  top: 86px !important;
  bottom: 22px !important;
  left: 22px !important;
  z-index: 90;
  width: min(430px, calc(100vw - 44px)) !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0;
  max-height: calc(100svh - 108px) !important;
  display: flex !important;
  flex-direction: column;
  gap: 22px;
  padding: 24px !important;
  color: rgba(247, 243, 234, 0.86);
  border: 1px solid rgba(214, 170, 91, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(214, 170, 91, 0.12), transparent 30%),
    linear-gradient(165deg, rgba(21, 20, 18, 0.98), rgba(7, 8, 9, 0.985) 58%, rgba(3, 4, 5, 0.99));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  contain: layout paint style;
  isolation: isolate;
  backface-visibility: hidden;
  transform: translate3d(-112%, 0, 0);
  opacity: 0;
  will-change: transform, opacity;
}

.nav-main-menu > .profile-menu.nav-main-panel::-webkit-scrollbar {
  display: none;
}

.nav-main-menu[open] > .profile-menu.nav-main-panel {
  animation: veynaDrawerIn 280ms ease-in-out both;
}

.nav-main-menu.is-closing > .profile-menu.nav-main-panel {
  animation: veynaDrawerOut 240ms ease-in-out both;
}

.nav-main-menu > .profile-menu.nav-main-panel::before,
.nav-main-menu > .profile-menu.nav-main-panel::after {
  display: none !important;
}

.nav-menu-button {
  border-radius: 10px;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.nav-menu-icon i {
  transform-origin: center;
  transition: transform 220ms ease-in-out, opacity 180ms ease-in-out;
}

.nav-menu-label-open,
.nav-menu-label-close {
  transition: opacity 190ms ease-in-out, transform 190ms ease-in-out;
}

.nav-drawer-head {
  gap: 14px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.09);
}

.nav-drawer-head img {
  width: 52px !important;
  height: 52px !important;
  border-color: rgba(214, 170, 91, 0.3);
}

.nav-drawer-head strong {
  color: #f7f3ea;
  font-size: 18px !important;
  line-height: 1.1;
}

.nav-drawer-head span {
  color: rgba(247, 243, 234, 0.46);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.nav-drawer-section {
  display: grid;
  gap: 9px !important;
}

.nav-drawer-section h2 {
  margin: 0 0 2px !important;
  color: rgba(214, 170, 91, 0.78);
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section a,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot a {
  min-height: 48px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: rgba(247, 243, 234, 0.72);
  border: 1px solid rgba(247, 243, 234, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section a svg,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot a svg {
  width: 19px;
  height: 19px;
  color: rgba(214, 170, 91, 0.72);
  stroke-width: 1.8;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section a:hover,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section a:focus-visible,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot a:hover,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot a:focus-visible {
  color: #f7f3ea;
  border-color: rgba(214, 170, 91, 0.42);
  background: rgba(214, 170, 91, 0.06);
  transform: translate3d(5px, 0, 0);
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section a:hover svg,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-section a:focus-visible svg,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot a:hover svg,
.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot a:focus-visible svg {
  color: rgba(214, 170, 91, 0.95);
  transform: translate3d(1px, 0, 0);
}

.nav-drawer-foot {
  gap: 9px;
  margin-top: auto !important;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 243, 234, 0.09);
}

.nav-main-menu > .profile-menu.nav-main-panel .nav-drawer-foot .nav-drawer-discord {
  width: fit-content;
  min-height: 40px;
  padding-right: 16px;
}

.nav-drawer-foot > span,
.nav-drawer-foot small {
  color: rgba(247, 243, 234, 0.38);
  font-size: 11px;
}

@keyframes veynaDrawerIn {
  from {
    opacity: 0;
    transform: translate3d(-112%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes veynaDrawerOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-112%, 0, 0);
  }
}

@media (max-width: 720px) {
  .nav-main-menu > .profile-menu.nav-main-panel {
    top: 78px !important;
    bottom: 14px !important;
    left: 14px !important;
    width: calc(100vw - 28px) !important;
    max-height: calc(100svh - 92px) !important;
    padding: 18px !important;
    border-radius: 18px;
  }
}

/* Final drawer isolation: no dropdown/profile-menu inheritance. */
.nav-main-menu > .nav-main-panel {
  position: fixed !important;
  top: 86px !important;
  left: 22px !important;
  right: auto !important;
  bottom: 22px !important;
  z-index: 90;
  width: min(430px, calc(100vw - 44px)) !important;
  height: auto !important;
  max-height: calc(100svh - 108px) !important;
  display: flex !important;
  flex-direction: column;
  gap: 22px;
  padding: 24px !important;
  margin: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  color: rgba(247, 243, 234, 0.86);
  border: 1px solid rgba(214, 170, 91, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(214, 170, 91, 0.12), transparent 30%),
    linear-gradient(165deg, rgba(21, 20, 18, 0.98), rgba(7, 8, 9, 0.985) 58%, rgba(3, 4, 5, 0.99));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  scrollbar-width: none;
  -ms-overflow-style: none;
  contain: layout paint style;
  isolation: isolate;
  backface-visibility: hidden;
  transform: translate3d(-112%, 0, 0);
  opacity: 0;
  will-change: transform, opacity;
}

.nav-main-menu > .nav-main-panel::-webkit-scrollbar {
  display: none;
}

.nav-main-menu[open] > .nav-main-panel {
  animation: veynaDrawerIn 280ms ease-in-out both;
}

.nav-main-menu.is-closing > .nav-main-panel {
  animation: veynaDrawerOut 240ms ease-in-out both;
}

.nav-main-menu > .nav-main-panel::before,
.nav-main-menu > .nav-main-panel::after {
  display: none !important;
}

.nav-main-menu > .nav-main-panel .nav-drawer-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.09);
}

.nav-main-menu > .nav-main-panel .nav-drawer-head img {
  width: 52px !important;
  height: 52px !important;
  object-fit: contain;
  border: 1px solid rgba(214, 170, 91, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
}

.nav-main-menu > .nav-main-panel .nav-drawer-head strong,
.nav-main-menu > .nav-main-panel .nav-drawer-head span {
  display: block;
}

.nav-main-menu > .nav-main-panel .nav-drawer-head strong {
  color: #f7f3ea;
  font-size: 18px !important;
  font-weight: 900;
  line-height: 1.1;
}

.nav-main-menu > .nav-main-panel .nav-drawer-head span {
  margin-top: 3px;
  color: rgba(247, 243, 234, 0.46);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-main-menu > .nav-main-panel .nav-drawer-section {
  display: grid;
  gap: 9px !important;
}

.nav-main-menu > .nav-main-panel .nav-drawer-section h2 {
  margin: 0 0 2px !important;
  color: rgba(214, 170, 91, 0.78);
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-main-menu > .nav-main-panel .nav-drawer-section a,
.nav-main-menu > .nav-main-panel .nav-drawer-foot a {
  min-height: 48px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: rgba(247, 243, 234, 0.72);
  border: 1px solid rgba(247, 243, 234, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-main-menu > .nav-main-panel .nav-drawer-section a svg,
.nav-main-menu > .nav-main-panel .nav-drawer-foot a svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: rgba(214, 170, 91, 0.72);
  stroke-width: 1.8;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-main-menu > .nav-main-panel .nav-drawer-section a:hover,
.nav-main-menu > .nav-main-panel .nav-drawer-section a:focus-visible,
.nav-main-menu > .nav-main-panel .nav-drawer-foot a:hover,
.nav-main-menu > .nav-main-panel .nav-drawer-foot a:focus-visible {
  color: #f7f3ea;
  border-color: rgba(214, 170, 91, 0.42);
  background: rgba(214, 170, 91, 0.06);
  transform: translate3d(5px, 0, 0);
}

.nav-main-menu > .nav-main-panel .nav-drawer-foot {
  display: grid;
  gap: 9px;
  margin-top: auto !important;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 243, 234, 0.09);
}

.nav-main-menu > .nav-main-panel .nav-drawer-foot .nav-drawer-discord {
  width: fit-content;
  min-height: 40px;
  padding-right: 16px;
}

.nav-main-menu > .nav-main-panel .nav-drawer-foot > span,
.nav-main-menu > .nav-main-panel .nav-drawer-foot small {
  color: rgba(247, 243, 234, 0.38);
  font-size: 11px;
}

@media (max-width: 720px) {
  .nav-main-menu > .nav-main-panel {
    top: 78px !important;
    left: 14px !important;
    bottom: 14px !important;
    width: calc(100vw - 28px) !important;
    max-height: calc(100svh - 92px) !important;
    padding: 18px !important;
    border-radius: 18px;
  }
}

.veyna-footer-bottom {
  width: min(100% - 44px, 1320px);
  margin: 0 auto;
  padding: 10px 0 14px;
  border-top: 1px solid rgba(247, 243, 234, 0.1);
  font-size: 12px;
  text-align: center;
}

.veyna-footer-gtaw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.veyna-footer-gtaw img {
  height: 24px;
  width: auto;
  opacity: 0.85;
}

.veyna-footer-bottom a {
  color: rgba(247, 243, 234, 0.48);
}

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

  .veyna-footer-shell.no-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 36px, 820px);
    column-gap: clamp(22px, 5vw, 44px);
  }

  .veyna-footer-shell.no-partners .veyna-footer-community {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 6px;
  }
}

@media (max-width: 680px) {
  .veyna-footer-shell {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1320px);
  }

  .veyna-footer-bottom {
    width: min(100% - 28px, 1320px);
  }

  .veyna-footer.no-partners .veyna-footer-bottom,
  .veyna-footer-shell.no-partners {
    width: min(100% - 28px, 1320px);
  }

  .veyna-footer-shell.no-partners .veyna-footer-brand,
  .veyna-footer-shell.no-partners .veyna-footer-nav,
  .veyna-footer-shell.no-partners .veyna-footer-community {
    justify-self: stretch;
    justify-items: start;
    text-align: left;
  }

  .veyna-footer-shell.no-partners .veyna-footer-community {
    grid-column: auto;
  }

  .veyna-partner-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer final compact pass. */
.veyna-footer-shell {
  padding: 28px 0 18px;
  gap: clamp(14px, 2.4vw, 28px);
}

.veyna-footer-shell.no-partners {
  width: min(100% - 44px, 1060px);
  grid-template-columns: minmax(280px, 1.05fr) minmax(220px, 0.75fr) minmax(180px, 0.55fr);
  align-items: start;
  justify-content: center;
  column-gap: clamp(44px, 7vw, 96px);
}

.veyna-footer-shell.no-partners .veyna-footer-brand {
  justify-self: start;
}

.veyna-footer-shell.no-partners .veyna-footer-nav {
  justify-self: center;
}

.veyna-footer-shell.no-partners .veyna-footer-community {
  justify-self: end;
  justify-items: center;
  text-align: center;
}

.veyna-footer.no-partners .veyna-footer-bottom {
  width: min(100% - 44px, 1060px);
}

@media (max-width: 1100px) {
  .veyna-footer-shell.no-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 36px, 820px);
    column-gap: clamp(22px, 5vw, 44px);
  }

  .veyna-footer-shell.no-partners .veyna-footer-community {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 6px;
  }
}

@media (max-width: 680px) {
  .veyna-footer.no-partners .veyna-footer-bottom,
  .veyna-footer-shell.no-partners {
    width: min(100% - 28px, 1320px);
  }

  .veyna-footer-shell.no-partners {
    grid-template-columns: 1fr;
  }

  .veyna-footer-shell.no-partners .veyna-footer-brand,
  .veyna-footer-shell.no-partners .veyna-footer-nav,
  .veyna-footer-shell.no-partners .veyna-footer-community {
    justify-self: stretch;
    justify-items: start;
    text-align: left;
  }

  .veyna-footer-shell.no-partners .veyna-footer-community {
    grid-column: auto;
  }
}

.veyna-footer-brand p {
  margin-bottom: 6px;
}

.veyna-footer-brand address,
.veyna-footer-nav,
.veyna-footer-community {
  gap: 4px;
}

.veyna-community-card {
  padding: 9px 11px;
}

.veyna-footer-bottom {
  padding: 7px 0 10px;
}

/* FaceMotors temporary development lock. */
.facemotors-dev-page {
  background:
    radial-gradient(circle at 20% 0, rgba(214, 170, 91, 0.12), transparent 32%),
    #07080a;
}

.facemotors-dev-shell {
  min-height: 72vh;
  width: min(100% - 32px, 960px);
  margin: 0 auto;
  padding: 150px 0 80px;
  display: grid;
  place-items: center;
}

.facemotors-dev-card {
  max-width: 680px;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
  border: 1px solid rgba(214, 170, 91, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 13, 15, 0.84);
  box-shadow: none;
}

.facemotors-dev-card h1 {
  margin: 0;
  color: #f7f3ea;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
}

.facemotors-dev-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px auto 24px;
  color: rgba(247, 243, 234, 0.68);
  line-height: 1.7;
}

/* Premium recent vehicle carousel. */
.vm-minimal-section-head p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(247, 243, 234, 0.56);
  font-size: 14px;
}

.vm-minimal-section-head::after {
  content: "";
  width: 44px;
  height: 2px;
  align-self: end;
  justify-self: start;
  grid-column: 1;
  margin-top: 18px;
  background: var(--vm-accent, #d6aa5b);
}

.vm-vehicle-carousel {
  position: relative;
}

.vm-vehicle-carousel-viewport {
  overflow: hidden;
}

.vm-minimal-vehicle-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  grid-template-columns: none;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 2px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.vm-minimal-vehicle-grid::-webkit-scrollbar {
  display: none;
}

.vm-recent-vehicle-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 352px;
  color: #f7f3ea;
  text-decoration: none;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(6, 7, 8, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.vm-recent-vehicle-card:hover,
.vm-recent-vehicle-card:focus-visible {
  border-color: rgba(214, 170, 91, 0.78);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), 0 0 32px rgba(214, 170, 91, 0.14);
  transform: translateY(-8px) scale(1.02);
}

.vm-recent-vehicle-media {
  position: relative;
  display: block;
  min-height: 245px;
  overflow: hidden;
}

.vm-recent-vehicle-media img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  filter: brightness(0.92) saturate(0.95) contrast(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.vm-recent-vehicle-card:hover img,
.vm-recent-vehicle-card:focus-visible img {
  filter: brightness(1) saturate(1.04) contrast(1.04);
  transform: scale(1.045);
}

.vm-recent-vehicle-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 220ms ease, background 220ms ease;
}

.vm-recent-vehicle-overlay span {
  padding: 12px 16px;
  color: #070707;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: #f3dfb8;
  font-size: 12px;
  font-weight: 850;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.vm-recent-vehicle-card:hover .vm-recent-vehicle-overlay,
.vm-recent-vehicle-card:focus-visible .vm-recent-vehicle-overlay {
  background: rgba(0, 0, 0, 0.26);
  opacity: 1;
}

.vm-recent-vehicle-card:hover .vm-recent-vehicle-overlay span,
.vm-recent-vehicle-card:focus-visible .vm-recent-vehicle-overlay span {
  opacity: 1;
  transform: translateY(0);
}

.vm-recent-vehicle-body {
  display: grid;
  gap: 8px;
  padding: 16px 18px 18px;
}

.vm-recent-vehicle-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}

.vm-recent-vehicle-badges span {
  padding: 5px 8px;
  color: rgba(247, 243, 234, 0.72);
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  font-weight: 750;
  text-transform: none;
}

.vm-recent-vehicle-card strong {
  padding: 0;
  border-top: 0;
  color: #f7f3ea;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 850;
  line-height: 1.1;
}

.vm-recent-vehicle-card small {
  color: var(--vm-accent, #d6aa5b);
  font-size: 14px;
  font-weight: 850;
}

.vm-vehicle-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.vm-vehicle-carousel-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #f7f3ea;
  border: 1px solid rgba(214, 170, 91, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.vm-vehicle-carousel-controls button:hover,
.vm-vehicle-carousel-controls button:focus-visible {
  border-color: rgba(214, 170, 91, 0.82);
  background: rgba(214, 170, 91, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .vm-minimal-vehicle-grid {
    grid-auto-columns: calc((100% - 18px) / 2);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .vm-minimal-section-head {
    grid-template-columns: 1fr;
  }

  .vm-minimal-vehicle-grid {
    grid-auto-columns: 100%;
  }

  .vm-recent-vehicle-card {
    min-height: 330px;
  }

  .vm-recent-vehicle-card:hover,
  .vm-recent-vehicle-card:focus-visible {
    transform: translateY(-4px) scale(1.01);
  }
}

/* Quieter visual pass: remove heavy card/container shadows. */
.vm-hero-control,
.vm-contest-card,
.vm-minimal-vehicle-grid img,
.vm-recent-vehicle-card,
.veyna-community-card,
.veyna-partner-card {
  box-shadow: none;
}

.vm-contest-card:hover,
.vm-contest-card:focus-visible,
.vm-recent-vehicle-card:hover,
.vm-recent-vehicle-card:focus-visible,
.veyna-community-card:hover,
.veyna-community-card:focus-visible,
.veyna-partner-card:hover,
.veyna-partner-card:focus-visible {
  box-shadow: none;
}

.vm-minimal-section-head a:hover,
.vm-minimal-section-head a:focus-visible,
.vm-home-minimal .button:hover,
.vm-home-minimal .button:focus-visible {
  box-shadow: none;
}

/* Homepage finishing pass: subtle premium polish only. */
.home-platform-page .site-header {
  min-height: 76px;
  border-bottom: 1px solid rgba(214, 170, 91, 0.14);
  background: rgba(5, 6, 7, 0.82);
  backdrop-filter: blur(14px);
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.home-platform-page .site-header.is-scrolled {
  min-height: 64px;
  border-color: rgba(214, 170, 91, 0.24);
  background: rgba(5, 6, 7, 0.94);
}

.home-platform-page .nav-menu-button,
.home-platform-page .nav-icon-button,
.home-platform-page .nav-avatar-button {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.home-platform-page .nav-icon-button:hover,
.home-platform-page .nav-avatar-button:hover,
.home-platform-page .nav-menu-button:hover {
  box-shadow: none;
  transform: translateY(-1px);
}

/* Premium account and notification dropdowns. */
.site-header .nav-actions {
  gap: 12px;
}

.site-header .nav-icon-button,
.site-header .nav-avatar-button {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border-color: rgba(216, 139, 75, 0.62);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.26);
  color: rgba(255, 255, 255, 0.88);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.site-header .nav-icon-button:hover,
.site-header .nav-avatar-button:hover,
.site-header .nav-icon-button:focus-visible,
.site-header .nav-avatar-button:focus-visible {
  color: #f7f3ea;
  border-color: rgba(255, 190, 112, 0.92);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.34);
  transform: translateY(-1px);
}

.site-header .nav-icon-button > i {
  width: 20px;
  height: 20px;
  color: rgba(255, 207, 109, 0.95);
  stroke-width: 1.9;
}

.site-header .nav-icon-button > svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 207, 109, 0.95);
  stroke-width: 1.9;
}

.site-header .nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.site-header .profile-menu.account-menu,
.site-header .profile-menu.notification-menu {
  width: min(320px, calc(100vw - 28px));
  max-height: min(720px, calc(100svh - 118px));
  padding: 14px;
  border: 1px solid rgba(216, 139, 75, 0.48);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 0, rgba(216, 139, 75, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(17, 18, 20, 0.98), rgba(7, 8, 10, 0.99));
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.site-header .profile-menu.account-menu::-webkit-scrollbar,
.site-header .profile-menu.notification-menu::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.site-header .profile-menu::before {
  right: 20px;
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.12), rgba(255, 255, 255, 0.02)),
    #111214;
}

.site-header .account-menu .profile-menu-user {
  display: grid;
  gap: 6px;
  padding: 16px;
  margin-bottom: 12px;
  border-color: rgba(216, 139, 75, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.018);
}

.site-header .account-menu .profile-menu-user strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #f7f3ea;
  font-size: 14px;
  line-height: 1.2;
}

.site-header .account-menu .profile-menu-user strong i {
  width: 16px;
  height: 16px;
  color: rgba(216, 139, 75, 0.9);
}

.site-header .account-menu .profile-menu-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
}

.site-header .account-menu .profile-menu-section:first-of-type {
  margin-top: 0;
}

.site-header .account-menu .profile-menu-section summary {
  min-height: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 24px;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: rgba(247, 243, 234, 0.92);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header .account-menu .profile-menu-section summary span {
  color: #f7f3ea;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header .account-menu .profile-menu-section summary small {
  justify-self: end;
  color: rgba(247, 243, 234, 0.36);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header .account-menu .profile-menu-section summary::after {
  content: "-";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: rgba(216, 139, 75, 0.9);
  border: 1px solid rgba(216, 139, 75, 0.24);
  border-radius: 4px;
  background: rgba(216, 139, 75, 0.055);
}

.site-header .account-menu .profile-menu-section:not([open]) summary::after {
  content: "+";
}

.site-header .account-menu .profile-menu-links {
  display: grid;
  gap: 7px;
  padding-top: 8px;
}

.site-header .account-menu .profile-menu-links a,
.site-header .account-menu .profile-menu-session a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 11px;
  color: rgba(247, 243, 234, 0.74);
  border: 1px solid rgba(247, 243, 234, 0.055);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.016);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.site-header .account-menu .profile-menu-links a:hover,
.site-header .account-menu .profile-menu-links a:focus-visible,
.site-header .account-menu .profile-menu-session a:hover,
.site-header .account-menu .profile-menu-session a:focus-visible {
  color: #f7f3ea;
  border-color: rgba(216, 139, 75, 0.38);
  background: rgba(216, 139, 75, 0.06);
  transform: translateX(3px);
}

.site-header .account-menu .profile-menu-links a > span,
.site-header .account-menu .profile-menu-session a > span {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  color: rgba(216, 139, 75, 0.82);
  border: 1px solid rgba(216, 139, 75, 0.18);
  border-radius: 9px;
  background: rgba(216, 139, 75, 0.05);
  font-size: 0;
}

.site-header .account-menu .profile-menu-links a > span i,
.site-header .account-menu .profile-menu-session a > span i,
.site-header .account-menu .profile-menu-links a > span svg,
.site-header .account-menu .profile-menu-session a > span svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  color: rgba(216, 139, 75, 0.9);
  stroke-width: 1.9;
}

.site-header .account-menu .profile-menu-links a > span:not(:has(i))::before,
.site-header .account-menu .profile-menu-session a > span:not(:has(i))::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(216, 139, 75, 0.14);
}

.site-header .account-menu .profile-menu-links a > span:has(svg)::before,
.site-header .account-menu .profile-menu-session a > span:has(svg)::before,
.site-header .account-menu .profile-menu-links a > span:has(i)::before,
.site-header .account-menu .profile-menu-session a > span:has(i)::before {
  display: none;
}

.site-header .account-menu .profile-menu-session {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
}

.site-header .notification-menu {
  width: min(310px, calc(100vw - 28px));
}

.site-header .profile-notifications {
  display: grid;
  gap: 12px;
  border: 0;
  background: transparent;
}

.site-header .profile-notifications-head {
  padding: 10px 10px 0;
}

.site-header .profile-notifications-head strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f7f3ea;
}

.site-header .profile-notifications-head strong i {
  width: 17px;
  height: 17px;
  color: rgba(216, 139, 75, 0.9);
}

.site-header .profile-notifications-head button {
  padding: 0;
  color: var(--amber, #d8aa5b);
  border: 0;
  background: transparent;
}

.site-header .profile-notification-list {
  gap: 0;
  max-height: 340px;
  padding: 0 4px 4px;
}

.site-header .profile-menu .profile-notification {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 11px 8px;
  border: 0;
  border-bottom: 1px solid rgba(247, 243, 234, 0.075);
  border-radius: 0;
  background: transparent;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-header .profile-menu .profile-notification:last-child {
  border-bottom: 0;
}

.site-header .profile-menu .profile-notification:hover,
.site-header .profile-menu .profile-notification:focus-visible {
  background: rgba(216, 139, 75, 0.055);
  transform: translateX(2px);
}

.site-header .profile-notification-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(216, 139, 75, 0.92);
  border: 1px solid rgba(216, 139, 75, 0.2);
  border-radius: 9px;
  background: rgba(216, 139, 75, 0.045);
}

.site-header .profile-notification-icon svg,
.site-header .profile-notification-icon i {
  width: 15px;
  height: 15px;
  stroke-width: 1.9;
}

.site-header .profile-notification-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.site-header .profile-menu .profile-notification:not(.is-read) {
  padding-left: 8px;
  background: transparent;
  box-shadow: none;
}

.site-header .profile-menu .profile-notification:not(.is-read)::before {
  display: none;
  content: none;
}

.site-header .profile-menu .profile-notification:not(.is-read) .profile-notification-icon {
  border-color: rgba(216, 139, 75, 0.42);
  background: rgba(216, 139, 75, 0.08);
}

.site-header .profile-menu .profile-notification strong {
  color: #f7f3ea;
  font-size: 12px;
  line-height: 1.25;
}

.site-header .profile-menu .profile-notification .profile-notification-copy > span {
  color: rgba(247, 243, 234, 0.62);
  font-size: 11px;
  line-height: 1.45;
}

.site-header .notification-all-link {
  min-height: 38px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 6px 2px;
  color: var(--amber, #d8aa5b);
  border: 1px solid rgba(216, 139, 75, 0.22);
  border-radius: 10px;
  background: rgba(216, 139, 75, 0.035);
}

.vm-home-minimal .vm-minimal-hero {
  overflow: hidden;
  animation: vmHeroSoftIn 700ms ease both;
}

.vm-home-minimal .vm-minimal-media .hero-image {
  transform: scale(1.02);
  transform-origin: center;
  animation-name: heroFade, vmHeroKenBurns;
  animation-duration: calc(var(--slide-count) * 9s), 34s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-delay: calc(var(--slide-index) * 9s), 0s;
}

.vm-home-minimal .vm-minimal-media .hero-image:first-child {
  animation-name: heroFadeFirst, vmHeroKenBurns;
}

.vm-home-minimal .vm-minimal-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.62), rgba(5, 6, 7, 0.08) 42%, rgba(5, 6, 7, 0.22)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.08), transparent 54%, rgba(5, 6, 7, 0.52) 100%);
}

.vm-hero-intro {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  top: 50%;
  z-index: 3;
  width: min(440px, calc(100vw - 48px));
  display: grid;
  gap: 16px;
  transform: translateY(-54%);
  animation: vmHeroIntroIn 760ms ease 120ms both;
}

.vm-hero-intro .eyebrow {
  margin: 0;
  color: var(--vm-accent, #d6aa5b);
  font-size: 12px;
  letter-spacing: 0;
}

.vm-hero-intro h1 {
  margin: 0;
  color: #f7f3ea;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: 0;
}

.vm-hero-intro p:not(.eyebrow) {
  max-width: 420px;
  margin: 0;
  color: rgba(247, 243, 234, 0.74);
  line-height: 1.55;
}

.vm-hero-intro .button {
  width: fit-content;
  min-width: 0;
  gap: 9px;
  padding-inline: 20px;
}

.vm-hero-intro .button-primary {
  color: #17110a;
  border-color: rgba(214, 170, 91, 0.9);
  background: linear-gradient(180deg, #e0b96f, #bd8540);
}

.vm-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  margin-top: clamp(22px, 4vh, 42px);
}

.vm-hero-proof span {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 2px;
  align-items: start;
}

.vm-hero-proof svg {
  grid-row: span 2;
  width: 20px;
  height: 20px;
  color: var(--vm-accent, #d6aa5b);
}

.vm-hero-proof strong {
  color: rgba(247, 243, 234, 0.9);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.vm-hero-proof small {
  color: rgba(247, 243, 234, 0.58);
  font-size: 11px;
  line-height: 1.3;
}

.vm-hero-control .vm-hero-proof {
  width: min(100%, 640px);
  margin: 4px auto 0;
  justify-items: center;
  align-items: center;
}

.vm-hero-control .vm-hero-proof span {
  justify-content: center;
}

.vm-hero-intro .button svg,
.vm-home-minimal .button svg,
.vm-vehicle-search button svg {
  width: 16px;
  height: 16px;
}

.vm-hero-control {
  width: min(100%, 760px);
  padding: 18px;
  gap: 14px;
  border: 1px solid rgba(214, 170, 91, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(8, 9, 10, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: none !important;
  animation: vmHeroControlIn 720ms ease 260ms both;
}

.vm-vehicle-count {
  margin-bottom: 2px;
  color: rgba(247, 243, 234, 0.7);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.vm-vehicle-count strong {
  color: var(--vm-accent, #d6aa5b);
  font-size: 18px;
}

.vm-home-minimal .vm-minimal-actions {
  gap: 10px;
}

.vm-home-minimal .button {
  min-height: 44px;
  gap: 9px;
  border-radius: 10px;
  font-size: 12px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.vm-home-minimal .vm-minimal-actions .button-primary {
  color: #17110a;
  border-color: rgba(214, 170, 91, 0.9);
  background: linear-gradient(180deg, #e0b96f, #bd8540);
}

.vm-home-minimal .vm-minimal-actions .button-ghost {
  color: rgba(247, 243, 234, 0.78);
  border-color: rgba(247, 243, 234, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.vm-home-minimal .button:hover,
.vm-home-minimal .button:focus-visible {
  color: #f7f3ea;
  border-color: rgba(214, 170, 91, 0.68);
  background: rgba(214, 170, 91, 0.1);
  transform: translateY(-2px);
}

.vm-home-minimal .vm-minimal-actions .button-primary:hover,
.vm-home-minimal .vm-minimal-actions .button-primary:focus-visible {
  color: #090806;
  background: linear-gradient(180deg, #e9c77f, #c9934b);
}

.vm-vehicle-search {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

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

.vm-vehicle-search input {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, background 180ms ease;
}

.vm-vehicle-search input:focus {
  border-color: rgba(214, 170, 91, 0.58);
  background: rgba(0, 0, 0, 0.3);
}

.vm-vehicle-search button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  color: #15100a;
  background: linear-gradient(180deg, #e0b96f, #bd8540);
  box-shadow: none !important;
  transition: transform 180ms ease, background 180ms ease;
}

.vm-vehicle-search button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #e9c77f, #c9934b);
}

.vm-recent-vehicle-card,
.vm-contest-card,
.vm-hero-control,
.vm-minimal-section-head a {
  box-shadow: none !important;
}

.vm-recent-vehicle-card:hover,
.vm-recent-vehicle-card:focus-visible {
  box-shadow: none !important;
  transform: translateY(-5px) scale(1.01);
}

@keyframes vmHeroSoftIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes vmHeroIntroIn {
  from { opacity: 0; transform: translateY(calc(-54% + 14px)); }
  to { opacity: 1; transform: translateY(-54%); }
}

@keyframes vmHeroControlIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes vmHeroKenBurns {
  0% { transform: scale(1.02); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1.02); }
}

@media (max-width: 980px) {
  .vm-hero-intro {
    top: clamp(110px, 18vh, 150px);
    transform: none;
  }

  @keyframes vmHeroIntroIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 760px) {
  .vm-hero-intro {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0 auto 16px;
    text-align: left;
  }

  .vm-hero-intro h1 {
    font-size: clamp(30px, 10vw, 48px);
  }

  .vm-hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .vm-hero-control {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
  }

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

/* Center the hero title above the search card. */
.vm-home-minimal .vm-hero-intro {
  left: 50%;
  top: auto;
  bottom: clamp(285px, 34vh, 390px);
  width: min(620px, calc(100vw - 32px));
  justify-items: center;
  text-align: center;
  transform: translateX(-50%);
}

.vm-home-minimal .vm-hero-intro .eyebrow {
  color: rgba(214, 170, 91, 0.92);
}

.vm-home-minimal .vm-hero-intro h1 {
  font-size: clamp(42px, 6vw, 86px);
}

.vm-hero-rating {
  position: relative;
  display: inline-grid;
  justify-items: center;
  gap: 4px;
  margin-top: 12px;
  padding-inline: clamp(34px, 5vw, 62px);
  color: rgba(247, 243, 234, 0.92);
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease;
}

.vm-hero-rating::before,
.vm-hero-rating::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(30px, 3.8vw, 46px);
  height: clamp(40px, 5vw, 60px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 68'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='1' x2='0' y2='0'%3E%3Cstop offset='0' stop-color='%23c9793c'/%3E%3Cstop offset='0.5' stop-color='%23f0b862'/%3E%3Cstop offset='1' stop-color='%23fbe3ae'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M26 66 C24 50 28 30 22 4' fill='none' stroke='url(%23g)' stroke-width='1.6' stroke-linecap='round'/%3E%3Cg fill='url(%23g)'%3E%3Cpath fill-opacity='0.95' transform='translate(25 58) rotate(-40) scale(1.1)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.95' transform='translate(25 58) rotate(40) scale(1.1)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.9' transform='translate(25.5 49) rotate(-40) scale(1.0)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.9' transform='translate(25.5 49) rotate(40) scale(1.0)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.85' transform='translate(26 40) rotate(-40) scale(0.88)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.85' transform='translate(26 40) rotate(40) scale(0.88)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.8' transform='translate(25 31) rotate(-40) scale(0.75)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.8' transform='translate(25 31) rotate(40) scale(0.75)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.75' transform='translate(23.5 22) rotate(-40) scale(0.6)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.75' transform='translate(23.5 22) rotate(40) scale(0.6)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.7' transform='translate(22.5 13) rotate(-40) scale(0.48)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3Cpath fill-opacity='0.7' transform='translate(22.5 13) rotate(40) scale(0.48)' d='M0 0 C2.8 -4.8 2.8 -10 0 -15 C-2.8 -10 -2.8 -4.8 0 0 Z'/%3E%3C/g%3E%3Ccircle cx='22' cy='4' r='2.3' fill='url(%23g)' fill-opacity='0.9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 0 8px rgba(216, 139, 75, 0.22));
  transform: translateY(-50%) rotate(-8deg);
}

.vm-hero-rating::before {
  right: calc(100% - clamp(28px, 3.6vw, 42px));
}

.vm-hero-rating::after {
  left: calc(100% - clamp(28px, 3.6vw, 42px));
  transform: translateY(-50%) scaleX(-1) rotate(-8deg);
}

.vm-hero-rating span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.vm-hero-rating strong {
  color: #f7f3ea;
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 950;
}

.vm-hero-rating b {
  color: #f0b862;
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.vm-hero-rating small {
  color: rgba(247, 243, 234, 0.68);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 650;
}

.vm-hero-rating:hover,
.vm-hero-rating:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}

@keyframes vmHeroIntroIn {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 760px) {
  .vm-home-minimal .vm-hero-intro {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 0 auto 16px;
    transform: none;
  }

  @keyframes vmHeroIntroIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

.catalogue-page .vehicle-card,
.catalogue-page .catalogue-card,
.catalogue-page .vehicle-media,
.catalogue-page .catalogue-showcase-hero,
.catalogue-page .catalogue-showcase-ribbon,
.catalogue-page .catalogue-section-head > span {
  box-shadow: none;
}

.catalogue-page .catalogue-card:hover,
.catalogue-page .vehicle-card:hover,
.catalogue-page .catalogue-showcase-ribbon:hover,
.catalogue-page .sold-vehicles-link,
.catalogue-page .sold-vehicles-link:hover,
.catalogue-page .sold-vehicles-link:focus-visible {
  box-shadow: none;
}

.catalogue-page .sold-vehicles-link {
  animation: none;
}

.catalogue-page .vehicle-card img {
  height: auto;
  aspect-ratio: 1.45;
  object-fit: fill;
  background: transparent;
}

.garage-catalogue-page .garage-hero {
  display: none;
}

.garage-catalogue-page * {
  box-shadow: none !important;
}

/* Dedicated user garage experience. */
.my-garage-page {
  background:
    radial-gradient(circle at 12% 0, rgba(214, 170, 91, 0.11), transparent 34%),
    #08090b;
}

.my-garage-shell {
  width: min(100% - 32px, 1480px);
  margin: 0 auto;
  padding: 130px 0 70px;
}

.my-garage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: end;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(214, 170, 91, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 13, 15, 0.84);
  box-shadow: none;
}

.my-garage-hero h1 {
  margin: 0;
  color: #f7f3ea;
  font-size: clamp(48px, 7vw, 98px);
  line-height: 0.9;
}

.my-garage-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(247, 243, 234, 0.64);
  line-height: 1.65;
}

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

.my-garage-stats article,
.my-garage-tools,
.my-garage-card {
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.my-garage-stats article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.my-garage-stats span,
.my-garage-facts dt {
  color: rgba(247, 243, 234, 0.54);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.my-garage-stats strong {
  color: var(--vm-accent, #d6aa5b);
  font-size: clamp(24px, 2.5vw, 34px);
}

.my-garage-tools {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
}

.my-garage-search,
.my-garage-add {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, auto));
  gap: 10px;
  align-items: end;
}

.my-garage-add {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.my-garage-search input,
.my-garage-search select,
.my-garage-add input,
.my-garage-add select {
  min-height: 44px;
  border-radius: 8px;
}

.my-garage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.my-garage-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.my-garage-card:hover {
  border-color: rgba(214, 170, 91, 0.5);
  background: rgba(214, 170, 91, 0.045);
  transform: translateY(-3px);
}

.my-garage-card-media {
  min-height: 280px;
  background: rgba(0, 0, 0, 0.24);
}

.my-garage-card-media img,
.my-garage-card-media span {
  width: 100%;
  height: 100%;
}

.my-garage-card-media img {
  display: block;
  object-fit: cover;
}

.my-garage-card-media span {
  display: grid;
  place-items: center;
  color: var(--vm-accent, #d6aa5b);
  font-size: 54px;
  font-weight: 850;
}

.my-garage-card-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.my-garage-card h2 {
  margin: 0;
  color: #f7f3ea;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1;
}

.my-garage-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.my-garage-facts div {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(247, 243, 234, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.my-garage-facts dd {
  margin: 0;
  color: #f7f3ea;
  font-weight: 750;
}

.my-garage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.my-garage-actions .mini-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.my-garage-page * {
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  .my-garage-hero,
  .my-garage-grid,
  .my-garage-card {
    grid-template-columns: 1fr;
  }

  .my-garage-search,
  .my-garage-add {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .my-garage-shell {
    width: min(100% - 20px, 1480px);
    padding-top: 108px;
  }

  .my-garage-stats,
  .my-garage-search,
  .my-garage-add,
  .my-garage-facts {
    grid-template-columns: 1fr;
  }
}

/* Premium client workspace. */
.account-suite-page {
  background:
    radial-gradient(circle at 18% 0, rgba(214, 170, 91, 0.1), transparent 32%),
    linear-gradient(145deg, #07080a 0%, #0b0c0f 46%, #060607 100%);
}

.account-suite-page * {
  box-shadow: none !important;
}

.account-suite-shell {
  width: min(100% - 28px, 1500px);
  margin: 0 auto;
  padding: 112px 0 58px;
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.account-suite-sidebar,
.account-suite-card,
.account-dashboard-hero,
.account-metric-grid a,
.garage-control-card,
.garage-premium-card,
.garage-stat-strip article {
  border: 1px solid rgba(247, 243, 234, 0.1);
  background: rgba(255, 255, 255, 0.026);
  border-radius: 18px;
}

.account-suite-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  min-height: calc(100vh - 132px);
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  background:
    linear-gradient(180deg, rgba(214, 170, 91, 0.055), transparent 42%),
    rgba(10, 11, 13, 0.88);
}

.account-suite-brand {
  display: grid;
  gap: 5px;
  color: #f7f3ea;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}

.account-suite-brand img {
  width: 76px;
  height: 54px;
  object-fit: contain;
}

.account-suite-brand small {
  color: rgba(214, 170, 91, 0.78);
  font-size: 10px;
}

.account-suite-nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.account-suite-nav a,
.account-suite-logout {
  min-height: 42px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: rgba(247, 243, 234, 0.68);
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.account-suite-nav a:hover,
.account-suite-nav a.is-active,
.account-suite-logout:hover {
  color: #f7f3ea;
  border-color: rgba(214, 170, 91, 0.32);
  background: rgba(214, 170, 91, 0.09);
  transform: translateX(2px);
}

.account-suite-nav svg,
.account-suite-logout svg,
.account-metric-grid svg,
.account-quick-actions svg {
  width: 17px;
  height: 17px;
  color: var(--vm-accent, #d6aa5b);
}

.account-suite-nav em {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #090909;
  background: var(--vm-accent, #d6aa5b);
  font-size: 11px;
  font-style: normal;
}

.account-suite-logout {
  grid-template-columns: 18px 1fr;
  background: rgba(255, 255, 255, 0.025);
}

.account-suite-content {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
}

.account-dashboard-hero {
  min-height: 190px;
  padding: clamp(20px, 3vw, 34px);
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.82), rgba(6, 7, 8, 0.36)),
    url("/images/account-banner.jpg") center/cover;
  overflow: hidden;
}

.account-welcome-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.account-welcome-card img,
.account-user-chip img,
.account-profile-panel img {
  border: 1px solid rgba(214, 170, 91, 0.34);
  border-radius: 16px;
  object-fit: cover;
}

.account-welcome-card img {
  width: 92px;
  height: 92px;
}

.account-welcome-card h1,
.account-page-head h1 {
  margin: 0;
  color: #f7f3ea;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.04;
}

.account-welcome-card p:not(.eyebrow),
.account-page-head p,
.account-profile-panel p {
  max-width: 680px;
  color: rgba(247, 243, 234, 0.66);
  line-height: 1.6;
}

.account-user-chip {
  min-width: 230px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
}

.account-user-chip img {
  width: 42px;
  height: 42px;
}

.account-user-chip strong,
.account-suite-card h2,
.garage-premium-card h2 {
  color: #f7f3ea;
}

.account-user-chip span,
.account-info-list dt,
.account-table-list span,
.garage-premium-body dt,
.garage-stat-strip span {
  color: rgba(247, 243, 234, 0.52);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.account-metric-grid a {
  min-height: 116px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  color: rgba(247, 243, 234, 0.7);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.account-metric-grid a:hover,
.account-action-button:hover,
.account-quick-actions a:hover,
.garage-premium-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 170, 91, 0.52);
  background: rgba(214, 170, 91, 0.055);
}

.account-metric-grid strong {
  color: #f7f3ea;
  font-size: 30px;
  line-height: 1;
}

.account-metric-grid small {
  color: var(--vm-accent, #d6aa5b);
  font-weight: 800;
}

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

.account-view-dashboard .account-span-2 {
  grid-column: auto;
}

.account-span-2 {
  grid-column: span 2;
}

.account-span-3 {
  grid-column: 1 / -1;
}

.account-suite-card {
  padding: 18px;
}

.account-section-head {
  margin-bottom: 14px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.account-section-head h2,
.account-page-head h1,
.account-suite-card h2 {
  margin: 0;
}

.account-section-head h2,
.account-suite-card h2 {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.18;
}

.account-page-head h1 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.account-section-head a,
.account-action-button {
  color: var(--vm-accent, #d6aa5b);
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.account-activity-list,
.account-table-list,
.account-info-list,
.account-quick-actions {
  display: grid;
  gap: 10px;
}

.account-activity-list a,
.account-table-list article,
.account-info-list div,
.account-quick-actions a {
  padding: 12px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(247, 243, 234, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.022);
  color: rgba(247, 243, 234, 0.72);
  text-decoration: none;
}

.account-activity-list strong,
.account-table-list strong,
.account-info-list dd {
  color: #f7f3ea;
}

.account-info-list {
  margin: 0 0 14px;
}

.account-info-list dd {
  margin: 0;
}

.account-action-button {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(214, 170, 91, 0.36);
  border-radius: 10px;
  background: rgba(214, 170, 91, 0.075);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.account-action-button-ghost {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.account-action-button svg {
  width: 15px;
  height: 15px;
}

.account-quick-actions a {
  grid-template-columns: 18px 1fr;
  align-items: center;
}

.account-page-head {
  padding: 8px 0 4px;
}

.account-view-profile .account-page-head {
  padding-bottom: 0;
  margin-bottom: 0;
}

.account-profile-panel {
  display: flex;
  gap: 16px;
  align-items: center;
}

.account-profile-panel img {
  width: 104px;
  height: 104px;
}

.account-profile-panel h2 {
  margin: 0 0 6px;
}

.account-profile-panel span {
  color: var(--vm-accent, #d6aa5b);
  font-size: 12px;
  font-weight: 800;
}

.account-profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.35fr);
  gap: 14px;
  align-items: stretch;
}

.account-profile-summary-card,
.account-avatar-card,
.account-identity-card {
  min-height: 0;
}

.account-profile-summary-card {
  display: grid;
  align-content: center;
}

.account-avatar-card {
  display: grid;
  align-content: center;
  gap: 12px;
}

.account-identity-card {
  grid-column: 1 / -1;
}

.account-view-profile .account-profile-panel {
  align-items: center;
  min-height: 126px;
}

.account-view-profile .account-profile-panel img {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
}

.account-view-profile .account-profile-panel h2 {
  margin: 0 0 4px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.08;
}

.account-view-profile .account-profile-panel p {
  margin: 0 0 12px;
}

.account-avatar-form,
.account-identity-form {
  display: grid;
  gap: 12px;
  align-items: end;
}

.account-avatar-form {
  grid-template-columns: minmax(240px, 1fr) minmax(190px, 260px);
}

.account-identity-form {
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(180px, 240px);
}

.account-avatar-form label,
.account-identity-form label {
  display: grid;
  gap: 7px;
  color: rgba(247, 243, 234, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.account-avatar-form input,
.account-identity-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 10px;
  color: #f7f3ea;
  background: rgba(0, 0, 0, 0.22);
}

.account-avatar-form input[type="file"] {
  padding: 10px;
  color: rgba(247, 243, 234, 0.72);
}

.account-avatar-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 12px;
  color: #f7f3ea;
  border: 1px solid rgba(214, 170, 91, 0.28);
  border-radius: 8px;
  background: rgba(214, 170, 91, 0.08);
  font-weight: 850;
  cursor: pointer;
}

.account-avatar-form .button,
.account-identity-form .button {
  min-height: 46px;
  justify-content: center;
}

.account-avatar-card .account-inline-form {
  margin-top: 0;
}

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.account-form-grid label {
  display: grid;
  gap: 7px;
  color: rgba(247, 243, 234, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.account-form-grid input,
.account-form-grid select,
.garage-control-card input,
.garage-control-card select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 10px;
  color: #f7f3ea;
  background: rgba(0, 0, 0, 0.22);
}

.account-inline-form {
  margin-top: 12px;
}

.account-table-list article {
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
}

.account-empty-view {
  min-height: min(420px, calc(100svh - 360px));
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
  border: 1px solid rgba(247, 243, 234, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0, rgba(216, 139, 75, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.account-empty-view > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--vm-accent, #d6aa5b);
  border: 1px solid rgba(216, 139, 75, 0.32);
  border-radius: 16px;
  background: rgba(216, 139, 75, 0.06);
}

.account-empty-view > span svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.account-empty-view h2,
.account-empty-view p {
  margin: 0;
}

.account-empty-view h2 {
  max-width: 560px;
  color: #f7f3ea;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.account-empty-view > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(247, 243, 234, 0.64);
  line-height: 1.7;
}

.account-empty-action {
  margin-top: 8px;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #100d08;
  border: 1px solid rgba(216, 139, 75, 0.78);
  border-radius: 12px;
  background: linear-gradient(135deg, #f1d28a, #d6a64f);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.account-empty-action:hover,
.account-empty-action:focus-visible {
  color: #100d08;
  border-color: rgba(255, 213, 132, 0.95);
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.account-table-list article.is-unread {
  border-color: rgba(214, 170, 91, 0.38);
  background: rgba(214, 170, 91, 0.055);
}

.account-notifications-card {
  padding: clamp(14px, 2vw, 22px);
}

.account-notification-list {
  display: grid;
  gap: 12px;
}

.account-notification-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  color: rgba(247, 243, 234, 0.72);
  border: 1px solid rgba(247, 243, 234, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.account-notification-item:hover,
.account-notification-item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(214, 170, 91, 0.42);
  background: rgba(214, 170, 91, 0.035);
}

.account-notification-item.is-unread {
  border-color: rgba(214, 170, 91, 0.42);
  background: rgba(214, 170, 91, 0.055);
}

.account-notification-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--vm-accent, #d6aa5b);
  border: 1px solid rgba(214, 170, 91, 0.24);
  border-radius: 12px;
  background: rgba(214, 170, 91, 0.055);
}

.account-notification-icon i {
  width: 19px;
  height: 19px;
}

.account-notification-content {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.account-notification-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.account-notification-meta span,
.account-notification-meta em {
  width: fit-content;
  color: rgba(214, 170, 91, 0.9);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-notification-meta em {
  padding: 3px 7px;
  color: #0d0d0d;
  border-radius: 999px;
  background: var(--vm-accent, #d6aa5b);
}

.account-notification-content strong {
  color: #f7f3ea;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.25;
}

.account-notification-content p {
  margin: 0;
  color: rgba(247, 243, 234, 0.66);
  font-size: 0.94rem;
  line-height: 1.55;
}

.account-notification-item time {
  color: rgba(247, 243, 234, 0.58);
  font-size: 0.84rem;
  font-weight: 750;
  white-space: nowrap;
}

.account-notification-item .mini-button {
  justify-self: end;
}

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

.account-listing-card {
  overflow: hidden;
  min-height: 280px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(247, 243, 234, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.026);
  color: #f7f3ea;
  text-decoration: none;
}

.account-listing-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.account-listing-card div {
  padding: 14px;
  display: grid;
  gap: 5px;
}

.account-listing-card span {
  color: var(--vm-accent, #d6aa5b);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.garage-head-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

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

.garage-stat-strip article {
  padding: 16px;
  display: grid;
  gap: 7px;
}

.garage-stat-strip strong {
  color: var(--vm-accent, #d6aa5b);
  font-size: 24px;
}

.garage-control-card {
  padding: 14px;
}

.garage-control-card .my-garage-search {
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 0.25fr) minmax(160px, 0.25fr) auto;
}

.garage-premium-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.garage-premium-media {
  position: relative;
  height: 210px;
  background: rgba(0, 0, 0, 0.26);
}

.garage-premium-media img,
.garage-premium-media span {
  width: 100%;
  height: 100%;
}

.garage-premium-media img {
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.garage-premium-card:hover .garage-premium-media img {
  transform: scale(1.025);
}

.garage-premium-media span {
  display: grid;
  place-items: center;
  color: var(--vm-accent, #d6aa5b);
  font-size: 46px;
  font-weight: 900;
}

.garage-premium-media em {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(214, 170, 91, 0.36);
  border-radius: 999px;
  color: #f7f3ea;
  background: rgba(0, 0, 0, 0.58);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.garage-premium-body {
  padding: 14px;
  display: grid;
  gap: 13px;
}

.garage-premium-body h2 {
  margin: 0;
  font-size: 21px;
}

.garage-premium-body p {
  margin: 4px 0 0;
  color: rgba(247, 243, 234, 0.62);
}

.garage-premium-body dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.garage-premium-body dl div {
  padding: 9px;
  border: 1px solid rgba(247, 243, 234, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.garage-premium-body dd {
  margin: 4px 0 0;
  color: #f7f3ea;
  font-weight: 780;
}

.garage-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.garage-card-actions .mini-button {
  justify-content: center;
}

.garage-card-actions .is-danger {
  color: #ff9e9e;
  border-color: rgba(255, 112, 112, 0.28);
}

.garage-add-form {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .account-suite-shell {
    grid-template-columns: 1fr;
  }

  .account-suite-sidebar {
    position: static;
    min-height: auto;
  }

  .account-suite-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .account-metric-grid,
  .garage-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-listing-grid,
  .garage-premium-grid,
  .account-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-span-2,
  .account-span-3 {
    grid-column: 1 / -1;
  }

  .garage-add-form,
  .account-form-grid,
  .account-profile-grid,
  .garage-control-card .my-garage-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .account-identity-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .account-suite-shell {
    width: min(100% - 18px, 1500px);
    padding-top: 102px;
  }

  .account-suite-sidebar,
  .account-suite-card,
  .account-dashboard-hero {
    border-radius: 14px;
  }

  .account-empty-view {
    min-height: 300px;
    padding: 26px 18px;
    border-radius: 16px;
  }

  .account-empty-view > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .account-suite-nav,
  .account-metric-grid,
  .garage-stat-strip,
  .account-listing-grid,
  .garage-premium-grid,
  .account-dashboard-grid,
  .account-profile-grid,
  .account-form-grid,
  .account-avatar-form,
  .account-identity-form,
  .garage-add-form,
  .garage-control-card .my-garage-search,
  .account-table-list article,
  .account-notification-item,
  .garage-premium-body dl,
  .garage-card-actions {
    grid-template-columns: 1fr;
  }

  .account-notification-item {
    align-items: start;
    gap: 12px;
  }

  .account-notification-icon {
    width: 40px;
    height: 40px;
  }

  .account-notification-item time,
  .account-notification-item .mini-button {
    justify-self: start;
  }

  .account-dashboard-hero,
  .account-welcome-card,
  .garage-head-row,
  .account-profile-panel {
    display: grid;
  }

  .account-profile-summary-card,
  .account-avatar-card,
  .account-identity-card {
    grid-column: 1 / -1;
  }

  .account-user-chip {
    min-width: 0;
    width: 100%;
  }
}

/* Definitive isolated side drawer override. Kept last on purpose. */
html.is-main-menu-open,
body.is-main-menu-open {
  overflow: hidden !important;
}

body .site-header .site-nav .nav-main-menu > .veyna-side-drawer {
  box-sizing: border-box !important;
  position: fixed !important;
  top: 88px !important;
  left: 22px !important;
  right: auto !important;
  bottom: 22px !important;
  z-index: 1000 !important;
  width: min(430px, calc(100vw - 44px)) !important;
  min-width: 0 !important;
  height: calc(100svh - 110px) !important;
  min-height: min(540px, calc(100svh - 110px)) !important;
  max-height: calc(100svh - 110px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-content: stretch !important;
  gap: 22px !important;
  padding: 24px !important;
  margin: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  visibility: visible !important;
  color: rgba(247, 243, 234, 0.86) !important;
  border: 1px solid rgba(214, 170, 91, 0.28) !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 0 0, rgba(214, 170, 91, 0.14), transparent 30%),
    linear-gradient(165deg, rgba(22, 20, 18, 0.99), rgba(7, 8, 9, 0.99) 58%, rgba(3, 4, 5, 1)) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24) !important;
  opacity: 0;
  transform: translate3d(-112%, 0, 0);
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  contain: layout paint style;
  isolation: isolate;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

body .site-header .site-nav .nav-main-menu > .veyna-side-drawer::-webkit-scrollbar {
  display: none !important;
}

body .site-header .site-nav .nav-main-menu[open] > .veyna-side-drawer {
  animation: veynaDrawerIn 280ms ease-in-out both !important;
}

body .site-header .site-nav .nav-main-menu.is-closing > .veyna-side-drawer {
  animation: veynaDrawerOut 240ms ease-in-out both !important;
}

body .site-header .site-nav .nav-main-menu > .veyna-side-drawer::before,
body .site-header .site-nav .nav-main-menu > .veyna-side-drawer::after {
  display: none !important;
  content: none !important;
}

body .site-header .profile-menu.account-menu::before,
body .site-header .profile-menu.account-menu::after,
body .site-header .profile-menu.notification-menu::before,
body .site-header .profile-menu.notification-menu::after {
  display: none !important;
  content: none !important;
}

body .site-header .profile-menu::before,
body .site-header .profile-menu::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
  background: transparent !important;
}

body .site-header .profile-menu.notification-menu,
body .site-header .profile-menu.notification-menu *,
body .site-header .profile-menu.account-menu,
body .site-header .profile-menu.account-menu * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

body .site-header .profile-menu.notification-menu::-webkit-scrollbar,
body .site-header .profile-menu.notification-menu *::-webkit-scrollbar,
body .site-header .profile-menu.account-menu::-webkit-scrollbar,
body .site-header .profile-menu.account-menu *::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

body .site-header .site-nav .nav-main-menu > .veyna-side-drawer .nav-drawer-head,
body .site-header .site-nav .nav-main-menu > .veyna-side-drawer .nav-drawer-section,
body .site-header .site-nav .nav-main-menu > .veyna-side-drawer .nav-drawer-foot {
  flex: 0 0 auto !important;
  opacity: 1 !important;
  transform: none !important;
}

body .site-header .site-nav .nav-main-menu > .veyna-side-drawer .nav-drawer-foot {
  margin-top: auto !important;
}

body .site-header .site-nav .nav-main-menu > .nav-main-backdrop {
  z-index: 990 !important;
}

@media (max-width: 720px) {
  body .site-header .site-nav .nav-main-menu > .veyna-side-drawer {
    top: 78px !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    width: calc(100vw - 28px) !important;
    height: calc(100svh - 92px) !important;
    min-height: 0 !important;
    max-height: calc(100svh - 92px) !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }
}

/* Side drawer performance pass: transform/opacity only. */
body .site-header .site-nav .nav-main-menu > .nav-main-backdrop {
  background: rgba(0, 0, 0, 0.58) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: opacity 180ms linear !important;
  will-change: opacity;
}

body .site-header .site-nav .nav-main-menu > .veyna-side-drawer {
  background: rgb(8, 9, 10) !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body .site-header .site-nav .nav-main-menu[open] > .veyna-side-drawer {
  animation: veynaDrawerFastIn 210ms ease-out both !important;
}

body .site-header .site-nav .nav-main-menu.is-closing > .veyna-side-drawer {
  animation: veynaDrawerFastOut 180ms ease-in both !important;
}

@keyframes veynaDrawerFastIn {
  from {
    opacity: 0.001;
    transform: translate3d(-102%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Account dashboard v2 component system. */
.account-suite-page {
  --account-bg: #07080a;
  --account-surface: rgba(255, 255, 255, 0.026);
  --account-surface-strong: rgba(255, 255, 255, 0.045);
  --account-border: rgba(247, 243, 234, 0.1);
  --account-border-strong: rgba(214, 170, 91, 0.34);
  --account-text: #f7f3ea;
  --account-muted: rgba(247, 243, 234, 0.58);
  --account-accent: var(--vm-accent, #d6aa5b);
  background:
    radial-gradient(circle at 16% 0, rgba(214, 170, 91, 0.09), transparent 30%),
    linear-gradient(145deg, #07080a 0%, #0b0c0f 48%, #050607 100%);
}

.account-suite-page * {
  box-shadow: none !important;
}

.account-suite-shell {
  width: min(100% - 32px, 1560px);
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding-top: 118px;
}

.account-suite-sidebar {
  padding: 22px;
  border: 1px solid var(--account-border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(214, 170, 91, 0.055), transparent 36%),
    rgba(8, 9, 11, 0.88);
}

.account-suite-brand {
  align-content: start;
}

.account-suite-brand img {
  width: 70px;
  height: 52px;
}

.account-suite-brand span {
  color: var(--account-text);
  font-size: 14px;
}

.account-suite-nav {
  gap: 8px;
}

.account-suite-nav a,
.account-suite-logout {
  min-height: 46px;
  border-radius: 12px;
  color: rgba(247, 243, 234, 0.68);
  background: transparent;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.account-suite-nav a:hover,
.account-suite-nav a.is-active,
.account-suite-logout:hover {
  transform: translateX(4px);
  border-color: rgba(214, 170, 91, 0.36);
  background: rgba(214, 170, 91, 0.075);
}

.account-suite-content {
  gap: 22px;
}

.account-view-profile .account-suite-content {
  align-content: start;
  gap: 12px;
}

.account-v2-hero {
  position: relative;
  min-height: 260px;
  align-items: end;
  border: 1px solid var(--account-border);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.44) 56%, rgba(5, 6, 7, 0.76)),
    url("/images/account-banner.jpg") center/cover;
  overflow: hidden;
}

.account-v2-welcome {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.account-v2-welcome img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 1px solid rgba(214, 170, 91, 0.42);
  border-radius: 18px;
}

.account-v2-welcome h1 {
  max-width: 740px;
  margin: 0;
  color: var(--account-text);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.96;
}

.account-v2-welcome p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(247, 243, 234, 0.66);
  line-height: 1.65;
}

.account-v2-member {
  position: relative;
  z-index: 1;
  align-self: start;
  min-width: 180px;
  padding: 14px;
  border: 1px solid rgba(247, 243, 234, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
}

.account-v2-member span,
.account-v2-metrics span,
.account-v2-timeline span {
  color: rgba(247, 243, 234, 0.52);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-v2-member strong {
  display: block;
  margin-top: 6px;
  color: var(--account-text);
}

.account-v2-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.account-v2-metrics a,
.account-v2-panel {
  border: 1px solid var(--account-border);
  border-radius: 18px;
  background: var(--account-surface);
}

.account-v2-metrics a {
  min-height: 138px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  color: var(--account-muted);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.account-v2-metrics a:hover,
.account-v2-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 170, 91, 0.42);
  background: rgba(214, 170, 91, 0.045);
}

.account-v2-metrics svg {
  width: 20px;
  height: 20px;
  color: var(--account-accent);
}

.account-v2-metrics strong {
  color: var(--account-text);
  font-size: 34px;
  line-height: 1;
}

.account-v2-metrics small {
  color: var(--account-accent);
  font-weight: 800;
}

.account-v2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 16px;
}

.account-v2-panel {
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.account-v2-activity {
  grid-row: span 2;
}

.account-v2-timeline {
  position: relative;
  display: grid;
  gap: 12px;
}

.account-v2-timeline a {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 4px 12px;
  padding: 14px;
  color: var(--account-muted);
  text-decoration: none;
  border: 1px solid rgba(247, 243, 234, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.account-v2-timeline a:hover {
  transform: translateX(4px);
  border-color: rgba(214, 170, 91, 0.32);
  background: rgba(214, 170, 91, 0.055);
}

.account-v2-timeline svg {
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  color: var(--account-accent);
}

.account-v2-timeline strong {
  color: var(--account-text);
}

.account-v2-timeline small {
  justify-self: end;
  color: rgba(247, 243, 234, 0.46);
  font-size: 11px;
}

.account-v2-info .account-info-list div {
  grid-template-columns: minmax(90px, 0.45fr) minmax(0, 1fr);
  align-items: center;
}

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

.account-v2-quick .account-quick-actions a {
  min-height: 58px;
  align-items: center;
  border-radius: 14px;
}

.account-view-dashboard .account-dashboard-hero,
.account-view-dashboard .account-v2-metrics a,
.account-view-dashboard .account-v2-panel {
  animation: accountV2In 420ms ease both;
}

.account-view-dashboard .account-v2-metrics a:nth-child(2) { animation-delay: 40ms; }
.account-view-dashboard .account-v2-metrics a:nth-child(3) { animation-delay: 80ms; }
.account-view-dashboard .account-v2-metrics a:nth-child(4) { animation-delay: 120ms; }
.account-view-dashboard .account-v2-metrics a:nth-child(5) { animation-delay: 160ms; }
.account-view-dashboard .account-v2-panel { animation-delay: 180ms; }

@keyframes accountV2In {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1180px) {
  .account-suite-shell {
    grid-template-columns: 1fr;
  }

  .account-suite-sidebar {
    position: static;
    min-height: auto;
  }

  .account-suite-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

@media (max-width: 720px) {
  .account-suite-shell {
    width: min(100% - 18px, 1560px);
  }

  .account-suite-nav,
  .account-v2-metrics,
  .account-v2-quick .account-quick-actions {
    grid-template-columns: 1fr;
  }

  .account-v2-hero,
  .account-v2-welcome {
    display: grid;
  }

  .account-v2-member {
    width: 100%;
  }

  .account-v2-timeline a {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .account-v2-timeline small {
    grid-column: 2;
    justify-self: start;
  }
}

/* Global no-shadow design rule. Kept last intentionally. */
:root {
  --shadow: none;
  --vm-shadow: none;
  --vm-shadow-soft: none;
}

*,
*::before,
*::after {
  box-shadow: none !important;
}

.shadow,
.shadow-sm,
.shadow-md,
.shadow-lg,
.shadow-xl,
.shadow-2xl,
[class*=" shadow-"],
[class^="shadow-"] {
  box-shadow: none !important;
}

*:hover,
*:focus,
*:focus-visible,
*:active,
*:hover::before,
*:hover::after,
*:focus::before,
*:focus::after,
*:focus-visible::before,
*:focus-visible::after,
*:active::before,
*:active::after {
  box-shadow: none !important;
}

@keyframes veynaDrawerFastOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0.001;
    transform: translate3d(-102%, 0, 0);
  }
}

.sold-archive-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 139, 75, 0.1), transparent 28%),
    linear-gradient(180deg, #0c0c0c 0%, #050505 62%, #080706 100%);
}

.sold-archive-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 46vh, 520px);
  align-content: end;
  padding-bottom: clamp(42px, 7vw, 78px);
  border-bottom: 1px solid rgba(216, 139, 75, 0.2);
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.62) 52%, rgba(216, 139, 75, 0.12)),
    radial-gradient(circle at 74% 22%, rgba(216, 139, 75, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(18, 15, 13, 0.98), rgba(7, 7, 7, 0.98));
}

.sold-archive-hero h1 {
  max-width: 980px;
}

.sold-archive-hero > p:not(.eyebrow) {
  max-width: 720px;
}

.sold-archive-hero-minimal {
  min-height: clamp(220px, 30vh, 340px);
  align-content: center;
  padding-top: clamp(120px, 12vw, 150px);
  padding-bottom: clamp(36px, 5vw, 58px);
}

.sold-archive-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 980px);
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 139, 75, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(216, 139, 75, 0.035), transparent 22%, transparent 78%, rgba(216, 139, 75, 0.055)),
    rgba(10, 10, 10, 0.54);
  backdrop-filter: blur(10px);
}

.sold-archive-stats article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-height: 128px;
  padding: 24px 20px;
  text-align: center;
}

.sold-archive-stats article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(216, 139, 75, 0.28), transparent);
}

.sold-archive-stat-icon {
  width: 24px;
  height: 24px;
  color: rgba(216, 139, 75, 0.92);
  stroke-width: 1.7;
}

.sold-archive-stats span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sold-archive-stats strong {
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.sold-archive-section {
  width: min(100% - 32px, 1480px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) 0;
}

.sold-archive-page .sold-archive-section {
  background: transparent;
}

.sold-archive-page .sold-archive-section:has(.sold-archive-empty) {
  width: min(100% - 32px, 1120px);
  min-height: clamp(520px, 62vh, 720px);
  display: grid;
  place-items: center;
  padding: clamp(54px, 7vw, 90px) 0;
}

.sold-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.sold-archive-card {
  display: grid;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.sold-archive-card:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(216, 139, 75, 0.58);
  background: linear-gradient(180deg, rgba(216, 139, 75, 0.08), rgba(255, 255, 255, 0.022));
}

.sold-archive-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55;
  background: #070707;
}

.sold-archive-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1) saturate(0) brightness(0.82) contrast(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}

.sold-archive-card:hover .sold-archive-media img {
  transform: scale(1.025);
  filter: grayscale(1) saturate(0) brightness(0.9) contrast(1.06);
}

.sold-archive-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 8px 12px;
  border: 1px solid rgba(216, 139, 75, 0.56);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  color: var(--accent, #d88b4b);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sold-archive-body {
  display: grid;
  gap: 15px;
  padding: 18px;
}

.sold-archive-body .eyebrow {
  margin: 0;
  color: rgba(216, 139, 75, 0.86);
  font-size: 0.7rem;
}

.sold-archive-body h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.12;
}

.sold-archive-body dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.sold-archive-body dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.sold-archive-body dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 700;
}

.sold-archive-body dd {
  margin: 0;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: right;
}

.sold-archive-image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(216, 139, 75, 0.76);
  background:
    radial-gradient(circle, rgba(216, 139, 75, 0.12), transparent 36%),
    #070707;
}

.sold-archive-image-fallback svg {
  width: 54px;
  height: 54px;
  stroke-width: 1.4;
}

.sold-archive-empty {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 58px);
  text-align: center;
  border: 1px solid rgba(216, 139, 75, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 139, 75, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014));
}

.sold-archive-empty-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(216, 139, 75, 0.38);
  border-radius: 22px;
  color: var(--accent, #d88b4b);
  background: rgba(216, 139, 75, 0.08);
}

.sold-archive-empty-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.5;
}

.sold-archive-empty h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.sold-archive-empty p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.sold-archive-empty-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 6px;
  padding: 0 18px;
  color: #0d0905;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(216, 139, 75, 0.72);
  border-radius: 12px;
  background: linear-gradient(135deg, #d88b4b, #f0c27b);
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.sold-archive-empty-link:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.05);
}

@media (max-width: 1040px) {
  .sold-archive-stats,
  .sold-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sold-archive-stats article:nth-child(2)::after {
    display: none;
  }

  .sold-archive-stats article:nth-child(n + 3) {
    border-top: 1px solid rgba(216, 139, 75, 0.16);
  }
}

@media (max-width: 680px) {
  .sold-archive-hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .sold-archive-stats,
  .sold-archive-grid {
    grid-template-columns: 1fr;
  }

  .sold-archive-stats article {
    min-height: auto;
    padding: 22px 18px;
  }

  .sold-archive-stats article::after {
    display: none;
  }

  .sold-archive-stats article + article {
    border-top: 1px solid rgba(216, 139, 75, 0.16);
  }

  .sold-archive-body dl div {
    display: grid;
    gap: 4px;
  }

  .sold-archive-body dd {
    text-align: left;
  }
}

.login-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 139, 75, 0.12), transparent 28%),
    linear-gradient(180deg, #070707 0%, #0b0a09 100%);
}

.auth-login-shell {
  min-height: 100vh;
  padding: clamp(112px, 11vw, 150px) clamp(18px, 4vw, 56px) clamp(34px, 5vw, 64px);
  place-items: center;
}

.login-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  width: min(100%, 1320px);
  min-height: min(720px, calc(100vh - 190px));
  overflow: hidden;
  border: 1px solid rgba(216, 139, 75, 0.22);
  border-radius: 26px;
  background: rgba(8, 8, 8, 0.72);
}

.login-visual-panel {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 640px;
  padding: clamp(34px, 5vw, 70px);
  overflow: hidden;
  isolation: isolate;
  animation: loginVisualIn 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.login-visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("/images/login-bg.jpg") center / cover no-repeat,
    linear-gradient(135deg, #111, #050505);
  transform: scale(1.035);
}

.login-visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.56)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76));
}

.login-visual-copy {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.login-visual-copy h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 0.96;
}

.login-visual-copy p {
  margin: 0;
  color: var(--amber, #d8aa5b);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 850;
}

.login-visual-copy span {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.login-form-panel {
  display: grid;
  align-items: center;
  padding: clamp(24px, 4vw, 54px);
  border-left: 1px solid rgba(216, 139, 75, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 139, 75, 0.08), transparent 34%),
    rgba(8, 8, 8, 0.86);
  animation: loginFormIn 820ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.login-auth-card {
  width: min(100%, 500px);
  margin: 0 auto;
  padding: 0;
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.login-form-head {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.login-form-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.login-form-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.login-auth-card label {
  gap: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 850;
}

.login-auth-card input:not([type="checkbox"]) {
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease;
}

.login-auth-card input:not([type="checkbox"]):focus {
  border-color: rgba(216, 139, 75, 0.74);
  background: rgba(216, 139, 75, 0.075);
}

.login-oauth-button,
.login-submit-button {
  min-height: 52px;
  border-radius: 14px;
}

.login-oauth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.login-oauth-button svg {
  width: 18px;
  height: 18px;
  color: var(--amber, #d8aa5b);
  stroke-width: 1.8;
}

.login-submit-button {
  border-color: rgba(216, 139, 75, 0.68);
  background: linear-gradient(135deg, #d88b4b, #f0c27b);
  color: #090704;
}

.login-trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(216, 139, 75, 0.16);
}

.login-trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
}

.login-trust-list svg {
  width: 16px;
  height: 16px;
  color: rgba(216, 139, 75, 0.86);
  stroke-width: 1.8;
}

.login-auth-card .login-help {
  text-align: center;
}

@keyframes loginVisualIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loginFormIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .login-visual-panel,
  .login-form-panel {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 960px) {
  .auth-login-shell {
    padding-top: 112px;
  }

  .login-experience {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    min-height: auto;
  }

  .login-visual-panel {
    display: none;
  }

  .login-form-panel {
    min-height: auto;
    padding: clamp(26px, 7vw, 42px);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .auth-login-shell {
    padding-inline: 14px;
  }

  .login-experience {
    border-radius: 18px;
  }

  .login-form-panel {
    padding: 24px 18px;
  }

  .login-form-head h2 {
    font-size: 34px;
  }
}

.nav-investor-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--amber, #d8aa5b);
  text-decoration: none;
  border: 1px solid rgba(216, 139, 75, 0.42);
  border-radius: 12px;
  background: rgba(216, 139, 75, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-investor-link:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 139, 75, 0.72);
  background: rgba(216, 139, 75, 0.14);
}

.nav-investor-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.valuation-page {
  color: #fff;
  background:
    radial-gradient(circle at 12% 4%, rgba(216, 139, 75, 0.12), transparent 30%),
    linear-gradient(180deg, #070707 0%, #0b0a09 58%, #050505 100%);
}

.valuation-shell {
  width: min(100% - 32px, 1440px);
  margin: 0 auto;
  padding: clamp(126px, 13vw, 170px) 0 clamp(54px, 8vw, 96px);
}

.valuation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  min-height: 360px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(216, 139, 75, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(216, 139, 75, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  animation: valuationIn 560ms ease both;
}

.valuation-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.92;
}

.valuation-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
}

.valuation-main-value {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(216, 139, 75, 0.28);
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.42);
}

.valuation-main-value span,
.valuation-stat-card span,
.valuation-chart-meta span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.valuation-main-value strong {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.valuation-main-value small {
  color: rgba(216, 139, 75, 0.78);
  font-weight: 750;
}

.valuation-market-hero {
  min-height: 300px;
}

.valuation-market-hero h1 {
  max-width: 640px;
}

.valuation-trend,
.valuation-market-strip strong {
  color: rgba(255, 255, 255, 0.76);
}

.valuation-trend.is-positive,
.valuation-market-strip strong.is-positive {
  color: #8ff0b1;
}

.valuation-trend.is-negative,
.valuation-market-strip strong.is-negative {
  color: #ff8b8b;
}

.valuation-market-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 139, 75, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.028);
}

.valuation-market-strip article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.valuation-market-strip article + article {
  border-left: 1px solid rgba(216, 139, 75, 0.14);
}

.valuation-market-strip span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.valuation-market-strip strong {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1;
}

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

.valuation-stat-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.valuation-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 139, 75, 0.52);
  background: rgba(216, 139, 75, 0.075);
}

.valuation-stat-card svg {
  width: 24px;
  height: 24px;
  color: var(--amber, #d8aa5b);
  stroke-width: 1.7;
}

.valuation-stat-card strong {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.valuation-market-panel,
.valuation-note,
.admin-finance-panel {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(216, 139, 75, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.valuation-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.valuation-panel-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
}

.valuation-panel-head > span {
  padding: 8px 11px;
  color: var(--amber, #d8aa5b);
  border: 1px solid rgba(216, 139, 75, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.valuation-chart {
  height: clamp(260px, 35vw, 420px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(0, 0, 0, 0.22);
  background-size: 100% 25%, 10% 100%, auto;
}

.valuation-market-chart {
  position: relative;
  cursor: crosshair;
}

.valuation-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.valuation-chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.valuation-grid-lines line {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.valuation-chart-area {
  fill: url(#valuationArea);
}

.valuation-chart-line {
  fill: none;
  stroke: url(#valuationLine);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.valuation-chart-hit {
  fill: transparent;
  pointer-events: all;
}

.valuation-chart-dot {
  fill: #f0c27b;
  stroke: #070707;
  stroke-width: 1.5;
  opacity: 0;
  transition: opacity 160ms ease, r 160ms ease;
  vector-effect: non-scaling-stroke;
}

.valuation-chart-point:hover .valuation-chart-dot {
  opacity: 1;
  r: 5.5;
}

.valuation-tooltip {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 154px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 139, 75, 0.38);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.88);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translate(14px, -54px);
  transition: opacity 140ms ease;
}

.valuation-tooltip.is-visible {
  opacity: 1;
}

.valuation-tooltip strong {
  color: #fff;
  font-size: 14px;
}

.valuation-tooltip span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.valuation-axis-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 750;
}

.valuation-axis-labels span:nth-child(2) {
  text-align: center;
}

.valuation-axis-labels span:nth-child(3) {
  text-align: right;
}

.valuation-chart-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 14px;
}

.valuation-note {
  display: grid;
  gap: 10px;
}

.valuation-note p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
}

.admin-finance-panel {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.admin-finance-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(216, 139, 75, 0.18);
  border-radius: 16px;
  overflow: hidden;
}

.admin-finance-summary article {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-finance-summary article + article {
  border-left: 1px solid rgba(216, 139, 75, 0.16);
}

.admin-finance-summary span,
.admin-finance-history span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-finance-summary strong,
.admin-finance-history strong {
  color: #fff;
  font-size: clamp(19px, 1.8vw, 28px);
}

.admin-finance-history {
  display: grid;
  gap: 10px;
}

.admin-finance-history article {
  display: grid;
  grid-template-columns: 150px minmax(140px, 0.4fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-finance-history small {
  color: rgba(255, 255, 255, 0.58);
}

@keyframes valuationIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .valuation-hero,
  .valuation-stat-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .valuation-hero,
  .valuation-grid,
  .valuation-market-strip,
  .admin-finance-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .valuation-market-strip article:nth-child(3) {
    border-left: 0;
  }

  .valuation-market-strip article:nth-child(n + 3) {
    border-top: 1px solid rgba(216, 139, 75, 0.14);
  }

  .admin-finance-summary article:nth-child(3) {
    border-left: 0;
  }

  .admin-finance-summary article:nth-child(n + 3) {
    border-top: 1px solid rgba(216, 139, 75, 0.16);
  }
}

@media (max-width: 760px) {
  .nav-investor-link span {
    display: none;
  }

  .valuation-shell {
    width: min(100% - 22px, 1440px);
  }

  .valuation-hero,
  .valuation-grid,
  .valuation-market-strip,
  .admin-finance-summary {
    grid-template-columns: 1fr;
  }

  .valuation-market-strip article,
  .valuation-market-strip article + article {
    border-left: 0;
    border-top: 1px solid rgba(216, 139, 75, 0.14);
  }

  .valuation-market-strip article:first-child {
    border-top: 0;
  }

  .valuation-panel-head,
  .admin-finance-history article {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-finance-summary article,
  .admin-finance-summary article + article {
    border-left: 0;
    border-top: 1px solid rgba(216, 139, 75, 0.16);
  }

  .admin-finance-summary article:first-child {
    border-top: 0;
  }
}

.valuation-terminal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 6%, rgba(216, 139, 75, 0.12), transparent 32%),
    radial-gradient(circle at 8% 22%, rgba(156, 106, 52, 0.1), transparent 30%),
    linear-gradient(180deg, #070707 0%, #0b0a08 48%, #050505 100%);
}

.valuation-terminal-shell {
  width: min(100% - 36px, 1320px);
  padding-top: clamp(118px, 12vw, 156px);
}

.valuation-terminal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 520px);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(216, 139, 75, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    radial-gradient(circle at 78% 30%, rgba(216, 139, 75, 0.12), transparent 34%);
  overflow: hidden;
  animation: valuationIn 640ms cubic-bezier(0.21, 0.75, 0.28, 1) both;
}

.valuation-terminal-copy {
  display: grid;
  gap: 16px;
}

.valuation-terminal-copy .eyebrow,
.valuation-terminal-head .eyebrow {
  margin: 0;
  color: rgba(216, 139, 75, 0.92);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.valuation-terminal-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.94;
}

.valuation-terminal-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.valuation-focus-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(216, 139, 75, 0.36);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(216, 139, 75, 0.1), rgba(255, 255, 255, 0.026) 44%),
    rgba(0, 0, 0, 0.26);
}

.valuation-focus-card > span,
.valuation-market-rail span,
.valuation-indicator-row span,
.valuation-timeline time {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.valuation-focus-card > strong {
  color: #fff;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.95;
  letter-spacing: 0;
}

.valuation-focus-move {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.valuation-focus-move b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.15rem;
  line-height: 1;
}

.valuation-focus-move span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.026);
}

.valuation-focus-move.is-positive,
.valuation-market-rail .is-positive,
.valuation-timeline .is-positive {
  color: #86e6a5;
}

.valuation-focus-move.is-negative,
.valuation-market-rail .is-negative,
.valuation-timeline .is-negative {
  color: #ff8e8e;
}

.valuation-focus-move.is-neutral,
.valuation-market-rail .is-neutral,
.valuation-timeline .is-neutral {
  color: rgba(255, 255, 255, 0.62);
}

.valuation-market-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
  border: 1px solid rgba(216, 139, 75, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.026);
  overflow: hidden;
}

.valuation-market-rail article {
  display: grid;
  gap: 8px;
  padding: 18px clamp(16px, 2.4vw, 28px);
}

.valuation-market-rail article + article {
  border-left: 1px solid rgba(216, 139, 75, 0.14);
}

.valuation-market-rail strong {
  color: #fff;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1;
}

.valuation-terminal-panel,
.valuation-timeline-panel {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(216, 139, 75, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.027);
}

.valuation-terminal-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.valuation-terminal-head h2 {
  margin: 5px 0 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.valuation-terminal-head > span {
  padding: 8px 12px;
  color: rgba(216, 139, 75, 0.95);
  border: 1px solid rgba(216, 139, 75, 0.24);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.valuation-indicator-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.valuation-indicator-row article {
  display: grid;
  gap: 7px;
  padding: 15px clamp(12px, 2vw, 22px);
}

.valuation-indicator-row article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.valuation-indicator-row strong {
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
}

.valuation-terminal-chart {
  position: relative;
  height: clamp(300px, 38vw, 470px);
  padding: clamp(12px, 2vw, 18px);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    rgba(0, 0, 0, 0.24);
  background-size: 100% 25%, 8.333% 100%, auto;
  cursor: crosshair;
}

.valuation-terminal-chart .valuation-chart-line {
  stroke-width: 1.85;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: valuationLineDraw 1200ms cubic-bezier(0.19, 1, 0.22, 1) 160ms forwards;
}

.valuation-terminal-chart .valuation-chart-area {
  opacity: 0;
  animation: valuationAreaIn 900ms ease 620ms forwards;
}

.valuation-terminal-chart .valuation-grid-lines line {
  stroke: rgba(255, 255, 255, 0.055);
}

.valuation-terminal-chart .valuation-chart-dot {
  opacity: 0;
}

.valuation-terminal-chart .valuation-chart-point:hover .valuation-chart-dot {
  opacity: 1;
}

.valuation-terminal-chart .valuation-tooltip {
  border-color: rgba(216, 139, 75, 0.42);
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(10px);
}

.valuation-timeline {
  display: grid;
}

.valuation-timeline article {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(140px, 0.7fr) minmax(100px, 0.5fr);
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.valuation-timeline article:first-child {
  border-top: 0;
}

.valuation-timeline strong,
.valuation-timeline span {
  font-weight: 850;
}

@keyframes valuationLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes valuationAreaIn {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .valuation-terminal-hero,
  .valuation-terminal-chart .valuation-chart-line,
  .valuation-terminal-chart .valuation-chart-area {
    animation: none !important;
  }

  .valuation-terminal-chart .valuation-chart-line {
    stroke-dashoffset: 0;
  }

  .valuation-terminal-chart .valuation-chart-area {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .valuation-terminal-hero {
    grid-template-columns: 1fr;
  }

  .valuation-market-rail,
  .valuation-indicator-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .valuation-market-rail article:nth-child(3),
  .valuation-indicator-row article:nth-child(3) {
    border-left: 0;
  }

  .valuation-market-rail article:nth-child(n + 3),
  .valuation-indicator-row article:nth-child(n + 3) {
    border-top: 1px solid rgba(216, 139, 75, 0.14);
  }
}

@media (max-width: 640px) {
  .valuation-terminal-shell {
    width: min(100% - 22px, 1320px);
  }

  .valuation-terminal-hero,
  .valuation-terminal-panel,
  .valuation-timeline-panel {
    border-radius: 18px;
  }

  .valuation-market-rail,
  .valuation-indicator-row,
  .valuation-timeline article {
    grid-template-columns: 1fr;
  }

  .valuation-market-rail article,
  .valuation-market-rail article + article,
  .valuation-indicator-row article,
  .valuation-indicator-row article + article {
    border-left: 0;
  }

  .valuation-market-rail article + article,
  .valuation-indicator-row article + article {
    border-top: 1px solid rgba(216, 139, 75, 0.14);
  }

  .valuation-terminal-head {
    display: grid;
    align-items: start;
  }
}

.contact-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 82% 0%, rgba(216, 139, 75, 0.12), transparent 30%),
    radial-gradient(circle at 8% 26%, rgba(216, 139, 75, 0.08), transparent 34%),
    linear-gradient(180deg, #070707 0%, #0b0a09 52%, #050505 100%);
}

.contact-shell {
  width: min(100% - 36px, 1280px);
  margin: 0 auto;
  padding: clamp(118px, 12vw, 154px) 0 clamp(54px, 8vw, 92px);
}

.contact-hero {
  position: relative;
  min-height: clamp(280px, 34vw, 430px);
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(216, 139, 75, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.24)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.66)),
    url("https://images.unsplash.com/photo-1617788138017-80ad40651399?auto=format&fit=crop&w=1800&q=80") center/cover;
  overflow: hidden;
  animation: contactIn 680ms cubic-bezier(0.21, 0.75, 0.28, 1) both;
}

.contact-hero-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.contact-hero-copy .eyebrow,
.contact-section-head .eyebrow {
  margin: 0;
  color: rgba(216, 139, 75, 0.95);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
}

.contact-hero p:not(.eyebrow) {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 3vw, 30px);
  margin-top: 24px;
}

.contact-info-panel,
.contact-form-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(216, 139, 75, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.028);
}

.contact-section-head {
  display: grid;
  gap: 9px;
}

.contact-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

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

.contact-info-card,
.contact-discord-card,
.contact-form-notice {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.2);
}

.contact-info-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 13px;
  align-items: center;
  padding: 16px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 139, 75, 0.42);
  background: rgba(216, 139, 75, 0.055);
}

.contact-info-card i,
.contact-discord-card i,
.contact-form-notice i,
.contact-submit i {
  width: 18px;
  height: 18px;
  color: var(--amber, #d8aa5b);
  stroke-width: 1.8;
}

.contact-info-card i {
  grid-row: span 2;
  width: 22px;
  height: 22px;
}

.contact-info-card span,
.contact-discord-card span,
.contact-premium-form label span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info-card strong,
.contact-discord-card strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.contact-discord-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.contact-discord-card > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
}

.contact-discord-card i {
  grid-row: span 2;
}

.contact-discord-card .button {
  min-height: 42px;
  padding-inline: 16px;
  border-color: rgba(216, 139, 75, 0.34);
}

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

.contact-premium-form label {
  display: grid;
  gap: 8px;
}

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

.contact-premium-form input,
.contact-premium-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-premium-form textarea {
  min-height: 162px;
  resize: vertical;
}

.contact-premium-form input::placeholder,
.contact-premium-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.contact-premium-form input:focus,
.contact-premium-form textarea:focus {
  border-color: rgba(216, 139, 75, 0.72);
  background: rgba(216, 139, 75, 0.045);
}

.contact-submit {
  justify-content: center;
  min-height: 54px;
  margin-top: 4px;
}

.contact-form-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(216, 139, 75, 0.26);
  background: rgba(216, 139, 75, 0.055);
}

@keyframes contactIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero,
  .contact-info-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-shell {
    width: min(100% - 22px, 1280px);
  }

  .contact-hero,
  .contact-info-panel,
  .contact-form-panel {
    border-radius: 18px;
  }

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

  .contact-discord-card {
    display: grid;
  }

  .contact-discord-card .button {
    width: 100%;
  }
}

/* Contact page: immersive full-background layout.
   Replace /images/contact-bg.jpg via FTP/FileZilla to change the visual. */
.contact-page {
  min-height: 100vh;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.78) 100%),
    url("/images/contact-bg.jpg") center/cover fixed,
    linear-gradient(135deg, #15191f 0%, #080808 100%);
}

.contact-shell {
  width: min(100% - 40px, 1560px);
  min-height: 100svh;
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: clamp(106px, 9vw, 132px) 0 clamp(48px, 6vw, 74px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 660px);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  margin-top: 0;
}

.contact-layout::before {
  content: "";
  min-height: clamp(360px, 48vw, 640px);
}

.contact-form-panel {
  display: grid;
  gap: 22px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(20, 24, 32, 0.92), rgba(4, 5, 6, 0.9)),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
}

.contact-section-head {
  display: grid;
  gap: 10px;
}

.contact-section-head .eyebrow {
  margin: 0;
  color: rgba(216, 139, 75, 0.9);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section-head h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.02;
}

.contact-section-head p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

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

.contact-premium-form label {
  display: grid;
  gap: 8px;
}

.contact-form-wide,
.contact-submit,
.contact-premium-form label:first-child {
  grid-column: 1 / -1;
}

.contact-premium-form label span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.contact-premium-form input,
.contact-premium-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(90, 96, 106, 0.62);
  font: inherit;
  font-weight: 750;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-premium-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-premium-form input::placeholder,
.contact-premium-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-premium-form input:focus,
.contact-premium-form textarea:focus {
  border-color: rgba(216, 139, 75, 0.82);
  background: rgba(76, 79, 86, 0.78);
}

.contact-submit {
  display: inline-flex;
  justify-content: center;
  min-height: 56px;
  margin-top: 8px;
  color: #111;
  border-color: rgba(216, 139, 75, 0.78);
  border-radius: 4px;
  background: linear-gradient(180deg, #e8bf72, #c68b43);
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 194, 123, 0.92);
  background: linear-gradient(180deg, #f1cb83, #d49a4e);
}

.contact-submit i {
  width: 18px;
  height: 18px;
  color: #111;
}

.contact-direct-list {
  display: grid;
  gap: 20px;
  padding-top: 14px;
}

.contact-direct-list article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: rgba(255, 255, 255, 0.92);
}

.contact-direct-list i {
  width: 21px;
  height: 21px;
  margin-top: 1px;
  color: #fff;
  stroke-width: 1.8;
}

.contact-direct-list strong,
.contact-direct-list a {
  color: #fff;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
}

.contact-direct-list a:hover,
.contact-direct-list a:focus-visible {
  color: var(--amber, #d8aa5b);
}

.contact-form-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 139, 75, 0.28);
  border-radius: 8px;
  background: rgba(216, 139, 75, 0.08);
}

.contact-form-notice i {
  width: 18px;
  height: 18px;
  color: var(--amber, #d8aa5b);
}

.contact-form-notice-error {
  border-color: rgba(217, 69, 91, 0.4);
  background: rgba(217, 69, 91, 0.1);
}

.contact-form-notice-error i {
  color: #ff9c9c;
}

@media (max-width: 980px) {
  .contact-page {
    background-position: center;
    background-attachment: scroll;
  }

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

  .contact-layout::before {
    min-height: 18svh;
  }

  .contact-form-panel {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .contact-shell {
    width: min(100% - 22px, 1560px);
    padding-top: 98px;
  }

  .contact-layout::before {
    min-height: 12svh;
  }

  .contact-form-panel {
    padding: 22px 16px;
    border-radius: 12px;
  }

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

  .contact-premium-form input,
  .contact-premium-form textarea,
  .contact-submit {
    border-radius: 6px;
  }
}

.org-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 80% 6%, rgba(216, 139, 75, 0.12), transparent 32%),
    radial-gradient(circle at 12% 20%, rgba(216, 139, 75, 0.08), transparent 30%),
    linear-gradient(180deg, #070707 0%, #0b0a09 54%, #050505 100%);
}

.org-modern-shell {
  width: min(100% - 36px, 1500px);
  margin: 0 auto;
  padding: clamp(118px, 12vw, 156px) 0 clamp(54px, 8vw, 96px);
}

.org-modern-hero {
  display: grid;
  gap: 12px;
  max-width: 740px;
  margin-bottom: 24px;
}

.org-modern-hero .eyebrow {
  margin: 0;
  color: rgba(216, 139, 75, 0.95);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.org-modern-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 1;
}

.org-modern-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.org-board {
  position: relative;
  min-height: clamp(620px, 65vw, 880px);
  border: 1px solid rgba(216, 139, 75, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 50% 8%, rgba(216, 139, 75, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.022);
  background-size: 100% 12.5%, 8.333% 100%, auto, auto;
  overflow: hidden;
}

.org-board-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.org-board-lines path {
  fill: none;
  stroke: rgba(216, 139, 75, 0.42);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.org-person-card {
  position: absolute;
  left: var(--org-x);
  top: var(--org-y);
  z-index: 1;
  width: min(260px, 22vw);
  min-width: 220px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.09), rgba(255, 255, 255, 0.024)),
    rgba(6, 6, 6, 0.78);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.org-person-card:hover {
  transform: translate(-50%, calc(-50% - 2px)) scale(1.01);
  border-color: rgba(216, 139, 75, 0.58);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(6, 6, 6, 0.84);
}

.org-person-card::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 2px;
  border-radius: 999px;
  background: rgba(216, 139, 75, 0.76);
}

.org-person-card.is-root {
  border-color: rgba(216, 139, 75, 0.5);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.15), rgba(255, 255, 255, 0.03)),
    rgba(8, 6, 5, 0.86);
}

.org-person-card.is-root::before {
  background: #e2b76a;
}

.org-person-card.is-branch {
  border-color: rgba(255, 255, 255, 0.18);
}

.org-person-card.is-branch::before {
  background: rgba(216, 139, 75, 0.62);
}

.org-person-card.is-role {
  border-color: rgba(255, 255, 255, 0.1);
}

.org-person-card.is-role::before {
  background: rgba(255, 255, 255, 0.32);
}

.org-person-photo,
.org-person-photo img {
  width: 64px;
  height: 64px;
}

.org-person-photo {
  border: 1px solid rgba(216, 139, 75, 0.48);
  border-radius: 16px;
  overflow: hidden;
}

.org-person-photo img {
  display: block;
  object-fit: cover;
}

.org-person-content {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.org-person-badge {
  width: fit-content;
  max-width: 100%;
  padding: 4px 7px;
  color: rgba(216, 139, 75, 0.96);
  border: 1px solid rgba(216, 139, 75, 0.26);
  border-radius: 999px;
  background: rgba(216, 139, 75, 0.06);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.org-person-card h2 {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.15;
}

.org-person-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.org-empty-state {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(100% - 32px, 460px);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 30px;
  border: 1px solid rgba(216, 139, 75, 0.22);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -50%);
  text-align: center;
}

.org-empty-state i {
  width: 34px;
  height: 34px;
  color: var(--amber, #d8aa5b);
}

.org-empty-state h2,
.org-empty-state p {
  margin: 0;
}

.org-empty-state p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.org-admin-form {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.org-admin-inline,
.org-member-edit-form {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.org-member-admin-list .request-row {
  align-items: start;
}

.org-admin-shell {
  width: min(100% - 28px, 1480px);
  overflow-x: hidden;
}

.org-admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(216, 139, 75, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.026);
}

.org-admin-topbar .eyebrow {
  margin: 0 0 4px;
  color: rgba(216, 139, 75, 0.9);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.org-admin-topbar h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
}

.org-admin-topbar .admin-shortcuts {
  margin: 0;
  justify-content: flex-end;
}

.org-admin-page .dashboard {
  overflow: hidden;
}

.org-admin-page .vehicle-form,
.org-admin-page .inline-admin-form {
  width: 100%;
  min-width: 0;
}

.org-admin-page .vehicle-form > *,
.org-admin-page .inline-admin-form > *,
.org-admin-page .request-row > * {
  min-width: 0;
}

.org-admin-page input,
.org-admin-page select {
  max-width: 100%;
}

.org-admin-page .request-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.org-admin-page .request-row > form:not(.inline-admin-form) {
  justify-self: start;
}

.org-member-edit-form {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .org-person-card {
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .org-admin-topbar {
    display: grid;
  }

  .org-admin-topbar .admin-shortcuts {
    justify-content: flex-start;
  }

  .org-admin-form,
  .org-admin-inline,
  .org-member-edit-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .org-modern-shell {
    width: min(100% - 22px, 1500px);
  }

  .org-board {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 14px;
    border-radius: 20px;
    overflow: visible;
  }

  .org-board-lines {
    display: none;
  }

  .org-person-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .org-person-card:hover {
    transform: translateY(-2px);
  }

  .org-empty-state {
    position: static;
    width: 100%;
    transform: none;
  }

  .org-admin-form,
  .org-admin-inline,
  .org-member-edit-form {
    grid-template-columns: 1fr;
  }

  .org-admin-shell {
    width: min(100% - 18px, 1480px);
  }

  .org-admin-topbar {
    padding: 14px;
    border-radius: 14px;
  }

  .org-admin-topbar .admin-shortcuts {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.news-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 78% 2%, rgba(216, 139, 75, 0.1), transparent 30%),
    radial-gradient(circle at 16% 38%, rgba(216, 139, 75, 0.055), transparent 28%),
    linear-gradient(180deg, #070707 0%, #10100e 42%, #070707 100%);
}

.news-page-main {
  padding-top: 76px;
}

.news-shell {
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  padding: clamp(104px, 10vw, 136px) 0 clamp(78px, 9vw, 120px);
}

.news-page-main .news-shell {
  padding: clamp(22px, 3vw, 34px) 0 clamp(78px, 9vw, 120px);
}

.news-hero {
  position: relative;
  display: block;
  border-top: 1px solid rgba(216, 139, 75, 0.12);
  border-bottom: 1px solid rgba(216, 139, 75, 0.16);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46)),
    var(--news-hero-image, linear-gradient(135deg, rgba(216, 139, 75, 0.18), rgba(255, 255, 255, 0.035) 42%, rgba(0, 0, 0, 0.32)));
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.news-hero-inner {
  width: min(100% - 40px, 1320px);
  min-height: clamp(280px, 28vw, 390px);
  display: grid;
  align-content: center;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) 0 clamp(34px, 5vw, 60px);
}

.news-hero-inner::after {
  content: "";
  width: 58px;
  height: 2px;
  margin-top: 22px;
  background: var(--amber, #d8aa5b);
}

.news-hero .eyebrow,
.news-article-hero .eyebrow {
  margin: 0 0 12px;
  color: rgba(216, 139, 75, 0.95);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-hero h1,
.news-article-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1;
}

.news-hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65;
}

.news-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 clamp(30px, 4vw, 48px);
}

.news-category-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.72rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.news-category-nav a:hover,
.news-category-nav a.is-active {
  color: #fff;
  border-color: rgba(216, 139, 75, 0.5);
  background: rgba(216, 139, 75, 0.08);
  transform: translateY(-1px);
}

.news-section-title {
  display: grid;
  grid-template-columns: auto minmax(32px, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}

.news-section-title h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

.news-section-title::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 139, 75, 0.82), rgba(255, 255, 255, 0.08));
}

.news-section-title a {
  color: var(--amber, #d8aa5b);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.news-section-title a:hover,
.news-section-title a:focus-visible {
  color: #f7d48e;
  transform: translateX(3px);
}

.news-featured-section,
.news-list-section {
  margin-top: clamp(30px, 4.5vw, 54px);
}

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

.news-featured-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.018)),
    #0d0d0d;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.news-featured-card:hover,
.news-featured-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(216, 139, 75, 0.52);
  background:
    linear-gradient(180deg, rgba(216, 139, 75, 0.055), rgba(255, 255, 255, 0.018)),
    #10100f;
}

.news-featured-media {
  display: block;
  overflow: hidden;
  color: rgba(216, 139, 75, 0.75);
  text-decoration: none;
}

.news-featured-media img,
.news-featured-media .news-card-placeholder {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
  display: block;
  filter: brightness(0.84) saturate(0.94);
  transition: filter 180ms ease, transform 260ms ease;
}

.news-featured-card:hover img,
.news-featured-card:focus-within img {
  filter: brightness(0.98) saturate(1.02);
  transform: scale(1.015);
}

.news-featured-body {
  display: grid;
  gap: 13px;
  padding: clamp(16px, 2.2vw, 22px);
}

.news-featured-body h2,
.news-list-body h3 {
  margin: 0;
  color: #fff;
  line-height: 1.12;
}

.news-featured-body h2 {
  font-size: clamp(20px, 2vw, 26px);
}

.news-featured-body h2 a,
.news-list-body h3 a {
  color: inherit;
  text-decoration: none;
}

.news-featured-body p,
.news-list-body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.news-featured-body p {
  -webkit-line-clamp: 2;
}

.news-read-link,
.news-list-arrow,
.news-empty-link {
  color: var(--amber, #d8aa5b);
  font-weight: 850;
  text-decoration: none;
}

.news-read-link {
  width: fit-content;
  margin-top: 2px;
  font-size: 0.86rem;
}

.news-read-link span,
.news-list-arrow {
  transition: transform 180ms ease;
}

.news-read-link:hover span,
.news-read-link:focus-visible span,
.news-list-item:hover .news-list-arrow,
.news-list-item:focus-within .news-list-arrow {
  transform: translateX(4px);
}

.news-list {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.016);
}

.news-list-item {
  display: grid;
  grid-template-columns: minmax(112px, 168px) minmax(0, 1fr) minmax(92px, auto) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.news-list-item:last-child {
  border-bottom: 0;
}

.news-list-item:hover,
.news-list-item:focus-within {
  transform: translateX(2px);
  border-bottom-color: rgba(216, 139, 75, 0.28);
  background: rgba(216, 139, 75, 0.025);
}

.news-list-media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  color: rgba(216, 139, 75, 0.75);
  text-decoration: none;
}

.news-list-media img,
.news-list-media .news-card-placeholder {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
  display: block;
  filter: brightness(0.86) saturate(0.92);
}

.news-list-body {
  display: grid;
  gap: 8px;
}

.news-list-body h3 {
  font-size: clamp(17px, 1.7vw, 22px);
}

.news-list-body p {
  -webkit-line-clamp: 2;
  max-width: 760px;
  font-size: 0.94rem;
}

.news-list-date {
  justify-self: end;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.news-list-arrow {
  justify-self: end;
}

.news-list-arrow {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(216, 139, 75, 0.26);
  border-radius: 999px;
  background: rgba(216, 139, 75, 0.04);
}

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

.news-card,
.home-news-card a {
  display: grid;
  overflow: hidden;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.028);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.news-card:hover,
.home-news-card a:hover,
.home-news-card a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(216, 139, 75, 0.55);
  background: rgba(216, 139, 75, 0.055);
}

.news-card-media img,
.home-news-card img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.92);
  transition: filter 180ms ease, transform 260ms ease;
}

.news-card-placeholder,
.home-news-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.72;
  color: rgba(216, 139, 75, 0.72);
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.12), rgba(255, 255, 255, 0.035)),
    #101010;
}

.news-card-placeholder i,
.home-news-placeholder i {
  width: 34px;
  height: 34px;
}

.news-card:hover img,
.home-news-card a:hover img {
  filter: brightness(0.96) saturate(1.02);
  transform: scale(1.015);
}

.news-card-body,
.home-news-card a {
  padding: 18px;
}

.news-card-body {
  display: grid;
  gap: 12px;
}

.news-card-meta,
.news-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-card-meta span,
.home-news-card span {
  color: rgba(216, 139, 75, 0.95);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card-meta time,
.home-news-card time,
.news-card-foot small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 750;
}

.news-card h2,
.home-news-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.news-card h2 a {
  color: inherit;
  text-decoration: none;
}

.news-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.news-card-foot a,
.home-news-card small {
  color: var(--amber, #d8aa5b);
  font-weight: 850;
  text-decoration: none;
}

.news-empty {
  width: min(100%, 560px);
  margin: clamp(30px, 5vw, 58px) auto 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(216, 139, 75, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.026);
  text-align: center;
}

.news-empty i {
  width: 34px;
  height: 34px;
  color: var(--amber, #d8aa5b);
}

.news-empty h1,
.news-empty h2,
.news-empty p {
  margin: 0;
}

.news-empty h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.news-empty p {
  color: rgba(255, 255, 255, 0.62);
}

.error-page-card {
  margin-top: clamp(30px, 8vw, 90px);
  margin-bottom: clamp(30px, 8vw, 90px);
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.faq-category {
  margin: 36px 0 12px;
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(216, 139, 75, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::marker {
  content: "";
}

.faq-item summary:hover {
  color: var(--amber, #d8aa5b);
}

.faq-chevron {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--amber, #d8aa5b);
  transition: transform 180ms ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

.news-article {
  display: grid;
  gap: 24px;
}

.news-article-masthead {
  width: min(100%, 760px);
  margin: 0 auto;
  padding-bottom: 8px;
  text-align: center;
}

.news-article-masthead .eyebrow {
  color: var(--amber, #d8aa5b);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-article-masthead h1 {
  margin: 10px 0 16px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 400;
  line-height: 1.15;
}

.news-article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.news-article-byline span:first-child {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.news-article-byline > *:not(:first-child)::before {
  content: "\00b7";
  margin-right: 10px;
  color: rgba(216, 139, 75, 0.6);
}

.news-article-hero {
  position: relative;
  min-height: clamp(320px, 42vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(216, 139, 75, 0.22);
  border-radius: 20px;
  background: #050505;
}

.news-article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.news-article-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(216, 139, 75, 0.7);
  background:
    radial-gradient(circle at 28% 24%, rgba(216, 139, 75, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.42)),
    #080808;
}

.news-article-placeholder i {
  width: 54px;
  height: 54px;
}

.news-article-content {
  width: min(100%, 720px);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.8;
}

.news-article-content > p:first-of-type::first-letter {
  float: left;
  margin: 4px 8px 0 0;
  color: var(--amber, #d8aa5b);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4em;
  font-weight: 700;
  line-height: 0.82;
}

.news-article-content h2,
.news-article-content h3 {
  color: #fff;
  line-height: 1.16;
}

.news-article-content h2 {
  margin-top: 36px;
  font-size: clamp(22px, 2.6vw, 30px);
}

.news-article-content h3 {
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 22px);
}

.news-article-content a {
  color: var(--amber, #d8aa5b);
}

.news-article-content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12em;
  font-style: italic;
  border-left: 2px solid rgba(216, 139, 75, 0.7);
  background: rgba(216, 139, 75, 0.055);
}

.news-article-content.legal-article {
  padding-bottom: clamp(48px, 6vw, 80px);
}

.news-article-content .legal-meta {
  margin-top: 40px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.news-gallery img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

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

.news-article-nav a {
  display: grid;
  gap: 7px;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(216, 139, 75, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.026);
  text-decoration: none;
}

.news-article-nav span {
  color: rgba(216, 139, 75, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-news-section {
  width: min(100% - 32px, 1220px);
  margin: clamp(34px, 5vw, 58px) auto clamp(54px, 7vw, 86px);
  padding: clamp(8px, 1.5vw, 16px) 0 0;
}

.home-news-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  margin-bottom: clamp(18px, 2.6vw, 28px);
}

.home-news-head span {
  color: rgba(216, 139, 75, 0.92);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-news-head h2 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.home-news-head a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: #f7f3ea;
  border: 1px solid rgba(216, 139, 75, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.home-news-head a:hover,
.home-news-head a:focus-visible {
  color: var(--amber, #d8aa5b);
  border-color: rgba(216, 139, 75, 0.62);
  background: rgba(216, 139, 75, 0.07);
  transform: translateY(-2px);
}

.home-news-head a span {
  color: inherit;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 180ms ease;
}

.home-news-head a:hover span,
.home-news-head a:focus-visible span {
  transform: translateX(4px);
}

.home-news-card a {
  min-height: 100%;
  grid-template-rows: auto 1fr;
  gap: 0;
  background: rgba(10, 10, 10, 0.72);
}

.home-news-media {
  display: block;
  overflow: hidden;
}

.home-news-card img,
.home-news-placeholder {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  display: block;
}

.home-news-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.home-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-news-card span.home-news-body,
.home-news-card span.home-news-media,
.home-news-card span.home-news-meta {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.home-news-card strong {
  color: #fff;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.12;
}

.home-news-card em {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.55;
}

.home-news-card small span {
  transition: transform 180ms ease;
}

.home-news-card a:hover small span,
.home-news-card a:focus-visible small span {
  display: inline-block;
  transform: translateX(4px);
}

.home-news-section.is-count-1 .home-news-grid {
  grid-template-columns: minmax(0, 1fr);
}

.home-news-section.is-count-1 .home-news-card a {
  grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
  grid-template-rows: auto;
}

.home-news-section.is-count-1 .home-news-card img,
.home-news-section.is-count-1 .home-news-placeholder {
  height: 100%;
  min-height: 220px;
  aspect-ratio: auto;
}

.home-news-section.is-count-1 .home-news-body {
  align-content: center;
  padding: clamp(22px, 4vw, 34px);
}

.home-news-section.is-count-1 .home-news-card strong {
  font-size: clamp(26px, 3.4vw, 42px);
}

.home-news-section.is-count-1 .home-news-card em {
  max-width: 620px;
  -webkit-line-clamp: 3;
}

.news-admin-shell {
  width: min(100% - 28px, 1480px);
}

.news-admin-form {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.news-editor {
  font-family: inherit;
  line-height: 1.7;
}

.news-admin-list .request-row {
  grid-template-columns: minmax(0, 1fr);
}

.news-admin-list .form-actions {
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .news-featured-grid,
  .news-grid,
  .home-news-grid,
  .news-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-list-item {
    grid-template-columns: 150px minmax(0, 1fr) auto auto;
  }

  .home-news-section.is-count-1 .home-news-card a {
    grid-template-columns: minmax(180px, 44%) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .news-shell,
  .news-admin-shell {
    width: min(100% - 22px, 1340px);
  }

  .news-hero,
  .news-article-hero {
    border-radius: 18px;
  }

  .news-page-main {
    padding-top: 72px;
  }

  .news-hero-inner {
    width: min(100% - 24px, 1320px);
    min-height: 300px;
    padding: 30px 0;
  }

  .news-featured-grid,
  .news-grid,
  .home-news-grid,
  .news-gallery,
  .news-article-nav,
  .news-admin-form {
    grid-template-columns: 1fr;
  }

  .news-category-nav {
    gap: 7px;
  }

  .news-category-nav a {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .news-list-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 12px;
  }

  .news-list-date {
    grid-column: 2;
    justify-self: start;
    margin-top: -4px;
    font-size: 0.78rem;
  }

  .news-list-arrow {
    display: none;
  }

  .news-list-body p {
    display: none;
  }

  .home-news-section {
    width: min(100% - 22px, 1220px);
    padding: 8px 0 0;
  }

  .home-news-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-news-head a {
    width: fit-content;
  }

  .home-news-section.is-count-1 .home-news-card a {
    grid-template-columns: 1fr;
  }

  .home-news-section.is-count-1 .home-news-card img,
  .home-news-section.is-count-1 .home-news-placeholder {
    min-height: 0;
    aspect-ratio: 1.65;
  }

  .news-card-meta,
  .news-card-foot {
    display: grid;
    justify-content: start;
  }
}

/* Premium reviews page */
.reviews-page {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 42px);
}

.reviews-page > .panel-hero.reviews-hero,
.reviews-page > .reviews-google-panel {
  display: none;
}

.reviews-premium-hero {
  min-height: clamp(270px, 34vw, 430px);
  display: flex;
  align-items: flex-end;
  margin-bottom: clamp(22px, 4vw, 42px);
  padding: clamp(24px, 5vw, 64px);
  border: 1px solid rgba(216, 139, 75, 0.24);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.42) 52%, rgba(5, 5, 5, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 58%),
    url("/assets/img/reviews-hero.jpg") center / cover no-repeat,
    #080808;
}

.reviews-hero-content {
  max-width: 680px;
}

.reviews-hero-content h1 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.reviews-hero-content p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.reviews-score-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  margin-bottom: clamp(22px, 3.5vw, 40px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(216, 139, 75, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(216, 139, 75, 0.055));
}

.reviews-score-main {
  display: grid;
  gap: 12px;
}

.reviews-score-value {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.reviews-score-value strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 5.75rem);
  line-height: 0.9;
}

.reviews-score-value div {
  display: grid;
  gap: 7px;
  padding-bottom: 8px;
}

.reviews-score-value small,
.reviews-page .review-card small,
.reviews-page .review-card p,
.reviews-page .review-form-card p {
  color: rgba(255, 255, 255, 0.64);
}

.reviews-page .review-stars {
  color: #e6ad55;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.reviews-score-panel .review-bars {
  display: grid;
  gap: 10px;
}

.reviews-score-panel .review-bar-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
}

.reviews-score-panel .review-bar-row span,
.reviews-score-panel .review-bar-row small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.reviews-score-panel .review-bar-row div {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.reviews-score-panel .review-bar-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d88b4b, #f2cf83);
}

.reviews-page .reviews-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.reviews-page .review-form-card,
.reviews-page .review-card {
  border: 1px solid rgba(216, 139, 75, 0.2);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
}

.reviews-page .review-form-card {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 26px);
}

.reviews-page .review-form-card h2,
.reviews-page .review-empty-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1;
}

.reviews-page .review-form-card form {
  display: grid;
  gap: 16px;
}

.reviews-page .review-form-card label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-page .review-form-card textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
}

.reviews-page .review-form-card textarea:focus {
  border-color: rgba(216, 139, 75, 0.72);
  outline: none;
}

.reviews-page .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
}

.reviews-page .star-rating legend {
  width: 100%;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-page .star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reviews-page .star-rating label {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 139, 75, 0.18);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  font-size: 1.05rem;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.reviews-page .star-rating label:hover,
.reviews-page .star-rating label:hover ~ label,
.reviews-page .star-rating input:checked ~ label {
  border-color: rgba(216, 139, 75, 0.62);
  background: rgba(216, 139, 75, 0.1);
  color: #f2cf83;
}

.reviews-page .star-rating label:hover {
  transform: translateY(-2px);
}

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

.reviews-page .review-card {
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2.2vw, 22px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.reviews-page .review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 139, 75, 0.5);
  background: rgba(255, 255, 255, 0.035);
}

.reviews-page .review-card header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.reviews-page .review-avatar {
  width: 52px;
  height: 52px;
}

.reviews-page .review-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
}

.reviews-page .review-card p {
  margin: 0;
  line-height: 1.65;
}

.reviews-page .review-card blockquote {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(216, 139, 75, 0.18);
  border-radius: 12px;
  background: rgba(216, 139, 75, 0.055);
  color: rgba(255, 255, 255, 0.72);
}

.reviews-page .review-card blockquote strong {
  display: block;
  margin-bottom: 6px;
  color: #e8b86a;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.reviews-page .review-empty-card {
  min-height: 220px;
  place-content: center;
  text-align: center;
}

@media (max-width: 900px) {
  .reviews-score-panel,
  .reviews-page .reviews-layout {
    grid-template-columns: 1fr;
  }

  .reviews-page .review-form-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .reviews-page {
    padding: 14px;
  }

  .reviews-premium-hero {
    min-height: 300px;
    padding: 22px;
    border-radius: 14px;
  }

  .reviews-score-value {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .reviews-page .review-card header {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .reviews-page .review-avatar {
    width: 42px;
    height: 42px;
  }

  .reviews-page .review-card header .review-stars {
    grid-column: 2;
    justify-self: start;
  }
}

/* Premium reservation detail page */
.request-page {
  background:
    radial-gradient(circle at 28% 18%, rgba(216, 139, 75, 0.075), transparent 32%),
    linear-gradient(180deg, #070707, #11100f 35%, #060606);
}

.request-shell {
  width: min(100% - clamp(28px, 5vw, 72px), 1040px);
  margin: 0 auto;
  padding: 22px 0 clamp(48px, 6vw, 78px);
}

.request-hero {
  width: 100%;
  min-height: clamp(150px, 17vw, 205px);
  display: flex;
  align-items: flex-end;
  margin: 0 auto 22px;
  padding: clamp(22px, 3.2vw, 40px) clamp(24px, 4vw, 52px);
  border: 1px solid rgba(216, 139, 75, 0.18);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.38) 48%, rgba(5, 5, 5, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 62%),
    var(--request-hero-image, url("/assets/img/request-hero.jpg")) center / cover no-repeat,
    #070707;
}

.request-hero h1 {
  max-width: 720px;
  margin: 5px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
}

.request-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
}

.request-status-badge i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e8b86a;
}

.request-status-badge.status-green i {
  background: #56d48a;
}

.request-status-badge.status-red i {
  background: #f06666;
}

.request-status-badge.status-blue i {
  background: #7db4ff;
}

.request-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.82fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 12px;
}

.request-panel {
  border: 1px solid rgba(216, 139, 75, 0.2);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.88), rgba(8, 8, 8, 0.92));
}

.request-panel-head {
  display: block;
  padding: 14px 18px 0;
}

.request-thread-head {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  padding: 14px 18px 0;
}

.request-panel-head h2,
.request-thread-head h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.08;
}

.request-panel .eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.72rem;
}

.request-panel .eyebrow svg {
  width: 16px;
  height: 16px;
  color: #e8b86a;
}

.request-vehicle-card,
.request-client-card {
  min-height: 426px;
  padding-bottom: 14px;
}

.request-client-card {
  display: flex;
  flex-direction: column;
}

.request-vehicle-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 168px;
  gap: 14px;
  align-items: stretch;
  padding: 14px 18px 10px;
}

.request-detail-image {
  width: 100%;
  height: 100%;
  min-height: 138px;
  max-height: 178px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.32);
}

.request-detail-facts {
  display: grid;
  gap: 10px;
  align-content: center;
}

.request-detail-facts span {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 3px 9px;
  align-items: center;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: transparent;
}

.request-detail-facts span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.request-detail-facts svg,
.request-client-list svg {
  width: 15px;
  height: 15px;
  color: #e8b86a;
}

.request-detail-facts small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.request-detail-facts strong {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
}

.request-inline-link {
  width: fit-content;
  margin-left: 18px;
  min-height: 34px;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.request-trade-in {
  display: grid;
  gap: 10px;
  margin: 0 18px 12px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(216, 139, 75, 0.28);
  border-radius: 12px;
  background: rgba(216, 139, 75, 0.08);
  font-size: 13px;
}

.request-trade-in .row-title {
  margin: 0;
}

.request-consignment-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 18px 12px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(216, 139, 75, 0.28);
  border-radius: 12px;
  background: rgba(216, 139, 75, 0.08);
  font-size: 13px;
}

.request-consignment-note i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--amber, #d8aa5b);
}

.request-consignment-note p {
  margin: 0;
}

.request-client-list {
  display: grid;
  gap: 10px;
  padding: 14px 18px;
}

.request-client-card .request-client-list {
  flex: 0 0 auto;
}

.request-client-list p {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.request-client-message {
  margin: 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 139, 75, 0.2);
  border-radius: 14px;
  background: rgba(216, 139, 75, 0.045);
}

.request-client-card .request-client-message {
  margin-top: auto;
}

.request-client-message small {
  display: block;
  margin-bottom: 7px;
  color: #e8b86a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.request-client-message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
  font-size: 0.96rem;
}

.request-thread-panel {
  overflow: hidden;
  margin-top: 0;
}

.request-thread-head {
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.request-thread-head h2 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

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

.request-admin-actions form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.request-admin-actions button,
.request-admin-actions a {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(216, 139, 75, 0.28);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.request-admin-actions button:hover,
.request-admin-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 139, 75, 0.62);
  background: rgba(216, 139, 75, 0.08);
}

.request-admin-actions button.is-danger {
  border-color: rgba(217, 69, 91, 0.4);
  color: #ff9c9c;
}

.request-admin-actions button.is-danger:hover {
  border-color: rgba(217, 69, 91, 0.75);
  background: rgba(217, 69, 91, 0.12);
}

.request-message-thread {
  max-height: min(48vh, 390px);
  overflow-y: auto;
  display: grid;
  gap: 8px;
  padding: 16px 18px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 139, 75, 0.5) transparent;
}

.request-message-thread .thread-message {
  width: min(100%, 840px);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
}

.request-message-thread .thread-message.is-admin {
  justify-self: end;
}

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

.request-message-thread .thread-message img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(216, 139, 75, 0.24);
  border-radius: 50%;
}

.thread-bubble {
  padding: 8px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
}

.thread-message.is-admin .thread-bubble {
  border-color: rgba(216, 139, 75, 0.16);
  background: transparent;
}

.thread-bubble header {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.thread-bubble strong {
  color: #fff;
}

.thread-bubble span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.76rem;
}

.thread-bubble p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.request-empty-thread {
  display: grid;
  min-height: 160px;
  place-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.request-empty-thread svg {
  width: 34px;
  height: 34px;
  color: #e8b86a;
}

.request-reply-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 13px 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.request-reply-form textarea {
  width: 100%;
  min-height: 54px;
  max-height: 160px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.request-reply-form textarea:focus {
  border-color: rgba(216, 139, 75, 0.68);
  outline: none;
}

.request-reply-form .button {
  align-self: stretch;
  min-width: 132px;
}

.request-reply-form .button svg {
  width: 16px;
  height: 16px;
}

.request-page .closed-thread-note {
  margin: 18px 20px 18px;
}

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

  .request-thread-head {
    align-items: stretch;
    flex-direction: column;
  }

  .request-admin-actions {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .request-shell {
    width: min(100% - 24px, 1460px);
  }

  .request-hero {
    min-height: 250px;
    padding: 24px 18px;
  }

  .request-message-thread .thread-message {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .request-message-thread .thread-message img {
    width: 38px;
    height: 38px;
  }

  .thread-bubble header {
    align-items: start;
    flex-direction: column;
    gap: 2px;
  }

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

/* Maintenance teaser hero */
.maintenance-page {
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
}

.maintenance-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end center;
  isolation: isolate;
  padding: clamp(28px, 5vw, 78px) clamp(18px, 4vw, 64px) clamp(56px, 9vh, 104px);
}

.maintenance-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.maintenance-media .hero-image {
  filter: brightness(0.78) saturate(1.08);
  transform: scale(1.035);
  animation-duration: calc(var(--slide-count) * 8.5s);
}

.maintenance-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%),
    radial-gradient(circle at 22% 72%, rgba(216, 139, 75, 0.16), transparent 34%);
}

.maintenance-scanline {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(242, 207, 131, 0.055), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 9px);
  background-size: 28% 100%, auto;
  background-position: -42% 0, 0 0;
  opacity: 0.24;
  animation: maintenanceSweep 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.maintenance-radar {
  position: absolute;
  right: clamp(24px, 7vw, 96px);
  bottom: clamp(210px, 28vh, 330px);
  z-index: 1;
  width: 92px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  opacity: 0.42;
}

.maintenance-radar::before,
.maintenance-radar::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(216, 139, 75, 0.1);
  border-radius: inherit;
}

.maintenance-radar::after {
  inset: 36%;
}

.maintenance-radar span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 207, 131, 0.9), transparent);
  transform-origin: left center;
  animation: maintenanceRadar 3.2s linear infinite;
}

.maintenance-hero .maintenance-card {
  width: min(100%, 760px);
  justify-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  backdrop-filter: none;
}

.maintenance-hero .maintenance-card img {
  width: 70px;
  height: 70px;
  margin: 0 0 4px;
  border: 1px solid rgba(216, 139, 75, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
}

.maintenance-hero .maintenance-card h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.98;
  text-transform: none;
}

.maintenance-hero .maintenance-card p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 600;
  line-height: 1.65;
}

.maintenance-hero .maintenance-progress {
  width: min(100%, 440px);
  height: 4px;
  margin-top: 4px;
  border: 1px solid rgba(216, 139, 75, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.maintenance-hero .maintenance-progress span {
  width: 44%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #d88b4b, #f2cf83, transparent);
}

.maintenance-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding-top: 4px;
}

.maintenance-status span,
.maintenance-status strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.maintenance-status strong {
  color: #e8b86a;
}

.maintenance-secret {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: help;
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.maintenance-secret span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 139, 75, 0.14);
  color: #f2cf83;
  font-size: 0.72rem;
  font-weight: 1000;
}

.maintenance-secret strong {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 220ms ease, opacity 180ms ease;
}

.maintenance-secret:hover,
.maintenance-secret:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  outline: none;
}

.maintenance-secret:hover strong,
.maintenance-secret:focus-visible strong {
  max-width: 190px;
  opacity: 1;
}

@keyframes maintenanceSweep {
  0%,
  42% {
    background-position: -42% 0, 0 0;
  }

  72%,
  100% {
    background-position: 142% 0, 0 0;
  }
}

@keyframes maintenanceRadar {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .maintenance-hero {
    align-items: end;
    padding: 18px;
    padding-bottom: 42px;
  }

  .maintenance-hero .maintenance-card {
    border-radius: 16px;
  }

  .maintenance-hero .maintenance-card img {
    width: 58px;
    height: 58px;
  }

  .maintenance-radar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .maintenance-scanline,
  .maintenance-radar span,
  .maintenance-media .hero-image {
    animation: none;
  }
}

.vm-hero-control {
  width: min(100% - 32px, 1160px) !important;
  margin-inline: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.vm-hero-filter {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  width: min(100%, 1160px);
  margin-inline: auto;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(214, 170, 91, 0.16);
  background: rgba(8, 9, 10, 0.32);
  backdrop-filter: blur(8px);
}

.vm-hero-filter select,
.vm-hero-filter input {
  flex: 1 1 0;
  min-width: 0;
  min-height: 40px;
  padding: 0 10px;
  color: #f7f3ea;
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 13px;
  transition: border-color 180ms ease, background 180ms ease;
}

.vm-hero-filter-q {
  flex: 2 1 0;
}

.vm-hero-filter select:focus,
.vm-hero-filter input:focus {
  border-color: rgba(214, 170, 91, 0.58);
  background: rgba(0, 0, 0, 0.3);
  outline: none;
}

.vm-hero-filter button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 0;
  border-radius: 9px;
  color: #15100a;
  background: linear-gradient(180deg, #e0b96f, #bd8540);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.vm-hero-filter button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #e9c77f, #c9934b);
}

.vm-hero-filter button svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 640px) {
  .vm-hero-filter {
    flex-direction: column;
  }

  .vm-hero-filter select,
  .vm-hero-filter input,
  .vm-hero-filter button {
    flex: 1 1 auto;
    width: 100%;
  }
}

.request-timeline {
  display: flex;
  align-items: flex-start;
  list-style: none;
  margin: 0 0 18px;
  padding: 20px 24px;
  border: 1px solid rgba(247, 243, 234, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.request-timeline li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.request-timeline li:not(:last-child) {
  flex: 1 1 auto;
}

.request-timeline li:not(:last-child)::after {
  content: "";
  flex: 1 1 auto;
  height: 2px;
  margin: 0 8px;
  background: rgba(247, 243, 234, 0.14);
}

.request-timeline li.is-done:not(:last-child)::after {
  background: rgba(216, 139, 75, 0.55);
}

.request-timeline-dot {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: rgba(247, 243, 234, 0.4);
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
}

.request-timeline-dot svg {
  width: 16px;
  height: 16px;
}

.request-timeline li.is-done .request-timeline-dot {
  color: #14100c;
  border-color: transparent;
  background: linear-gradient(135deg, #ffd37a, #d88b4b);
}

.request-timeline li.is-done.is-success .request-timeline-dot {
  background: linear-gradient(135deg, #8ee6b0, #33a765);
}

.request-timeline li.is-done.is-danger .request-timeline-dot {
  background: linear-gradient(135deg, #ff9c9c, #d9455b);
}

.request-timeline div {
  display: grid;
  gap: 2px;
}

.request-timeline strong {
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.request-timeline small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

@media (max-width: 720px) {
  .request-timeline {
    flex-direction: column;
    align-items: stretch;
  }

  .request-timeline li:not(:last-child)::after {
    display: none;
  }
}

/* ==========================================================================
   FaceMotors — Instagram-style redesign (isolated namespace, do not extend
   the older scattered .social- / .facemotors- rules above; every selector
   here is scoped under body.ig-page so it always wins on specificity).
   ========================================================================== */
.ig-page {
  --ig-bg: #121212;
  --ig-card: #1c1c1e;
  --ig-border: rgba(255, 255, 255, 0.14);
  --ig-text: #f5f5f5;
  --ig-muted: #a8a8a8;
  --ig-accent: #e3b872;
  --ig-danger: #ed4956;
  background: var(--ig-bg);
  background-image: radial-gradient(circle at 50% 0%, rgba(216, 139, 75, 0.1), transparent 32%);
}

.ig-page.ig-story-open {
  overflow: hidden;
}

.ig-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(126px, 13vw, 156px) 16px 90px;
  color: var(--ig-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Stories */
.ig-stories {
  border: 1px solid var(--ig-border);
  border-radius: 16px;
  padding: 16px 12px;
  margin-bottom: 24px;
  max-width: 630px;
}

.ig-stories-profile {
  max-width: 935px;
  margin-left: auto;
  margin-right: auto;
}

.ig-stories-track,
.ig-highlights-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  list-style: none;
  margin: 0;
  padding: 0 2px;
  scrollbar-width: thin;
}

.ig-highlights-track {
  margin-bottom: 20px;
}

.ig-story-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  width: 74px;
}

.ig-story-avatar-btn {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

.ig-story-ring {
  display: block;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  padding: 2.5px;
  background: rgba(255, 255, 255, 0.18);
}

.ig-story-avatar-btn.has-unseen .ig-story-ring {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.ig-highlight-delete-form {
  position: absolute;
  top: -2px;
  right: 2px;
  margin: 0;
}

.ig-highlight-delete-btn {
  appearance: none;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--ig-border);
  background: var(--ig-card);
  color: var(--ig-text);
  cursor: pointer;
}

.ig-highlight-delete-btn:hover {
  background: var(--ig-danger);
  border-color: var(--ig-danger);
}

.ig-highlight-delete-btn svg {
  width: 12px;
  height: 12px;
}

.ig-story-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #000;
  display: block;
}

.ig-story-ring-plain {
  position: relative;
}

.ig-story-ring-plain svg {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 22px;
  height: 22px;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--ig-accent);
  color: #171512;
  border: 2px solid #000;
}

.ig-story-add {
  position: relative;
}

.ig-story-add-mini {
  position: absolute;
  right: -4px;
  bottom: 20px;
}

.ig-story-plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ig-accent);
  color: #171512;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  cursor: pointer;
}

.ig-story-plus svg {
  width: 13px;
  height: 13px;
}

.ig-story-name {
  font-size: 12px;
  color: var(--ig-muted);
  max-width: 74px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Profile header */
.ig-profile-header {
  max-width: 630px;
  display: flex;
  align-items: center;
  gap: clamp(24px, 6vw, 56px);
  padding: 20px 4px 32px;
  flex-wrap: wrap;
}

.ig-profile-avatar {
  width: 120px;
  height: 120px;
  flex: 0 0 auto;
}

.ig-profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.ig-profile-info {
  flex: 1 1 260px;
}

.ig-profile-name-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ig-profile-name-row h1 {
  font-size: 22px !important;
  font-weight: 600;
  margin: 0;
  color: var(--ig-text);
}

.ig-follow-btn {
  padding: 7px 22px !important;
  font-size: 14px !important;
  border-radius: 8px !important;
}

.ig-profile-role {
  color: var(--ig-muted);
  font-size: 13px;
  margin: 8px 0 0;
}

.ig-profile-bio {
  color: var(--ig-text);
  font-size: 14px;
  line-height: 1.4;
  margin: 8px 0 0;
  white-space: pre-line;
}

.ig-bio-edit {
  margin: 8px 0 0;
}

.ig-bio-edit summary {
  color: var(--ig-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.ig-bio-edit summary:hover {
  color: var(--ig-text);
}

.ig-bio-edit-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  max-width: 380px;
}

.ig-bio-edit-form textarea {
  resize: vertical;
  border-radius: 8px;
  border: 1px solid var(--ig-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ig-text);
  font: inherit;
  padding: 8px 10px;
}

.ig-bio-edit-form button {
  align-self: flex-start;
}

.ig-profile-stats {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 15px;
}

.ig-profile-stats strong {
  color: var(--ig-text);
  font-weight: 700;
}

.ig-profile-stats a {
  color: inherit;
  text-decoration: none;
}

.ig-profile-stats a:hover {
  text-decoration: underline;
}

/* Compose */
.ig-compose {
  max-width: 630px;
  border: 1px solid var(--ig-border);
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
}

.ig-compose summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ig-text);
  list-style: none;
}

.ig-compose summary::-webkit-details-marker {
  display: none;
}

.ig-compose summary svg {
  width: 20px;
  height: 20px;
  color: var(--ig-accent);
}

.ig-compose-form {
  display: grid;
  gap: 14px;
  padding: 0 18px 20px;
}

.ig-compose-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--ig-muted);
}

.ig-compose-form input[type="file"],
.ig-compose-form input[type="text"],
.ig-compose-form input[type="number"],
.ig-compose-form input[type="datetime-local"],
.ig-compose-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ig-border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ig-text);
  font: inherit;
}

.ig-compose-form .contest-compose {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--ig-border);
  padding-top: 14px;
}

/* Profile grid */
.ig-grid {
  max-width: 935px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 32px;
}

.ig-back-to-self {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 0 auto 16px;
  color: var(--ig-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.ig-back-to-self:hover {
  color: var(--ig-text);
}

.ig-back-to-self svg {
  width: 15px;
  height: 15px;
}

.ig-profile-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  border-top: 1px solid var(--ig-border);
  margin-bottom: 20px;
}

.ig-profile-tabs a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 2px;
  margin-top: -1px;
  border-top: 1px solid transparent;
  color: var(--ig-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.ig-profile-tabs a svg {
  width: 14px;
  height: 14px;
}

.ig-profile-tabs a.is-active {
  color: var(--ig-text);
  border-top-color: var(--ig-text);
}

.ig-empty-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 935px;
  margin-bottom: 32px;
  padding: 64px 24px;
  border: 1px dashed var(--ig-border);
  border-radius: 12px;
  text-align: center;
  color: var(--ig-muted);
}

.ig-empty-profile svg {
  width: 44px;
  height: 44px;
  opacity: 0.4;
  margin-bottom: 8px;
}

.ig-empty-profile h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ig-text);
}

.ig-empty-profile p {
  margin: 0;
  font-size: 14px;
}

.ig-follow-list {
  max-width: 480px;
  margin: 0 auto 32px;
}

.ig-follow-list h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ig-text);
  margin: 0 0 16px;
}

.ig-follow-list-card {
  border: 1px solid var(--ig-border);
  border-radius: 12px;
  padding: 16px;
  background: var(--ig-card);
}

.ig-follow-list .ig-suggestion-row {
  margin-bottom: 16px;
}

.ig-follow-list .ig-suggestion-row:last-child {
  margin-bottom: 0;
}

.ig-empty-profile-compact {
  max-width: none;
  padding: 40px 24px;
}

.ig-grid-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ig-grid-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.ig-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-grid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 150ms ease;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  pointer-events: none;
}

.ig-grid-item:hover .ig-grid-overlay {
  opacity: 1;
}

.ig-grid-comment-count {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ig-grid-overlay svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.ig-page .ig-grid-like-form {
  pointer-events: auto;
}

.ig-page .ig-grid-like-form .like-button,
.ig-page .ig-grid-like-form .like-button:hover,
.ig-page .ig-grid-like-form .like-button.is-active {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  animation: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.ig-page .ig-grid-like-form .like-button.is-active svg {
  fill: var(--ig-danger) !important;
  stroke: var(--ig-danger);
}

/* Layout: feed + sidebar */
.ig-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 293px;
  gap: 28px;
  align-items: start;
}

.ig-layout-profile {
  grid-template-columns: minmax(0, 935px);
  justify-content: center;
}

.ig-layout-profile .ig-sidebar {
  display: none;
}

.ig-layout-profile .ig-profile-header {
  max-width: 935px;
}

.ig-layout-profile .ig-compose {
  max-width: 935px;
}

.ig-main-column {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.ig-feed {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.ig-feed-hidden-source {
  display: none;
}

.ig-feed-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 48px 24px;
  border: 1px solid var(--ig-border);
  border-radius: 12px;
  background: var(--ig-card);
}

.ig-feed-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  border-radius: 50%;
  border: 1px solid rgba(216, 139, 75, 0.35);
  color: var(--gold);
}

.ig-feed-empty-icon svg {
  width: 26px;
  height: 26px;
}

.ig-feed-empty-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ig-text);
}

.ig-feed-empty-text {
  margin: 0;
  font-size: 14px;
  color: var(--ig-muted);
}

.ig-feed-empty-cta {
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.ig-feed-empty-cta:hover {
  background: var(--gold);
  color: #121212;
}

.ig-sidebar {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 24px;
}

/* Post card */
.ig-post {
  border: 1px solid var(--ig-border);
  border-radius: 12px;
  background: var(--ig-card);
  overflow: hidden;
}

.ig-post-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}

.ig-post-user {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ig-text);
  text-decoration: none;
  flex: 1;
  min-width: 0;
}

.ig-post-user strong {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ig-avatar-sm {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.ig-avatar-md {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.ig-avatar-sm img,
.ig-avatar-md img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.ig-follow-inline button {
  appearance: none;
  background: none;
  border: none;
  color: var(--ig-accent);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 6px 4px;
}

.ig-pinned-badge {
  display: inline-flex;
  align-items: center;
  color: var(--ig-accent);
  margin-left: 2px;
}

.ig-pinned-badge svg {
  width: 13px;
  height: 13px;
}

.ig-grid-pin-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.7));
}

.ig-grid-pin-badge svg {
  width: 16px;
  height: 16px;
}

.ig-grid-carousel-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.7));
}

.ig-grid-carousel-badge svg {
  width: 16px;
  height: 16px;
}

.ig-post-menu {
  position: relative;
  margin-left: auto;
}

.ig-post-menu summary {
  cursor: pointer;
  list-style: none;
  padding: 6px;
  color: var(--ig-text);
  display: flex;
}

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

.ig-post-menu summary svg {
  width: 20px;
  height: 20px;
}

.ig-post-menu-panel {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 5;
  min-width: 220px;
  background: #161616;
  border: 1px solid var(--ig-border);
  border-radius: 10px;
  padding: 12px;
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.ig-page .ig-post-menu-panel .social-edit,
.ig-page .ig-post-menu-panel form {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  min-height: 0;
}

.ig-page .ig-post-menu-panel .social-edit summary,
.ig-page .ig-post-menu-panel .mini-button,
.ig-page .ig-post-menu-panel .social-menu-danger {
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 8px 10px;
  background: none;
  border: none;
  border-radius: 8px;
  color: var(--ig-text);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
  list-style: none;
  box-sizing: border-box;
}

.ig-page .ig-post-menu-panel .social-edit summary::-webkit-details-marker {
  display: none;
}

.ig-page .ig-post-menu-panel .social-edit summary:hover,
.ig-page .ig-post-menu-panel .mini-button:hover,
.ig-page .ig-post-menu-panel .social-menu-danger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ig-page .ig-post-menu-panel .social-menu-danger,
.ig-page .ig-post-menu-panel .social-menu-danger:hover {
  color: var(--ig-danger) !important;
}

.ig-page .ig-post-menu-panel textarea {
  width: 100%;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ig-border);
  border-radius: 8px;
  color: var(--ig-text);
  padding: 8px;
  font: inherit;
  box-sizing: border-box;
}

.ig-post-media {
  position: relative;
  width: 100%;
  background: var(--ig-bg);
  overflow: hidden;
}

.ig-carousel-slide {
  display: none;
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  background: var(--ig-bg);
}

.ig-carousel-slide.is-active {
  display: block;
}

.ig-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  z-index: 3;
}

.ig-carousel-nav svg {
  width: 18px;
  height: 18px;
}

.ig-carousel-nav-prev {
  left: 10px;
}

.ig-carousel-nav-next {
  right: 10px;
}

.ig-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.ig-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.ig-carousel-dot.is-active {
  background: #fff;
}

.ig-page .social-contest-box {
  display: grid;
  gap: 10px;
  margin: 12px 14px 0;
  padding: 14px;
  border: 1px solid rgba(216, 139, 75, 0.32);
  border-radius: 10px;
  background: radial-gradient(circle at 0 0, rgba(216, 139, 75, 0.14), transparent 45%), var(--ig-card);
}

.ig-page .social-contest-box h3 {
  margin: 0;
  color: var(--ig-text);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}

.ig-page .social-contest-box p {
  margin: 0;
  color: var(--ig-muted);
  font-size: 13px;
}

.ig-page .contest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ig-page .contest-meta span {
  padding: 5px 10px;
  color: var(--ig-accent);
  border: 1px solid rgba(227, 184, 114, 0.32);
  border-radius: 999px;
  background: rgba(227, 184, 114, 0.1);
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

.ig-page .contest-prizes {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 18px;
  color: var(--ig-text);
  font-size: 13px;
}

.ig-page .contest-winners {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(216, 139, 75, 0.3);
  border-radius: 8px;
  background: rgba(216, 139, 75, 0.08);
  color: var(--ig-text);
  font-size: 13px;
}

.ig-page .contest-winners strong {
  color: var(--ig-accent);
}

.ig-page .contest-admin-panel {
  padding: 10px;
  border: 1px solid var(--ig-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.ig-page .contest-admin-panel summary {
  cursor: pointer;
  color: var(--ig-muted);
  font-weight: 600;
  font-size: 13px;
  text-transform: none;
}

.ig-page .contest-admin-panel summary:hover {
  color: var(--ig-text);
}

.ig-page .contest-admin-actions {
  margin: 10px 0;
}

.ig-page .contest-participant-list {
  display: grid;
  gap: 6px;
}

.ig-page .contest-participant-list label {
  display: grid;
  grid-template-columns: auto 32px 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--ig-border);
  border-radius: 8px;
  color: var(--ig-text);
  font-size: 13px;
}

.ig-page .contest-participant-list img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
}

.ig-post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 0;
}

.ig-post-actions-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ig-icon-btn {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ig-text);
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
}

.ig-icon-btn svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.ig-icon-btn:hover {
  opacity: 0.65;
}

.ig-icon-btn-static {
  cursor: default;
}

.ig-icon-btn-static:hover {
  opacity: 1;
}

.ig-page .ig-post-actions .like-button,
.ig-page .ig-post-actions .like-button:hover,
.ig-page .ig-post-actions .like-button.is-active,
.ig-page .ig-post-actions .like-button:disabled {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  width: auto;
  height: auto;
  padding: 8px;
  color: var(--ig-text);
  border: none;
  border-radius: 999px;
  background: none;
  box-shadow: none;
  animation: none;
  opacity: 1;
  font-size: 14px;
  font-weight: 600;
}

.ig-page .ig-post-actions .like-button:hover {
  opacity: 0.65;
}

.ig-page .like-button.is-active,
.ig-page .like-button.is-active svg,
.ig-page .like-button.is-active svg path,
.ig-page .like-button.is-active svg * {
  color: var(--ig-danger) !important;
  fill: var(--ig-danger) !important;
  stroke: var(--ig-danger) !important;
}

.ig-page .save-button.is-active,
.ig-page .save-button.is-active svg,
.ig-page .save-button.is-active svg path,
.ig-page .save-button.is-active svg * {
  color: var(--ig-text) !important;
  fill: var(--ig-text) !important;
  stroke: var(--ig-text) !important;
}

.ig-page .ig-post-actions .like-button {
  position: relative;
  overflow: visible;
}

.ig-page .ig-post-actions .like-button::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  background: radial-gradient(circle, var(--ig-danger) 0%, rgba(237, 73, 86, 0.5) 55%, transparent 75%);
  pointer-events: none;
  opacity: 0;
}

@keyframes ig-like-pop {
  0% { transform: scale(1); }
  30% { transform: scale(1.55); }
  55% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

@keyframes ig-like-burst {
  0% { transform: translateY(-50%) scale(0.2); opacity: 0.85; }
  100% { transform: translateY(-50%) scale(2.6); opacity: 0; }
}

.ig-page .like-button.like-pop,
.ig-page .like-button.like-pop svg {
  animation: ig-like-pop 320ms ease !important;
}

.ig-page .like-button.like-pop::before {
  animation: ig-like-burst 480ms ease-out !important;
}

.ig-post-body {
  padding: 6px 14px 4px;
}

.ig-like-count {
  font-size: 14px;
  font-weight: 600;
  margin: 4px 0;
}

.ig-like-line {
  font-size: 14px;
  margin: 4px 0;
  color: var(--ig-text);
}

.ig-like-line strong {
  font-weight: 600;
}

.ig-caption {
  font-size: 14px;
  line-height: 1.4;
  margin: 4px 0;
  color: var(--ig-text);
}

.ig-caption a {
  color: var(--ig-text);
  text-decoration: none;
}

.ig-mention {
  color: var(--ig-accent);
  text-decoration: none;
  font-weight: 600;
}

.ig-mention:hover {
  text-decoration: underline;
}

.ig-mention-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  margin-top: 4px;
  max-height: 220px;
  overflow-y: auto;
  background: var(--ig-card);
  border: 1px solid var(--ig-border);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.ig-mention-dropdown-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  appearance: none;
  background: none;
  border: none;
  color: var(--ig-text);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.ig-mention-dropdown-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.ig-mention-dropdown-row img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.ig-caption.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-caption.is-clamped.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.ig-caption-more {
  display: inline-block;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 2px 0 4px;
  color: var(--ig-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.ig-caption-more:hover {
  color: var(--ig-text);
}

.ig-caption-more[hidden] {
  display: none;
}

.ig-comments {
  display: grid;
  gap: 6px;
  margin: 4px 0;
}

.ig-comments-toggle summary {
  cursor: pointer;
  list-style: none;
  color: var(--ig-muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.ig-comments-toggle summary::-webkit-details-marker {
  display: none;
}

.ig-comments-toggle {
  display: grid;
  gap: 6px;
}

.ig-page .social-comment {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.ig-page .social-comment-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ig-page .social-comment-name {
  color: var(--ig-text);
  text-decoration: none;
}

.ig-page .social-comment-text {
  margin: 0;
  padding: 0;
  background: none;
  color: var(--ig-text);
}

.ig-page .social-comment-avatar {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.ig-page .social-comment-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.ig-page .social-comment .mini-button {
  margin-left: auto;
  flex: 0 0 auto;
  background: none;
  border: none;
  color: var(--ig-muted);
  font-size: 11px;
  cursor: pointer;
  padding: 2px 4px;
}

.ig-timestamp {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ig-muted);
  margin: 8px 0 0;
}

.ig-comments-locked {
  padding: 10px 14px 14px;
  font-size: 12px;
  color: var(--ig-muted);
  border-top: 1px solid var(--ig-border);
  margin: 10px 0 0;
}

.ig-comment-form {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--ig-border);
  padding: 10px 14px;
  margin-top: 10px;
}

.ig-comment-form input[type="text"] {
  flex: 1;
  background: none;
  border: none;
  color: var(--ig-text);
  font-size: 14px;
  outline: none;
}

.ig-comment-form input[type="text"]::placeholder {
  color: var(--ig-muted);
}

.ig-comment-form button {
  appearance: none;
  background: none;
  border: none;
  color: var(--ig-accent);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* Sidebar */
.ig-mini-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ig-mini-profile-saved-link {
  margin-left: auto;
  display: flex;
  color: var(--ig-muted);
}

.ig-mini-profile-saved-link:hover {
  color: var(--ig-text);
}

.ig-mini-profile-saved-link svg {
  width: 20px;
  height: 20px;
}

.ig-mini-profile > div {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.ig-mini-profile a {
  color: var(--ig-text);
  text-decoration: none;
}

.ig-mini-profile span {
  color: var(--ig-muted);
  font-size: 12px;
  margin-top: 2px;
}

.ig-suggestions-head {
  display: flex;
  justify-content: space-between;
  color: var(--ig-muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ig-suggestion-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ig-suggestion-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.ig-suggestion-info a {
  color: var(--ig-text);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ig-suggestion-info small {
  color: var(--ig-muted);
  font-size: 11px;
}

.ig-suggestion-row form button {
  appearance: none;
  background: none;
  border: none;
  color: var(--ig-accent);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.ig-sidebar-ad {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ig-border);
  background: var(--ig-card);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.ig-sidebar-ad-label {
  margin: 0;
  padding: 8px 12px 0;
  color: var(--ig-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ig-sidebar-ad img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 8px;
}

.ig-sidebar-widget {
  border: 1px solid var(--ig-border);
  border-radius: 12px;
  padding: 16px;
  background: var(--ig-card);
}

.ig-sidebar-widget .ig-suggestions-head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ig-border);
}

.ig-sidebar-widget-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.ig-sidebar-widget-row:last-of-type {
  margin-bottom: 16px;
}

.ig-sidebar-widget-row img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
  background: var(--ig-bg);
}

.ig-sidebar-widget-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}

.ig-sidebar-widget-info strong {
  color: var(--ig-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ig-sidebar-widget-info small {
  color: var(--ig-muted);
  font-size: 11px;
}

.ig-sidebar-widget .notification-all-link {
  margin: 0;
}

/* Story viewer */
.ig-story-viewer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 24px;
}

.ig-story-viewer.is-open {
  display: flex;
}

.ig-story-viewer-inner {
  position: relative;
  width: min(420px, 100vw);
  height: min(100vh, 860px);
  display: flex;
  flex-direction: column;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.ig-story-progress {
  display: flex;
  gap: 4px;
  padding: 10px 10px 0;
  position: relative;
  z-index: 3;
}

.ig-story-progress-bar {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.ig-story-progress-bar.is-filled {
  background: #fff;
}

.ig-story-progress-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
}

.ig-story-progress-bar i.is-animating {
  animation: ig-story-fill 5s linear forwards;
}

.ig-story-viewer.is-paused .ig-story-progress-bar i.is-animating {
  animation-play-state: paused;
}

@keyframes ig-story-fill {
  from { width: 0%; }
  to { width: 100%; }
}

.ig-story-viewer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  position: relative;
  z-index: 3;
}

.ig-story-viewer-user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.ig-story-viewer-user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.ig-story-viewer-user strong {
  font-size: 13px;
}

.ig-story-viewer-user small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.ig-story-viewer-tools {
  display: flex;
  gap: 14px;
}

.ig-story-viewer-tools button {
  appearance: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
}

.ig-story-viewer-tools svg {
  width: 22px;
  height: 22px;
}

.ig-story-media {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ig-story-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ig-story-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.ig-story-nav-prev {
  left: 0;
}

.ig-story-nav-next {
  right: 0;
}

.ig-story-source-pill {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  z-index: 3;
}

.ig-story-source-pill svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 980px) {
  .ig-layout {
    grid-template-columns: minmax(0, 630px);
  }

  .ig-sidebar {
    display: none;
  }
}

@media (max-width: 620px) {
  .ig-shell {
    padding-left: 8px;
    padding-right: 8px;
  }

  .ig-post,
  .ig-stories,
  .ig-compose {
    border-left: none;
    border-right: none;
    border-radius: 0;
  }

  .ig-profile-header {
    gap: 20px;
  }

  .ig-profile-avatar {
    width: 84px;
    height: 84px;
  }

  .ig-story-viewer {
    padding: 0;
  }

  .ig-story-viewer-inner {
    width: 100vw;
    height: 100vh;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
}

.ig-post-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 24px;
}

.ig-post-modal.is-open {
  display: flex;
}

body.ig-post-modal-open {
  overflow: hidden;
}

.ig-post-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  appearance: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: flex;
}

.ig-post-modal-close svg {
  width: 26px;
  height: 26px;
}

.ig-post-modal-inner {
  width: min(1000px, 100%);
  height: min(680px, 100%);
}

.ig-post-modal-inner .ig-post {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 1fr);
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
}

.ig-post-modal-inner .ig-post-media {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ig-post-modal-inner .ig-carousel-slide {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.ig-post-modal-inner .ig-post-head {
  grid-column: 2;
  grid-row: 1;
}

.ig-post-modal-inner .social-contest-box {
  grid-column: 2;
  grid-row: 2;
}

.ig-post-modal-inner .ig-post-actions {
  grid-column: 2;
  grid-row: 3;
}

.ig-post-modal-inner .ig-post-body {
  grid-column: 2;
  grid-row: 4;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 40%, rgba(216, 139, 75, 0.06), transparent 65%);
}

.ig-post-modal-inner .ig-comments {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.ig-post-modal-inner .ig-comments-toggle {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  min-height: 0;
}

.ig-post-modal-inner .ig-comments-toggle summary {
  display: none;
}

.ig-comments-empty {
  display: none;
}

.ig-post-modal-inner .ig-comments-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: var(--ig-muted);
  padding: 24px 16px;
}

.ig-comments-empty svg {
  width: 38px;
  height: 38px;
  opacity: 0.35;
}

.ig-comments-empty strong {
  color: var(--ig-text);
  font-size: 14px;
  font-weight: 600;
}

.ig-comments-empty span {
  font-size: 13px;
  max-width: 220px;
}

.ig-post-modal-inner .ig-comment-form,
.ig-post-modal-inner .ig-comments-locked {
  grid-column: 2;
  grid-row: 5;
  border-top: 1px solid var(--ig-border);
}

@media (max-width: 760px) {
  .ig-post-modal {
    padding: 0;
  }

  .ig-post-modal-inner {
    width: 100%;
    height: 100%;
  }

  .ig-post-modal-inner .ig-post {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
    border-radius: 0;
  }

  .ig-post-modal-inner .ig-post-media {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .ig-post-modal-inner .ig-post-head {
    grid-row: 2;
  }

  .ig-post-modal-inner .social-contest-box {
    grid-row: 3;
  }

  .ig-post-modal-inner .ig-post-actions {
    grid-row: 4;
  }

  .ig-post-modal-inner .ig-post-body {
    grid-row: 5;
  }

  .ig-post-modal-inner .ig-comment-form,
  .ig-post-modal-inner .ig-comments-locked {
    grid-row: 6;
  }
}

/* Direct messages (FaceMotors) */
.ig-page .ig-message-btn {
  padding: 7px 18px !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  min-height: 0 !important;
  gap: 6px !important;
}

.ig-page .ig-message-btn svg {
  width: 15px;
  height: 15px;
}

.ig-page .ig-dm-shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 540px;
  height: calc(100vh - 220px);
  max-height: 720px;
  border: 1px solid var(--ig-border);
  border-radius: 16px;
  background: var(--ig-card);
  overflow: hidden;
}

.ig-page .ig-dm-list {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-right: 1px solid var(--ig-border);
  background: none;
}

.ig-page .ig-dm-list-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--ig-border);
}

.ig-page .ig-dm-list-head h1 {
  margin: 0;
  color: var(--ig-text);
  font-size: 18px;
  font-weight: 800;
}

.ig-page .ig-dm-list-items {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 6px;
}

.ig-page .ig-dm-list-items .empty-note {
  margin: 10px;
  font-size: 13px;
}

.ig-page .ig-dm-list-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ig-text);
  text-decoration: none;
}

.ig-page .ig-dm-list-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.ig-page .ig-dm-list-item.is-active {
  border-color: var(--ig-border);
  background: rgba(216, 139, 75, 0.12);
}

.ig-page .ig-dm-avatar {
  width: 44px;
  height: 44px;
}

.ig-page .ig-dm-list-item-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ig-page .ig-dm-list-item-copy strong {
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ig-page .ig-dm-list-item-copy span {
  color: var(--ig-muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ig-page .ig-dm-list-item [data-dm-unread] {
  position: static;
  flex: 0 0 auto;
  margin-left: auto;
  box-shadow: none;
}

.ig-page .ig-dm-thread {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.ig-page .ig-dm-empty {
  display: grid;
  place-items: center;
  gap: 8px;
  flex: 1;
  color: var(--ig-muted);
  text-align: center;
}

.ig-page .ig-dm-empty svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

.ig-page .ig-dm-empty p {
  margin: 0;
  font-size: 13px;
}

.ig-page .ig-dm-thread-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ig-border);
}

.ig-page .ig-dm-thread-head a {
  color: var(--ig-text);
  text-decoration: none;
  font-weight: 700;
}

.ig-page .ig-dm-thread-back {
  display: none;
  color: var(--ig-muted);
}

.ig-page .ig-dm-bubbles {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.ig-page .ig-dm-bubble {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  max-width: 70%;
}

.ig-page .ig-dm-bubble.is-mine {
  align-self: flex-end;
  align-items: flex-end;
}

.ig-page .ig-dm-bubble p {
  margin: 0;
  padding: 9px 13px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ig-text);
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
}

.ig-page .ig-dm-bubble.is-mine p {
  background: var(--ig-accent);
  color: #1c1c1c;
}

.ig-page .ig-dm-bubble-image {
  max-width: 240px;
  max-height: 240px;
  object-fit: cover;
  border-radius: 14px;
}

.ig-page .ig-dm-bubble time {
  color: var(--ig-muted);
  font-size: 11px;
  padding: 0 4px;
}

.ig-page .ig-dm-composer {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--ig-border);
}

.ig-page .ig-dm-photo-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--ig-border);
  border-radius: 50%;
  color: var(--ig-muted);
  cursor: pointer;
}

.ig-page .ig-dm-photo-btn:hover {
  color: var(--ig-text);
  border-color: var(--ig-accent);
}

.ig-page .ig-dm-composer textarea {
  flex: 1;
  resize: none;
  max-height: 140px;
  border: 1px solid var(--ig-border);
  border-radius: 18px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ig-text);
  font: inherit;
  font-size: 14px;
}

.ig-page .ig-dm-composer .mini-button {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: var(--ig-accent);
  color: #1c1c1c;
  border: none;
}

@media (max-width: 720px) {
  .ig-page .ig-dm-shell {
    grid-template-columns: 1fr;
    height: calc(100vh - 180px);
  }

  .ig-page .ig-dm-list {
    border-right: none;
  }

  .ig-page .ig-dm-thread:not(.is-open) {
    display: none;
  }

  .ig-page .ig-dm-shell:has(.ig-dm-thread.is-open) .ig-dm-list {
    display: none;
  }

  .ig-page .ig-dm-thread-back {
    display: grid;
  }
}

/* Direct messages: thread header actions */
.ig-page .ig-dm-thread-head-name {
  margin-right: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ig-page .ig-dm-block-form {
  flex: 0 0 auto;
}

.ig-page .ig-dm-block-btn {
  color: var(--ig-danger);
  border-color: rgba(237, 73, 86, 0.35);
  background: none;
}

.ig-page .ig-dm-blocked-note {
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--ig-border);
  color: var(--ig-muted);
  font-size: 13px;
  text-align: center;
}

.ig-page .ig-dm-typing {
  margin: 0;
  padding: 0 16px 8px;
  color: var(--ig-muted);
  font-size: 12px;
  font-style: italic;
}

.ig-page .ig-dm-typing[hidden] {
  display: none;
}

/* Direct messages: bubble meta row (timestamp + delete) */
.ig-page .ig-dm-bubble-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ig-page .ig-dm-bubble.is-mine .ig-dm-bubble-meta {
  flex-direction: row-reverse;
}

.ig-page .ig-dm-delete-btn {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: none;
  color: var(--ig-muted);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.ig-page .ig-dm-bubble:hover .ig-dm-delete-btn {
  opacity: 1;
}

.ig-page .ig-dm-delete-btn:hover {
  color: var(--ig-danger);
}

.ig-page .ig-dm-delete-btn svg {
  width: 13px;
  height: 13px;
}

.ig-page .ig-dm-seen {
  color: var(--ig-muted);
  font-size: 11px;
  padding: 0 4px;
}

.ig-page .ig-dm-bubble.is-deleted p.ig-dm-deleted-note {
  margin: 0;
  padding: 9px 13px;
  border-radius: 16px;
  border: 1px dashed var(--ig-border);
  background: none;
  color: var(--ig-muted);
  font-size: 13px;
  font-style: italic;
}

/* Direct messages: photo lightbox trigger */
.ig-page .ig-dm-bubble-image-btn {
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: 14px;
  overflow: hidden;
}

.ig-page .ig-dm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  padding: 24px;
}

.ig-page .ig-dm-lightbox.is-open {
  display: flex;
}

body.ig-dm-lightbox-open {
  overflow: hidden;
}

.ig-page .ig-dm-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.ig-page .ig-dm-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
}

/* ============================================================
   "Découvrir" showcase page — fully isolated namespace (.dv-*)
   Concept: glassmorphism — frosted panels over drifting color blobs
   ============================================================ */
.dv-page {
  --dv-bg: #0b0a12;
  --dv-ink: #ffffff;
  --dv-muted: rgba(255, 255, 255, 0.68);
  --dv-line: rgba(255, 255, 255, 0.16);
  --dv-amber: #e3a15f;
  --dv-glass-bg: rgba(255, 255, 255, 0.07);
  --dv-glass-border: rgba(255, 255, 255, 0.16);
  background: var(--dv-bg);
  color: var(--dv-ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

.dv-page .site-footer {
  background: var(--dv-bg);
}

.dv-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.dv-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 2px 2px;
}

@keyframes dvFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background blobs */
.dv-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.dv-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.dv-blob-1 {
  top: -12%;
  left: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, #d88b4b, transparent 70%);
  animation: dvBlobDrift1 24s ease-in-out infinite;
}

.dv-blob-2 {
  top: 26%;
  right: -14%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, #a566d6, transparent 70%);
  animation: dvBlobDrift2 28s ease-in-out infinite;
}

.dv-blob-3 {
  bottom: -18%;
  left: 22%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, #4f9fd8, transparent 70%);
  animation: dvBlobDrift3 32s ease-in-out infinite;
}

@keyframes dvBlobDrift1 {
  0%, 100% { left: -10%; top: -12%; }
  50% { left: -4%; top: -4%; }
}

@keyframes dvBlobDrift2 {
  0%, 100% { right: -14%; top: 26%; }
  50% { right: -20%; top: 34%; }
}

@keyframes dvBlobDrift3 {
  0%, 100% { left: 22%; bottom: -18%; }
  50% { left: 30%; bottom: -10%; }
}

/* Glass panel utility */
.dv-glass {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(216, 139, 75, 0.12), rgba(165, 102, 214, 0.08) 45%, rgba(255, 255, 255, 0.05)),
    var(--dv-glass-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--dv-glass-border);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Hero */
.dv-hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 140px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.dv-hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, 0);
  background: radial-gradient(circle, rgba(216, 139, 75, 0.22) 0%, transparent 65%);
  pointer-events: none;
  transition: transform 0.4s ease-out;
  will-change: transform;
}

.dv-hero-panel {
  max-width: 720px;
  padding: clamp(36px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.dv-hero-eyebrow {
  margin: 0;
  color: var(--dv-amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: dvFadeUp 0.8s ease 0.05s both;
}

.dv-hero-title {
  margin: 0;
  max-width: 620px;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  animation: dvFadeUp 0.8s ease 0.15s both;
}

.dv-hero-text {
  max-width: 520px;
  margin: 0;
  color: var(--dv-muted);
  font-size: 16px;
  line-height: 1.6;
  animation: dvFadeUp 0.8s ease 0.28s both;
}

.dv-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 40px;
  margin-top: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--dv-line);
  animation: dvFadeUp 0.8s ease 0.4s both;
}

.dv-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.dv-hero-stat strong {
  font-size: 30px;
  font-weight: 800;
  color: var(--dv-amber);
}

.dv-hero-stat span {
  color: var(--dv-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dv-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--dv-glass-border);
  border-radius: 50%;
  background: var(--dv-glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--dv-muted);
  animation: dvBounce 2.2s ease-in-out infinite;
}

@keyframes dvBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Rail nav */
.dv-railnav {
  position: fixed;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.dv-railnav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dv-muted);
  text-decoration: none;
}

.dv-railnav-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.dv-railnav-label {
  display: block;
  max-width: 0;
  overflow: hidden;
  padding: 5px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.2s ease, max-width 0.25s ease, padding 0.25s ease;
}

.dv-railnav a:hover .dv-railnav-label {
  max-width: 200px;
  padding: 5px 12px;
  opacity: 1;
  background: var(--dv-glass-bg);
  border: 1px solid var(--dv-glass-border);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dv-railnav a.is-active .dv-railnav-dot {
  background: var(--dv-amber);
  box-shadow: 0 0 0 1px rgba(227, 161, 95, 0.4), 0 0 12px rgba(227, 161, 95, 0.6);
  transform: scale(1.3);
}

.dv-railnav a.is-active .dv-railnav-label {
  max-width: 200px;
  padding: 5px 12px;
  color: var(--dv-ink);
  opacity: 1;
  background: var(--dv-glass-bg);
  border: 1px solid var(--dv-glass-border);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Chapters */
.dv-chapters {
  position: relative;
  z-index: 2;
}

.dv-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px;
}

.dv-chapter-copy,
.dv-chapter-visual {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.dv-chapter-visual {
  transition-delay: 0.12s;
}

.dv-chapter.is-visible .dv-chapter-copy,
.dv-chapter.is-visible .dv-chapter-visual {
  opacity: 1;
  transform: translateY(0);
}

.dv-chapter-copy {
  padding: clamp(28px, 4vw, 40px);
}

.dv-chapter-reverse .dv-chapter-visual {
  order: -1;
}

.dv-chapter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dv-accent-glow, rgba(216, 139, 75, 0.4)), rgba(165, 102, 214, 0.3));
  border: 1px solid var(--dv-glass-border);
  font-size: 12px;
  font-weight: 800;
}

.dv-chapter-eyebrow {
  margin: 0 0 10px;
  color: var(--dv-amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dv-chapter-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(23px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.2;
}

.dv-chapter-text {
  margin: 0 0 24px;
  color: var(--dv-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}

.dv-chapter-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--dv-glass-bg);
  border: 1px solid var(--dv-glass-border);
  color: var(--dv-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dv-chapter-link:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
}

.dv-chapter-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.dv-chapter-link:hover svg {
  transform: translateX(4px);
}

.dv-chapter-visual {
  perspective: 1000px;
  padding: clamp(28px, 4vw, 40px);
}

.dv-chapter-visual-inner {
  position: relative;
  display: grid;
  place-items: center;
  gap: 18px;
  aspect-ratio: 5 / 4;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.dv-chapter-visual-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 45%, var(--dv-accent-glow, rgba(216, 139, 75, 0.22)), transparent 60%);
  pointer-events: none;
}

.dv-chapter-visual-inner svg {
  width: 60px;
  height: 60px;
  color: var(--dv-accent, var(--dv-amber));
  opacity: 0.9;
}

.dv-chapter-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.dv-chapter-stat strong {
  font-size: 28px;
  font-weight: 800;
}

.dv-chapter-stat span {
  color: var(--dv-muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Final CTA */
.dv-final {
  display: grid;
  place-items: center;
  gap: 18px;
  max-width: 620px;
  margin: 40px auto 100px;
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
}

.dv-final h2 {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800;
}

.dv-final p {
  margin: 0;
  max-width: 460px;
  color: var(--dv-muted);
}

.dv-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .dv-railnav {
    display: none;
  }

  .dv-chapter {
    grid-template-columns: minmax(0, 1fr);
    padding: 40px 20px;
  }

  .dv-chapter-reverse .dv-chapter-visual {
    order: 0;
  }

  .dv-chapter-text {
    max-width: none;
  }
}

/* Découvrir — scroll progress, back-to-top */
.dv-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.dv-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d88b4b, #a566d6);
  transition: width 0.1s linear;
}

.dv-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--dv-ink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dv-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dv-to-top:hover {
  border-color: var(--dv-amber);
  color: var(--dv-amber);
}

/* Unified homepage section headers (Sélection récente / Dernières actualités) —
   forces identical label + button styling regardless of legacy per-section CSS. */
.home-section-head {
  margin-bottom: clamp(24px, 3.4vw, 40px) !important;
}

.home-section-head span {
  color: rgba(247, 243, 234, 0.5) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.home-section-head::after {
  content: "";
  width: 44px;
  height: 2px;
  align-self: end;
  justify-self: start;
  grid-column: 1;
  margin-top: 18px;
  background: var(--amber, #d8aa5b);
}

.home-section-cta {
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 16px !important;
  color: #f7f3ea !important;
  border: 1px solid rgba(216, 139, 75, 0.3) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.home-section-cta:hover,
.home-section-cta:focus-visible {
  color: var(--amber, #d8aa5b) !important;
  border-color: rgba(216, 139, 75, 0.65) !important;
  background: rgba(216, 139, 75, 0.08) !important;
  transform: translateY(-2px);
}

.home-section-cta span {
  color: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: transform 180ms ease;
}

.home-section-cta:hover span,
.home-section-cta:focus-visible span {
  transform: translateX(4px);
}

/* Vehicle favorite button (catalogue card + detail page) */
.vehicle-card-wrap {
  position: relative;
}

.vehicle-card-wrap .vehicle-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.vehicle-save-form {
  margin: 0;
}

.vehicle-save-form-card {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
}

.vehicle-save-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.vehicle-save-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.vehicle-save-btn svg {
  width: 18px;
  height: 18px;
  transition: fill 0.15s ease, stroke 0.15s ease;
}

.vehicle-save-btn.is-active {
  border-color: rgba(237, 73, 86, 0.6);
  background: rgba(237, 73, 86, 0.16);
}

.vehicle-save-btn.is-active svg {
  fill: #ed4956;
  stroke: #ed4956;
}

@keyframes vehicleSavePop {
  0% { transform: scale(1); }
  35% { transform: scale(1.35); }
  60% { transform: scale(0.92); }
  100% { transform: scale(1); }
}

.vehicle-save-btn.save-pop {
  animation: vehicleSavePop 320ms ease;
}

.vehicle-main-frame .vehicle-save-form {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

/* Vehicle detail gallery: zoom button + lightbox */
.vehicle-zoom-btn {
  position: absolute;
  top: 16px;
  right: 64px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: zoom-in;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.vehicle-main-frame:not(:has(.vehicle-save-form)) .vehicle-zoom-btn {
  right: 16px;
}

.vehicle-zoom-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.vehicle-zoom-btn svg {
  width: 17px;
  height: 17px;
}

.vehicle-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 24px;
}

.vehicle-lightbox.is-open {
  display: flex;
}

body.vehicle-lightbox-open {
  overflow: hidden;
}

.vehicle-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.vehicle-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
}

.vehicle-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}

.vehicle-lightbox-prev {
  left: 20px;
}

.vehicle-lightbox-next {
  right: 20px;
}

@media (max-width: 640px) {
  .vehicle-lightbox-arrow {
    width: 40px;
    height: 40px;
  }
}

.request-row.is-reviewed {
  opacity: 0.55;
}

.assistant-widget {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 260;
}

.assistant-nudge {
  position: absolute;
  right: 0;
  bottom: 86px;
  display: none;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 240px;
  padding: 14px 16px;
  border: 2px solid rgba(216, 139, 75, 0.65);
  border-radius: 32px 32px 30px 10px;
  background: #161310;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  animation: assistantNudgeIn 320ms ease both, assistantNudgeBounce 2400ms ease 600ms 2;
}

.assistant-nudge::before {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 5px solid transparent;
  border-top: 15px solid rgba(216, 139, 75, 0.65);
}

.assistant-nudge::after {
  content: "";
  position: absolute;
  right: 27px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 4px solid transparent;
  border-top: 11px solid #161310;
}

.assistant-nudge.is-visible {
  display: flex;
}

.assistant-nudge p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.assistant-nudge-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.assistant-nudge-close svg {
  width: 12px;
  height: 12px;
}

@keyframes assistantNudgeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.assistant-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd37a, #d88b4b);
  color: #14100c;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 160ms ease;
  animation: assistantPopIn 620ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes assistantPopIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

.assistant-toggle::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(216, 139, 75, 0.55);
  border-radius: 50%;
  opacity: 0;
  animation: assistantPulse 2600ms ease-out infinite;
}

.assistant-widget.is-open .assistant-toggle::before {
  animation: none;
  opacity: 0;
}

@keyframes assistantPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.assistant-toggle svg {
  width: 26px;
  height: 26px;
  transform-origin: 70% 30%;
}

.assistant-toggle.is-waving svg {
  animation: assistantWave 750ms ease-in-out;
}

@keyframes assistantWave {
  0%, 100% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-16deg);
  }
  30% {
    transform: rotate(14deg);
  }
  45% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(8deg);
  }
  80% {
    transform: rotate(-3deg);
  }
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: none;
  flex-direction: column;
  width: min(360px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 140px));
  border: 1px solid rgba(216, 139, 75, 0.3);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(216, 139, 75, 0.12), transparent 45%),
    #0b0a09;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  animation: assistantPanelIn 220ms ease both;
}

@keyframes assistantPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.assistant-widget.is-open .assistant-panel {
  display: flex;
}

.assistant-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(216, 139, 75, 0.18), rgba(216, 139, 75, 0.02));
}

.assistant-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd37a, #d88b4b);
  color: #14100c;
}

.assistant-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assistant-panel-head-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.assistant-panel-head strong {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.assistant-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42ff7b;
  box-shadow: 0 0 6px rgba(66, 255, 123, 0.8);
}

.assistant-panel-head span:not(.assistant-online-dot):not(.assistant-beta-badge) {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.assistant-beta-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(216, 139, 75, 0.18);
  border: 1px solid rgba(216, 139, 75, 0.4);
  color: #ffcf94;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.assistant-beta-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 14px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(216, 139, 75, 0.1);
  border: 1px solid rgba(216, 139, 75, 0.28);
}

.assistant-beta-notice.is-dismissed {
  display: none;
}

.assistant-beta-notice p {
  flex: 1 1 auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11.5px;
  line-height: 1.4;
}

.assistant-beta-notice button {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: none;
  border-radius: 8px;
  background: rgba(216, 139, 75, 0.9);
  color: #14100c;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.assistant-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 160ms ease;
}

.assistant-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.assistant-close svg {
  width: 16px;
  height: 16px;
}

.assistant-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  overflow-y: auto;
  flex: 1 1 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.assistant-messages::-webkit-scrollbar {
  display: none;
}

.assistant-message {
  max-width: 88%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
  animation: assistantMessageIn 220ms ease both;
}

@keyframes assistantMessageIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.assistant-message p {
  margin: 0;
}

.assistant-message-bot {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.assistant-message-user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: #14100c;
  background: linear-gradient(135deg, #ffd37a, #d88b4b);
  font-weight: 600;
}

.assistant-typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 16px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.assistant-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: assistantTypingDot 1100ms ease infinite;
}

.assistant-typing span:nth-child(2) {
  animation-delay: 140ms;
}

.assistant-typing span:nth-child(3) {
  animation-delay: 280ms;
}

@keyframes assistantTypingDot {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.assistant-message-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
}

.assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 12px;
}

.assistant-suggestions button {
  padding: 6px 12px;
  border: 1px solid rgba(216, 139, 75, 0.32);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
}

.assistant-suggestions button:hover {
  border-color: var(--gold);
  color: #fff;
  background: rgba(216, 139, 75, 0.1);
}

.assistant-form {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.assistant-form input {
  flex: 1 1 auto;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 13px;
  transition: border-color 160ms ease;
}

.assistant-form input:focus {
  outline: none;
  border-color: rgba(216, 139, 75, 0.55);
}

.assistant-form button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd37a, #d88b4b);
  color: #14100c;
  cursor: pointer;
  transition: transform 160ms ease;
}

.assistant-form button:hover {
  transform: translateY(-1px);
}

.assistant-form button svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 480px) {
  .assistant-panel {
    width: calc(100vw - 32px);
  }
}

/* Final no-shadow guard. Must remain the last rule in this file. */
:root {
  --shadow: none;
  --vm-shadow: none;
  --vm-shadow-soft: none;
}

*,
*::before,
*::after,
*:hover,
*:focus,
*:focus-visible,
*:active,
*:hover::before,
*:hover::after,
*:focus::before,
*:focus::after,
*:focus-visible::before,
*:focus-visible::after,
*:active::before,
*:active::after,
.shadow,
.shadow-sm,
.shadow-md,
.shadow-lg,
.shadow-xl,
.shadow-2xl,
[class*=" shadow-"],
[class^="shadow-"] {
  box-shadow: none !important;
}
