:root {
  --paper: #f4f1ea;
  --paper-deep: #e7e2d6;
  --surface: #fbf9f4;
  --ink: #1b1d21;
  --ink-soft: #3b4047;
  --muted: #6a7179;
  --chrome: #c4c8ce;
  --chrome-deep: #8b919a;
  --steel: #525860;
  --line: #d5d0c6;
  --display: "Cinzel", "Times New Roman", serif;
  --script: "Great Vibes", cursive;
  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, [role="button"] { cursor: pointer; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: 0.04em; text-wrap: balance; line-height: 1.15; }

.cc-wrap { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.cc-kicker { font-family: var(--display); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--steel); margin: 0; }
.cc-h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0.4rem 0 0; }
.cc-h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cc-lead { font-size: 1.125rem; color: var(--ink-soft); max-width: 38rem; }
.cc-script { font-family: var(--script); font-size: 2rem; color: var(--steel); }
.cc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 44px; padding: 0 1.25rem; background: var(--ink); color: var(--paper);
  border: 0; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.95rem;
}
.cc-btn-outline { background: transparent; color: var(--ink); border: 1px solid rgb(27 29 33 / 0.18); }
.cc-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.cc-header { position: sticky; top: 0; z-index: 20; background: rgb(244 241 234 / 0.94); backdrop-filter: blur(10px); border-bottom: 1px solid rgb(27 29 33 / 0.08); }
.cc-topbar { background: var(--ink); color: var(--paper); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.cc-topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 36px; }
.cc-topbar a { color: var(--chrome); text-decoration: none; }
.cc-nav { display: flex; align-items: center; gap: 1rem; min-height: 72px; }
.cc-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; min-width: 0; }
.cc-brand img { width: 56px; height: 56px; border-radius: 999px; box-shadow: 0 8px 20px -10px rgb(27 29 33 / 0.4); }
.cc-wordmark { display: block; font-family: var(--display); font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.cc-script { display: block; font-family: var(--script); font-size: 1.1rem; color: var(--steel); line-height: 1; margin-top: 4px; }
.cc-wordmark-light { color: var(--paper); }
.cc-script-light { color: var(--chrome); }
.cc-menu { margin-left: auto; }
.cc-menu ul { display: flex; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.cc-menu a { display: flex; align-items: center; min-height: 44px; padding: 0 0.75rem; text-decoration: none; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.cc-menu a:hover, .cc-menu .current-menu-item a { color: var(--ink); }
.cc-menu-btn { display: none; min-height: 44px; min-width: 44px; border: 1px solid var(--line); background: var(--surface); border-radius: 8px; }

.cc-hero { position: relative; overflow: hidden; border-bottom: 1px solid rgb(27 29 33 / 0.08); }
.cc-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-conic-gradient(from -70deg at 50% 118%, rgb(27 29 33 / 0.08) 0deg 0.7deg, transparent 0.7deg 8deg);
}
.cc-hero-grid { position: relative; display: grid; gap: 2.5rem; align-items: center; padding: 4rem 0; }
@media (min-width: 900px) { .cc-hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.cc-hero-logo { display: grid; place-items: center; }
.cc-hero-logo img { width: min(440px, 86vw); height: auto; border-radius: 999px; box-shadow: 0 18px 40px -18px rgb(27 29 33 / 0.4); object-fit: cover; }

.cc-inventory { padding: 4rem 0; }
.cc-empty { border: 1px dashed rgb(27 29 33 / 0.18); background: var(--surface); border-radius: 22px; padding: 3rem 1.5rem; text-align: center; }
.cc-empty p { max-width: 36rem; margin-inline: auto; color: var(--ink-soft); }
.cc-cards { display: grid; gap: 1.15rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cc-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .cc-cards { grid-template-columns: 1fr 1fr 1fr; } }
.cc-card { background: var(--surface); border: 1px solid rgb(27 29 33 / 0.08); border-radius: 18px; overflow: hidden; }
.cc-card a { text-decoration: none; color: inherit; display: block; }
.cc-card img, .cc-card-empty { aspect-ratio: 4/3; object-fit: cover; width: 100%; background: var(--paper-deep); }
.cc-card-empty { display: grid; place-items: center; gap: 0.4rem; aspect-ratio: 4/3; background: var(--paper-deep); color: var(--muted); text-align: center; padding: 1rem; }
.cc-card-body { padding: 1rem 1.1rem 1.2rem; }
.cc-card-body h3 { margin: 0; font-size: 1.15rem; }
.cc-price { font-family: var(--display); font-size: 1.25rem; margin: 0.35rem 0 0; }
.cc-price-lg { font-size: 2rem; }
.cc-meta { color: var(--muted); font-size: 0.9rem; margin: 0.25rem 0 0; }

.cc-dealer-grid { display: grid; gap: 0.75rem; }
@media (min-width: 560px) { .cc-dealer-grid { grid-template-columns: 1fr 1fr; } }
.cc-dealer { display: flex; flex-direction: column; gap: 0.2rem; padding: 1.15rem 1.25rem; background: var(--surface); border: 1px solid rgb(27 29 33 / 0.1); border-radius: 18px; text-decoration: none; min-height: 44px; }
.cc-dealer strong { font-family: var(--display); font-size: 1.2rem; }

.cc-footer { background: var(--ink); color: var(--paper); margin-top: auto; }
.cc-footer-grid { display: grid; gap: 2rem; padding: 3.5rem 0; }
@media (min-width: 800px) { .cc-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.cc-footer h2 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--chrome); }
.cc-footer a { color: var(--paper); }
.cc-footer-blurb { color: var(--chrome); max-width: 28rem; }
.cc-legal { border-top: 1px solid rgb(255 255 255 / 0.08); padding: 1.1rem 0; color: var(--chrome); font-size: 12px; }
.cc-hours { white-space: pre-line; }

.cc-banner { position: relative; min-height: 42vh; display: grid; align-items: end; }
.cc-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cc-banner::after { content: ""; position: absolute; inset: 0; background: rgb(27 29 33 / 0.62); }
.cc-banner-copy { position: relative; z-index: 1; width: min(1120px, calc(100% - 2.5rem)); margin: 0 auto; padding: 3.5rem 0; color: var(--paper); }
.cc-banner-copy .cc-kicker { color: var(--chrome); }

.cc-about-grid, .cc-split, .cc-vehicle { display: grid; gap: 2.5rem; padding: 3.5rem 0; }
@media (min-width: 900px) {
  .cc-about-grid, .cc-split, .cc-vehicle { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.cc-gallery-block { background: var(--surface); border-top: 1px solid rgb(27 29 33 / 0.08); border-bottom: 1px solid rgb(27 29 33 / 0.08); padding: 3.5rem 0; }
.cc-gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); margin-top: 1.5rem; }
.cc-customers { grid-template-columns: 1fr 1fr; }
@media (min-width: 640px) { .cc-customers { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 960px) { .cc-customers { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.cc-gallery img { aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; }
.cc-gallery img.top { object-position: top; }
.cc-lot-block { padding: 3.5rem 0; }
.cc-gallery figcaption { font-size: 12px; color: var(--muted); margin-top: 0.4rem; }
.cc-panel { background: var(--surface); border: 1px solid rgb(27 29 33 / 0.1); border-radius: 22px; padding: 1.75rem; }
.cc-page { padding: 3.5rem 0 1rem; }
.cc-prose p { color: var(--ink-soft); }
.cc-form label { display: grid; gap: 0.35rem; font-size: 13px; font-weight: 600; }
.cc-form input, .cc-form textarea, .cc-form select {
  min-height: 44px; border: 1px solid rgb(27 29 33 / 0.12); border-radius: 8px;
  background: var(--surface); padding: 0.6rem 0.85rem; font: inherit;
}
.cc-form textarea { min-height: 8rem; }
.cc-form .cc-error { color: var(--ink); font-size: 0.95rem; font-weight: 600; }
.cc-stack { display: grid; gap: 1.5rem; }
.cc-map { width: 100%; min-height: 420px; border: 0; border-radius: 18px; }
.cc-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.cc-specs { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.cc-specs li { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 0.5rem 0; }

@media (max-width: 860px) {
  .cc-topbar { display: none; }
  .cc-menu-btn { display: inline-flex; align-items: center; margin-left: auto; }
  .cc-nav .cc-btn { display: none; }
  .cc-menu {
    display: none; position: absolute; left: 0; right: 0; top: 72px;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: 0.5rem 1.25rem 1rem;
  }
  .cc-menu.is-open { display: block; }
  .cc-menu ul { flex-direction: column; }
}

.cc-main { min-height: 50vh; }

.cc-oncall { font-family: var(--display); font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-top: 1rem; }
.cc-promises { border-bottom: 1px solid rgb(27 29 33 / 0.08); }
.cc-promises-grid { display: grid; gap: 2rem; padding: 3.5rem 0; }
@media (min-width: 800px) { .cc-promises-grid { grid-template-columns: 1fr 1fr 1fr; } }
.cc-promises h2 { font-size: 1.4rem; margin: 0.6rem 0 0; }
.cc-promises p { color: var(--ink-soft); font-size: 0.95rem; }
.cc-inventory-head { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: end; margin-bottom: 1.75rem; }
.cc-inventory-head p:last-child { max-width: 22rem; color: var(--muted); font-size: 0.9rem; margin: 0; }
.cc-creed { padding: 2.5rem 1.25rem; }
.cc-creed-inner { max-width: 36rem; margin: 0 auto; background: var(--ink); color: var(--paper); text-align: center; padding: 2.25rem 1.5rem; border-radius: 18px; }
.cc-creed .cc-kicker { color: var(--chrome); font-size: 10px; }
.cc-creed h2 { letter-spacing: 0.16em; text-transform: uppercase; font-size: 1.15rem; margin: 0.4rem 0 0; }
.cc-creed p { color: var(--chrome); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.55; font-size: 12px; }
.cc-creed-sign { color: var(--paper) !important; font-family: var(--display); font-weight: 600; letter-spacing: 0.18em; margin-top: 1.5rem; font-size: 11px !important; }
.cc-creed-names { font-size: 10px; }
.cc-timeline { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 2rem; }
@media (min-width: 640px) { .cc-timeline { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cc-timeline { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.cc-year { font-family: var(--display); font-size: 1.85rem; margin: 0; }
.cc-timeline h3 { font-size: 1.15rem; margin: 0.4rem 0 0; }
.cc-timeline p { color: var(--ink-soft); font-size: 0.9rem; }
