:root {
  --bg: #06080b;
  --text: #f6f2eb;
  --muted: #b5b0a7;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d8b36a;
  --gold-soft: rgba(216, 179, 106, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(120, 166, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.14), transparent 24%),
    linear-gradient(180deg, #0a0d11 0%, #040507 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(6, 8, 11, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 4.7rem;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 4.95rem;
  max-width: min(15rem, 40vw);
  object-fit: contain;
}

.lead,
.info-card p,
.feature-card p,
.story-card p,
.contact-card p,
.vehicle-copy p,
.brand-grid span,
.vehicle-panel span,
.contact-list a,
.contact-list span,
.footer-wrap p {
  color: var(--muted);
}

.footer-logo {
  display: block;
  width: auto;
  height: 3.25rem;
  margin-bottom: 0.9rem;
  object-fit: contain;
}

.section-logo {
  display: block;
  width: auto;
  height: 2.2rem;
  opacity: 0.72;
  object-fit: contain;
  filter: none;
}

.section-logo-hero {
  height: 2.7rem;
  margin-bottom: 0.2rem;
  opacity: 0.9;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switch a {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.lang-switch a:hover,
.lang-switch a.is-active {
  color: var(--text);
  opacity: 1;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.74;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 179, 106, 0.95), transparent);
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  opacity: 1;
  transform: translateY(-1px);
}

.site-nav a:hover::after {
  opacity: 0.65;
  transform: scaleX(0.85);
}

.site-nav a.is-active {
  color: var(--text);
  opacity: 1;
}

.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
}

.hero,
.page-hero {
  padding: 6rem 0 4rem;
}

.hero-grid,
.split-layout,
.cta-panel,
.vehicle-card,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 8vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  margin: 1.4rem 0 0;
  max-width: 60ch;
  font-size: 1.06rem;
  line-height: 1.75;
}

.narrow {
  max-width: 48rem;
}

.hero-actions,
.trust-row,
.spec-list,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #f0cb84, #b98d43);
  color: #151515;
  box-shadow: 0 18px 40px rgba(185, 141, 67, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.trust-row,
.spec-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.8rem;
}

.trust-row li,
.spec-list li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.glass-card,
.info-card,
.feature-card,
.vehicle-card,
.story-card,
.contact-card,
.cta-panel,
.primary-brand-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  border-radius: 32px;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.05), rgba(8, 12, 18, 0.9)),
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.24), transparent 36%),
    radial-gradient(circle at left center, rgba(120, 166, 255, 0.18), transparent 32%),
    linear-gradient(145deg, #0d1218, #07090d);
}

.card-label {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-grid,
.cards-grid,
.story-grid,
.car-list,
.showroom,
.brand-showroom,
.brand-showroom-header,
.model-grid,
.model-sections,
.model-section,
.model-section-head,
.vehicle-card-grid,
.contact-list,
.contact-form {
  display: grid;
  gap: 1rem;
}

.brand-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.brand-grid div,
.vehicle-panel {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-grid strong,
.vehicle-panel strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.section {
  padding: 2rem 0 5rem;
}

.showroom {
  gap: 1.75rem;
}

.media-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(216, 179, 106, 0.1), transparent 24%),
    radial-gradient(circle at right center, rgba(120, 166, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.media-feature-copy {
  display: grid;
  gap: 0.9rem;
}

.media-feature-copy .lead {
  margin: 0;
}

.su7-wordmark {
  display: inline-block;
  letter-spacing: 0.04em;
  font-kerning: normal;
}

.media-press-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(11, 15, 21, 0.96), rgba(8, 11, 16, 0.94));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.media-press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 179, 106, 0.3);
}

.media-thumbnail {
  position: relative;
  min-height: 19rem;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.78)),
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.18), transparent 28%),
    url("https://img.youtube.com/vi/1RrmnGfuDgc/maxresdefault.jpg") center / cover no-repeat;
}

.media-thumbnail::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.media-play,
.media-stamp {
  position: relative;
  z-index: 1;
}

.media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.media-stamp {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.3rem;
}

.media-card-body strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.media-card-body p,
.media-label,
.media-link {
  color: var(--muted);
}

.media-card-body p {
  margin: 0;
  line-height: 1.75;
}

.media-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-link {
  color: var(--gold);
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(11, 15, 21, 0.96), rgba(8, 11, 16, 0.94));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 179, 106, 0.28);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.portfolio-image {
  position: relative;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.68)),
    linear-gradient(145deg, #1a212c, #0b0f15);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio-image::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.portfolio-image-xpeng-g6 {
  background-image:
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.68)),
    url("https://commons.wikimedia.org/wiki/Special:Redirect/file/XPeng_G6_005.jpg");
}

.portfolio-image-lotus-eletre {
  background-image:
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.68)),
    url("https://commons.wikimedia.org/wiki/Special:Redirect/file/Lotus_Eletre_IMG_4127.jpg");
}

