:root {
  --ink: #101820;
  --muted: #607080;
  --soft: #f5f1e9;
  --paper: #fffaf1;
  --white: #ffffff;
  --orange: #f05a28;
  --orange-dark: #bf401b;
  --blue: #12314a;
  --deep: #071620;
  --sage: #66776b;
  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 22px 70px rgba(7, 22, 32, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8f5ef;
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-tap-highlight-color: transparent;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
.touch-target {
  min-height: 48px;
  touch-action: manipulation;
}

.container {
  width: min(1500px, calc(100vw - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: rgba(7, 22, 32, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 64px);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand-link img {
  width: 136px;
  height: 42px;
  object-fit: contain;
  padding: 6px 9px;
  border-radius: 6px;
  background: #fff;
}

.brand-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.mobile-menu-toggle span::before {
  transform: translateY(-7px);
}

.mobile-menu-toggle span::after {
  transform: translateY(5px);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  padding: 0 15px;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-link:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown-toggle::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: 58px;
  left: 0;
  display: none;
  min-width: 240px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 22, 32, 0.98);
  box-shadow: var(--shadow);
}

.nav-dropdown.is-open {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.nav-dropdown a:hover {
  color: #fff;
  background: rgba(240, 90, 40, 0.22);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 34px rgba(240, 90, 40, 0.3);
}

.btn-light {
  color: var(--deep);
  background: #fff;
}

.btn-dark {
  color: #fff;
  background: var(--deep);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 760px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 22, 32, 0.78), rgba(7, 22, 32, 0.42) 48%, rgba(7, 22, 32, 0.05)),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 200px;
  background: linear-gradient(180deg, transparent, #f8f5ef);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 128px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 700px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.6vw, 24px);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1060px, 100%);
  margin-top: 56px;
}

.stat-card {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.15;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: 90px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-title {
  margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.12;
}

.section-head p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.vehicle-card,
.content-card,
.news-card,
.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 22, 32, 0.08);
}

.vehicle-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--deep);
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-media img {
  transform: scale(1.04);
}

.vehicle-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(7, 22, 32, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.vehicle-body {
  padding: 22px;
}

.vehicle-body h3 {
  margin: 0 0 8px;
  font-size: 29px;
  line-height: 1.15;
}

.vehicle-body p {
  min-height: 58px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.feature-list,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.pill-list li {
  padding: 8px 10px;
  border-radius: 6px;
  color: #2f3a35;
  background: #f1f4f2;
  font-size: 14px;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-row small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.price-row strong {
  display: block;
  color: var(--orange-dark);
  font-size: 25px;
}

.nav-link.is-active {
  color: var(--orange);
}

.center-copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.center-copy .eyebrow {
  justify-content: center;
}

.center-copy .eyebrow::before {
  display: none;
}

.center-copy h1,
.center-copy h2 {
  margin: 0 0 26px;
  color: var(--blue);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.12;
}

.center-copy p {
  margin: 0 auto 22px;
  color: #4b5868;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.9;
}

.center-copy.compact {
  max-width: 720px;
  margin-bottom: 48px;
}

.brand-intro {
  background: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 96px;
}

.value-card {
  min-height: 260px;
  padding: 44px 34px;
  border: 1px solid rgba(16, 24, 32, 0.06);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 22px 54px rgba(7, 22, 32, 0.08);
}

.value-icon {
  display: inline-grid;
  width: 84px;
  height: 84px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: #d2ae56;
  background: var(--blue);
  font-size: 30px;
  font-weight: 900;
}

.value-card h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 30px;
}

.value-card p {
  margin: 0;
  color: #596677;
  font-size: 18px;
  line-height: 1.75;
}

.timeline-section {
  background: #fff;
}

.story-timeline {
  position: relative;
  display: grid;
  gap: 64px;
  max-width: 1260px;
  margin: 0 auto;
}

.story-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #d2ae56;
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
}

.timeline-item::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #d2ae56;
  box-shadow: 0 0 0 8px #fff;
  content: "";
}

.timeline-item:nth-child(even) .timeline-card {
  grid-column: 2;
}

.timeline-card {
  padding: 34px 40px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(7, 22, 32, 0.1);
}

.timeline-card strong {
  display: block;
  margin-bottom: 8px;
  color: #d2ae56;
  font-size: 30px;
  line-height: 1.1;
}

.timeline-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 24px;
}

.timeline-card p {
  margin: 0;
  color: #4d5a6a;
  font-size: 18px;
  line-height: 1.75;
}

.craft-section {
  background: #fff;
}

.craft-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.craft-list {
  display: grid;
  gap: 30px;
}

.craft-list article {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.craft-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.craft-list h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 28px;
}

.craft-list p {
  margin: 0;
  color: #4d5a6a;
  font-size: 19px;
  line-height: 1.85;
}

.story-cta {
  display: grid;
  justify-items: center;
  padding: 58px 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  text-align: center;
}

.story-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
}

