:root {
  color-scheme: light;
  --bg: #f5f1ea;
  --bg-strong: #ece5db;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --text: #14161a;
  --muted: #5f656f;
  --line: rgba(20, 22, 26, 0.12);
  --line-strong: rgba(20, 22, 26, 0.18);
  --accent: #0f1115;
  --accent-soft: #3c424e;
  --shadow: 0 30px 80px rgba(24, 20, 15, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 35%),
    radial-gradient(circle at top right, rgba(218, 210, 198, 0.45), transparent 24%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 42%, #f0ebe3 100%);
  min-height: 100vh;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.45;
}

.page-shell::before {
  width: 22rem;
  height: 22rem;
  left: -9rem;
  top: 18rem;
  background: rgba(198, 181, 159, 0.22);
}

.page-shell::after {
  width: 18rem;
  height: 18rem;
  right: -7rem;
  top: 8rem;
  background: rgba(255, 255, 255, 0.48);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(246, 242, 235, 0.74);
  border-bottom: 1px solid rgba(20, 22, 26, 0.08);
}

.header-inner {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand-logo,
.footer-logo {
  width: clamp(220px, 24vw, 320px);
  height: auto;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__bars {
  width: 1rem;
  height: 0.7rem;
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle__bars::before {
  top: 0;
  box-shadow: 0 5px 0 currentColor;
}

.primary-nav {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.75rem);
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-nav a {
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  color: var(--muted);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(15, 17, 21, 0.05);
  color: var(--text);
}

.hero {
  padding: 3rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.hero-copy {
  padding: 1rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  max-width: 10ch;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.lead {
  margin-top: 1.25rem;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.06rem;
}

.lead--compact {
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 17, 21, 0.18);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--line);
}

.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.6rem 0 0;
}

.trust-badges li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  padding-bottom: 0.5rem;
}

.panel-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 17, 21, 0.09);
  background: linear-gradient(180deg, rgba(17, 19, 24, 0.96) 0%, rgba(27, 30, 36, 0.98) 100%);
  color: #f7f3ec;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-card--large {
  padding: 1.1rem;
}

.panel-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual {
  margin-top: 1rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.panel-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.panel-grid article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-grid strong,
.info-card h3,
.timeline h3,
.commitment-card h2,
.commitment-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.panel-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.panel-grid span,
.info-card p,
.prose p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.trusted-grid,
.featured-grid {
  display: grid;
  gap: 1rem;
}

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

.trust-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(20, 22, 26, 0.05);
  min-height: 10rem;
  display: grid;
  place-items: center;
}

.trust-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 6.5rem;
}

.vehicle-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(20, 22, 26, 0.07);
}

.vehicle-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: linear-gradient(180deg, #f5f1ea 0%, #ece5db 100%);
}

.vehicle-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.vehicle-card__body h3 {
  margin-bottom: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.vehicle-card__body p {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 3.5rem 0;
}

.section--soft {
  background: rgba(255, 255, 255, 0.28);
  border-block: 1px solid rgba(20, 22, 26, 0.06);
}

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

.section-note {
  max-width: 44rem;
  margin: -0.5rem 0 1.25rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.contact-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(20, 22, 26, 0.05);
}

.contact-card {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: grid;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(20, 22, 26, 0.1);
}

.footer-meta {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .primary-nav {
  right: 1rem;
}

@media (min-width: 720px) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .hero {
    padding-top: 4rem;
  }

  .trusted-grid,
  .featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-points {
    gap: 0.7rem;
  }

  .contact-card {
    grid-template-columns: 1.4fr auto;
    gap: 2rem;
    align-items: end;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav a {
    padding: 0.7rem 0.9rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
  }

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

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
  }

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

@media (max-width: 719px) {
  .trust-logo {
    max-height: 5.5rem;
  }
}

@media (max-width: 979px) {
  .primary-nav:not(.is-open) {
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