.portfolio-image-xiaomi-su7-ultra {
  background-image:
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.68)),
    url("https://commons.wikimedia.org/wiki/Special:Redirect/file/Xiaomi_SU7_Ultra_001.jpg");
}

.portfolio-image-tesla-cybertruck {
  background-image:
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.68)),
    url("https://commons.wikimedia.org/wiki/Special:Redirect/file/Tesla_Cybertruck_outside_unveil_modified_by_Smnt.jpg");
}

.portfolio-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.3rem;
}

.portfolio-card-body h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.portfolio-label,
.portfolio-card-body p {
  color: var(--muted);
}

.portfolio-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card-body p {
  margin: 0;
  line-height: 1.75;
}

.contact-feature {
  display: grid;
  gap: 1.5rem;
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(120, 166, 255, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(216, 179, 106, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.contact-feature-copy {
  display: grid;
  gap: 0.7rem;
}

.contact-feature-copy .lead {
  margin: 0;
}

.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-action-card {
  display: grid;
  gap: 0.8rem;
  min-height: 100%;
  padding: 1.3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    linear-gradient(145deg, rgba(11, 15, 21, 0.96), rgba(8, 11, 16, 0.94));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-action-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 179, 106, 0.28);
}

.contact-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-weight: 800;
}

.contact-action-card strong {
  font-size: 1.15rem;
}

.contact-action-card span:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.section-catalog {
  padding-top: 0;
}

.filter-panel {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.filter-panel-copy {
  display: grid;
  gap: 0.5rem;
}

.filter-panel-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.filter-controls label {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.filter-controls select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.filter-results {
  margin: 0;
  color: var(--muted);
}

.brand-showroom {
  border-radius: 32px;
  padding: 1.8rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-showroom-primary {
  background:
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.brand-showroom-secondary {
  background:
    radial-gradient(circle at top right, rgba(120, 166, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.brand-showroom-header {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.brand-showroom-header p,
.model-card p {
  color: var(--muted);
}

.model-sections {
  gap: 1.5rem;
}

.model-section {
  gap: 1rem;
}

.model-section-head {
  gap: 0.65rem;
}

.model-section-head h3 {
  font-size: 1.7rem;
  line-height: 1.1;
}

.model-section-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

.vehicle-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.inventory-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    linear-gradient(145deg, rgba(11, 15, 21, 0.96), rgba(8, 11, 16, 0.94));
  box-shadow: var(--shadow);
}

.inventory-card.is-hidden,
.model-section.is-hidden,
.brand-showroom.is-hidden {
  display: none;
}

.vehicle-image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.18), transparent 30%),
    radial-gradient(circle at left center, rgba(120, 166, 255, 0.12), transparent 34%),
    linear-gradient(145deg, #171d26, #0b0e13);
}

.vehicle-image-placeholder::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.vehicle-image-placeholder span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-copy {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.inventory-copy h4 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.model-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-stack,
.spec-placeholder {
  display: grid;
  gap: 0.75rem;
}

.spec-stack span,
.spec-placeholder span {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.spec-stack strong {
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.section-heading {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

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

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

.info-card,
.feature-card,
.story-card,
.contact-card,
.primary-brand-card {
  border-radius: var(--radius);
  padding: 1.6rem;
}

.brand-showcase .info-card {
  min-height: 18rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  color: var(--gold);
  border: 1px solid rgba(216, 179, 106, 0.22);
  background: var(--gold-soft);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.split-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.cta-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
  border-radius: 30px;
  padding: 2rem;
}

.vehicle-card {
  grid-template-columns: 1.3fr 0.7fr;
  padding: 1.8rem;
  border-radius: 30px;
}

.vehicle-copy p,
.story-card p,
.feature-card p,
.info-card p,
.contact-card p,
.primary-brand-card p {
  line-height: 1.8;
}

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

.contact-list p,
.contact-form label {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.contact-list strong {
  color: var(--text);
}

.contact-form label {
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.2rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.whatsapp-button {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #29c86f, #168c4a);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(22, 140, 74, 0.35);
}

.viber-button {
  position: fixed;
  right: 1.25rem;
  bottom: 5.45rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b5cff, #5636d5);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(86, 54, 213, 0.35);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .vehicle-card,
  .contact-grid,
  .contact-action-grid,
  .cta-panel,
  .cards-grid,
  .portfolio-grid,
  .compact-grid,
  .brand-showroom-header,
  .filter-controls,
  .media-feature {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 14ch;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(7, 10, 14, 0.96);
    box-shadow: var(--shadow);
  }

  .lang-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.9rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand-logo {
    height: 3.55rem;
    max-width: 11.5rem;
  }

  .footer-logo {
    height: 2.6rem;
  }

  .section-logo {
    height: 1.9rem;
  }

  .section-logo-hero {
    height: 2.2rem;
  }

  .hero,
  .page-hero {
    padding-top: 4.5rem;
  }

  .hero-card {
    min-height: 22rem;
  }

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

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