.story-cta p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
}

.dark-band {
  color: #fff;
  background: var(--deep);
}

.dark-band .section-title {
  color: #fff;
}

.dark-band .section-head p,
.dark-band .muted {
  color: rgba(255, 255, 255, 0.72);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 26px;
  align-items: stretch;
}

.model-switcher {
  display: grid;
  gap: 18px;
}

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

.switcher-tab {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.switcher-tab.is-active {
  color: #fff;
  border-color: rgba(240, 90, 40, 0.82);
  background: linear-gradient(135deg, rgba(240, 90, 40, 0.95), rgba(191, 64, 27, 0.95));
}

.switcher-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.switcher-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #0b1823;
  box-shadow: var(--shadow);
}

.switcher-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.switcher-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.switcher-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
}

.image-panel {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel {
  padding: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 22, 32, 0.08);
}

.dark-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.panel h2,
.panel h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.16;
}

.panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.76);
}

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

.spec-item {
  min-height: 96px;
  padding: 16px;
  border-radius: 8px;
  background: #f4f6f5;
}

.dark-panel .spec-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.spec-item strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.dark-panel .spec-item strong {
  color: #fff;
}

.spec-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.dark-panel .spec-item span {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero {
  min-height: 560px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 22, 32, 0.78), rgba(7, 22, 32, 0.42), rgba(7, 22, 32, 0.06)),
    var(--hero-image) center / cover no-repeat;
}

.page-hero .container {
  padding: 110px 0 72px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.article-main {
  display: grid;
  gap: 22px;
}

.article-section {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 22, 32, 0.06);
}

.article-section h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.2;
}

.article-section h3 {
  margin: 24px 0 8px;
  font-size: 24px;
  line-height: 1.24;
}

.article-section p {
  margin: 0 0 14px;
  color: #455260;
}

.side-sticky {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
}

.side-box {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 22, 32, 0.06);
}

.side-box h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.side-box a {
  display: flex;
  align-items: center;
  min-height: 42px;
  color: var(--blue);
  font-weight: 800;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

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

.news-empty {
  grid-column: 1 / -1;
  min-height: 260px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(244, 248, 249, 0.95), rgba(255, 255, 255, 0.98));
  display: grid;
  align-content: center;
  justify-items: start;
  box-shadow: var(--shadow-soft);
}

.news-empty span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-empty h3 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.news-empty p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.news-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.news-card .card-body {
  padding: 22px;
}

