:root {
  --bg: #f5f1ea;
  --paper: #fffaf2;
  --ink: #171310;
  --muted: #6f6256;
  --line: #e5d9c8;
  --gold: #c3933a;
  --gold2: #8c6728;
  --dark: #11100e;
  --soft: #efe6d8;
  --ok: #1f7a4d;
  --danger: #8b1f1f;
  --shadow: 0 24px 70px rgba(37, 25, 11, 0.12);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 15% 0%, #fff7e7 0, #f5f1ea 34%, #efe7dc 100%);
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, 92vw);
  margin: auto;
}
.topbar {
  background: #11100e;
  color: #e9dcc9;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  align-items: center;
}
.topbar a {
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 217, 200, 0.8);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, #171310, #4c3514);
  color: #f7d98b;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}
.brand b {
  display: block;
  font-size: 22px;
  line-height: 1;
}
.brand small {
  display: block;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10px;
  margin-top: 4px;
}
nav {
  display: flex;
  gap: 22px;
  color: #4e463d;
  font-weight: 650;
}
nav a {
  position: relative;
}
nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: 0.25s;
}
nav a:hover:after {
  transform: scaleX(1);
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.25s;
}
.btn-dark {
  background: #15120f;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}
.btn-light {
  background: #fff;
  border: 1px solid var(--line);
  color: #211b16;
}
.btn-gold {
  background: linear-gradient(135deg, #d9b161, #a2762a);
  color: #171310;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 56px;
}
.hero:before {
  content: "";
  position: absolute;
  inset: auto -8% -32% auto;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, #e2b75b55, transparent 64%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: #6a5535;
  font-weight: 800;
  font-size: 13px;
}
.eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}
h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
  margin: 22px 0 20px;
  letter-spacing: -0.06em;
}
.lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 690px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.trust-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 16px 42px rgba(37, 25, 11, 0.07);
}
.trust-card strong {
  display: block;
  font-size: 22px;
}
.trust-card span {
  font-size: 13px;
  color: var(--muted);
}
.hero-panel {
  background: linear-gradient(145deg, #171310, #312517 58%, #866125);
  border-radius: 42px;
  padding: 26px;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-panel:before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  pointer-events: none;
}
.premium-car {
  height: 310px;
  background: linear-gradient(135deg, #f1c66d, #fff1c7);
  border-radius: 30px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.premium-car svg {
  width: 88%;
  filter: drop-shadow(0 24px 18px rgba(0, 0, 0, 0.22));
}
.policy-box {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  padding: 20px;
}
.policy-box h3 {
  margin: 0 0 10px;
}
.policy-box ul {
  margin: 0;
  padding-left: 18px;
  color: #f4e6c7;
  line-height: 1.9;
}
.section {
  padding: 70px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.045em;
  margin: 0;
}
.section-head p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vehicle-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(37, 25, 11, 0.08);
  transition: 0.25s;
}
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 78px rgba(37, 25, 11, 0.14);
}
.vehicle-img {
  background: linear-gradient(145deg, #f4eadb, #fffaf2);
  padding: 20px;
  height: 190px;
  display: grid;
  place-items: center;
}
.vehicle-img img {
  height: 140px;
  object-fit: contain;
}
.vehicle-body {
  padding: 20px;
}
.tag-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.tag-row span,
.tag-row em {
  font-size: 12px;
  font-style: normal;
  border-radius: 999px;
  padding: 7px 10px;
  background: #f2eadf;
  color: #5f4e39;
  font-weight: 800;
}
.tag-row em {
  background: #171310;
  color: #f1ce7a;
}
.vehicle-body h3 {
  font-size: 22px;
  margin: 14px 0 10px;
}
.specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.specs span {
  font-size: 13px;
  color: var(--muted);
  background: #faf5ed;
  border: 1px solid #efe3d3;
  border-radius: 999px;
  padding: 7px 10px;
}
.price-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.price-box div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: #fffaf2;
}
.price-box small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.price-box strong {
  font-size: 17px;
}
.disclaimer {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 14px 42px rgba(37, 25, 11, 0.07);
}
.feature i {
  font-style: normal;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #171310;
  color: #f1ce7a;
  margin-bottom: 18px;
}
.feature h3 {
  margin: 0 0 8px;
}
.feature p {
  color: var(--muted);
  line-height: 1.65;
}
.notice {
  background: #171310;
  color: #fff;
  border-radius: 32px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.notice p {
  color: #ebdec8;
  line-height: 1.75;
}
.notice-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 22px;
}
.page-hero {
  padding: 58px 0 24px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
}
.content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 18px 54px rgba(37, 25, 11, 0.08);
  line-height: 1.85;
  color: #4b4037;
}
.content h2,
.content h3 {
  color: #171310;
  letter-spacing: -0.03em;
}
.content .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.content .info-table td,
.content .info-table th {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 18px 54px rgba(37, 25, 11, 0.08);
}
.detail-img {
  background: linear-gradient(145deg, #f4eadb, #fffaf2);
  border-radius: 28px;
  padding: 34px;
}
.detail-img img {
  height: 290px;
  margin: auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form {
  display: grid;
  gap: 13px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf5;
  font: inherit;
}
.form textarea {
  min-height: 120px;
}
.footer {
  background: #11100e;
  color: #e8decf;
  margin-top: 70px;
  padding: 54px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 38px;
}
.footer a {
  display: block;
  color: #fff;
  margin: 9px 0;
}
.footer p {
  color: #cabda9;
  line-height: 1.75;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  margin-top: 28px;
  color: #b5aa9b;
  font-size: 13px;
}
.float-call,
.float-wp {
  position: fixed;
  bottom: 20px;
  z-index: 12;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
}
.float-call {
  left: 20px;
  background: #15120f;
}
.float-wp {
  right: 20px;
  background: #1f7a4d;
}
.admin-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
  background: #f5f1ea;
}
.admin-sidebar {
  background: #11100e;
  color: #fff;
  padding: 24px;
}
.admin-sidebar a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #e8decf;
  margin: 5px 0;
}
.admin-sidebar a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.admin-main {
  padding: 30px;
}
.admin-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 54px rgba(37, 25, 11, 0.08);
  margin-bottom: 20px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 13px;
  text-align: left;
}
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.login-card {
  width: min(440px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
@media (max-width: 960px) {
  .hero-grid,
  .detail-grid,
  .notice,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  nav {
    display: none;
  }
  .topbar-inner {
    display: block;
  }
  .hero {
    padding-top: 50px;
  }
}
@media (max-width: 640px) {
  .vehicle-grid,
  .feature-grid,
  .trust-strip,
  .price-box,
  .card-actions {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    display: grid;
  }
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
  }
  .section {
    padding: 44px 0;
  }
  .content {
    padding: 24px;
  }
  .float-call,
  .float-wp {
    bottom: 12px;
    padding: 12px 14px;
  }
}
