@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@600;700&family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&family=Roboto+Mono:wght@400;500;600&display=swap");

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--page-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

#page,
.site,
.site-content {
  background: transparent;
  color: inherit;
}

main {
  display: block;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

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

input,
textarea {
  cursor: text;
}

select,
button,
[type="submit"] {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--anim-fast) var(--ease-out),
    border-color var(--anim-fast) var(--ease-out),
    background-color var(--anim-fast) var(--ease-out),
    box-shadow var(--anim-fast) var(--ease-out),
    transform var(--anim-fast) var(--ease-out);
}

a:hover {
  color: inherit;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

:where(input, textarea, select):-webkit-autofill {
  -webkit-text-fill-color: currentColor !important;
  transition: background-color 9999s ease-out 0s;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display,
.page-title,
.section-title,
.site-title,
.site-title a {
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h1,
.dag-h1,
.dag-title,
.coast-h1,
.cyp-h1 {
  font-size: clamp(32px, 4vw, 48px);
}

h2,
.dag-h2,
.coast-h2,
.section-title {
  font-size: clamp(24px, 3vw, 32px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 24px);
}

p,
li,
input,
select,
textarea {
  font-family: var(--font-body);
}

p {
  margin: 0 0 16px;
}

[class*="mileage"],
[class*="stock"],
[class*="year"],
.car-price,
.dag-price,
.price,
.vehicle-price {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.dag-subtitle,
.cyp-lead,
.section-lead,
.coast-inventory__subtitle {
  color: var(--muted);
}

.dag-muted {
  color: var(--muted);
}

.dag-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.dag-skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dag-skip-link:focus,
.dag-skip-link:focus-visible {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  z-index: 99999;
}

.dag-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dag-hp input {
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
}

.crwda-container,
.coast-container,
.dag-container,
.cyp-container,
.contact-container,
.about-container,
.shipping-container,
.p-about__container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  width: 100%;
}

.section-padding {
  padding: 72px 0;
}

.section-title--center,
.section-subtitle--center,
.section-lead--center {
  text-align: center;
}

.section-lead {
  max-width: 72ch;
  font-size: 16px;
  line-height: 1.7;
}

.section-dark,
.section-dark-alt,
.section-mist {
  background: transparent;
}

input,
select,
textarea {
  width: 100%;
  min-height: var(--dag-field-h);
  padding: 12px 14px;
  border: 1px solid var(--dag-field-border);
  border-radius: var(--dag-field-radius);
  background: var(--dag-field-bg);
  color: var(--dag-field-text);
  outline: none;
  box-shadow: none;
  transition:
    border-color var(--anim-fast) var(--ease-out),
    box-shadow var(--anim-fast) var(--ease-out),
    background-color var(--anim-fast) var(--ease-out);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--dag-field-placeholder);
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: var(--dag-field-ring);
}

body.dag-no-scroll,
html.dag-no-scroll {
  overflow: hidden !important;
}

.site-content {
  animation: dagPageIn 220ms var(--ease-out) both;
}

@keyframes dagPageIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes dagFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 767px) {
  .section-padding {
    padding: 56px 0;
  }

  h1,
  .dag-h1,
  .dag-title,
  .coast-h1,
  .cyp-h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  h2,
  .dag-h2,
  .coast-h2,
  .section-title {
    font-size: clamp(22px, 6vw, 28px);
  }
}