.news-card h3 {
  margin: 8px 0;
  font-size: 24px;
  line-height: 1.22;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.article-section {
  background: #fff;
}

.article-layout {
  max-width: 980px;
}

.article-content {
  padding: clamp(24px, 4vw, 54px);
}

.article-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

.article-meta {
  color: var(--orange-dark);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.article-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.16;
}

.article-content h3 {
  margin: 28px 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.95;
}

.article-content ul,
.article-content ol {
  padding-left: 1.4em;
}

.date {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.contact-card {
  padding: 30px;
}

.contact-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.contact-row strong {
  display: block;
  margin-top: 3px;
  font-size: 21px;
}

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

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

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid rgba(16, 24, 32, 0.16);
  border-radius: 8px;
  outline: 0;
  color: var(--ink);
  background: #fbfaf7;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 90, 40, 0.12);
}

.map-box {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 49, 74, 0.9), rgba(7, 22, 32, 0.72)),
    radial-gradient(circle at 48% 40%, rgba(240, 90, 40, 0.48), transparent 20%),
    linear-gradient(90deg, transparent 24%, rgba(255,255,255,.12) 25%, transparent 26%),
    linear-gradient(0deg, transparent 24%, rgba(255,255,255,.12) 25%, transparent 26%);
  background-size: auto, auto, 58px 58px, 58px 58px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 14px rgba(240, 90, 40, 0.22);
  transform: translate(-50%, -50%);
}

.map-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(7, 22, 32, 0.76);
  backdrop-filter: blur(10px);
}

.site-footer {
  color: #fff;
  background: #061018;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  padding: 52px 0 30px;
}

.footer-grid img {
  width: 150px;
  padding: 7px 10px;
  border-radius: 6px;
  background: #fff;
}

.site-footer p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 18px;
}

.site-footer a {
  display: block;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 20px 0 30px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 130;
  display: none;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 22, 32, 0.94);
  box-shadow: var(--shadow);
}

.toast.show {
  display: block;
}

@media (max-width: 1199px) {
  .nav-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav-contact {
    margin-left: auto;
  }

  .phone-pill {
    display: none;
  }

  .nav-menu {
    display: none;
    order: 5;
    width: 100%;
    flex: 0 0 100%;
    align-items: stretch;
    padding-top: 8px;
  }

  .site-header.menu-open .nav-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-link,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-stats,
  .vehicle-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid,
  .switcher-grid,
  .article-layout,
  .contact-grid,
  .craft-layout {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 54px;
  }

  .story-timeline {
    gap: 28px;
    max-width: 860px;
  }

  .story-timeline::before {
    left: 18px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 58px;
  }

  .timeline-item::before {
    left: 18px;
  }

  .timeline-item:nth-child(even) .timeline-card {
    grid-column: auto;
  }

  .side-sticky {
    position: static;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 32px, 1500px);
  }

  .brand-link {
    min-width: 0;
  }

  .brand-link img {
    width: 112px;
    height: 38px;
  }

  .brand-text {
    display: none;
  }

  .nav-contact .btn {
    display: none;
  }

  .site-header.menu-open .nav-menu,
  .hero-stats,
  .vehicle-grid,
  .news-grid,
  .footer-grid,
  .spec-grid,
  .switcher-tabs,
  .gallery-grid,
  .form-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding: 100px 0 68px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .page-hero {
    min-height: 500px;
  }

  .article-section,
  .panel,
  .contact-card {
    padding: 24px;
  }

  .image-panel {
    min-height: 360px;
  }

  .switcher-media {
    min-height: 320px;
  }

  .center-copy h1,
  .center-copy h2 {
    font-size: 36px;
  }

  .center-copy p {
    font-size: 18px;
    line-height: 1.82;
  }

  .value-card {
    min-height: 220px;
    padding: 34px 24px;
  }

  .timeline-card {
    padding: 26px 24px;
  }

  .timeline-card strong {
    font-size: 26px;
  }

  .timeline-card h3,
  .craft-list h3 {
    font-size: 23px;
  }

  .timeline-card p,
  .craft-list p {
    font-size: 17px;
  }

  .story-cta {
    padding: 42px 22px;
  }

  .story-cta p {
    font-size: 18px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-row .btn {
    width: 100%;
  }
}
