/* Car Connection — Friendly Neighborhood Warm Theme */
:root {
  --bg: #faf5ee;
  --ink: #2d2418;
  --ink-soft: #6b5e4f;
  --accent: #c4713b;
  --accent-dark: #9e5a2e;
  --accent-light: #e8915a;
  --surface: #fffdf8;
  --line: #e8ddd0;
  --radius: 12px;
  --shadow: 0 2px 14px rgba(45,36,24,0.07);
  --max-w: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
  position: sticky; top: 0; z-index: 9999;
  background: #d4a853; color: #1a1814;
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; font-size: 0.85rem; font-weight: 600;
}
.offer-banner.hidden { display: none; }
.offer-logo {
  display: flex; align-items: center;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: #1a1814; text-decoration: none;
  margin-right: 0.25rem;
}
.offer-text { display: flex; align-items: center; gap: 0.4rem; }
.offer-cta {
  background: #1a1814; color: #d4a853;
  text-decoration: none; padding: 0.3rem 0.8rem;
  border-radius: 6px; font-size: 0.82rem; white-space: nowrap;
}
.offer-cta:hover { opacity: 0.85; }
.offer-close {
  background: none; border: none;
  color: rgba(26,24,20,0.6);
  font-size: 20px; cursor: pointer;
  padding: 0 4px; line-height: 1;
  margin-left: auto; flex-shrink: 0;
}

/* ===== HEADER / NAV ===== */
.nav-shell {
  position: sticky; top: 44px; z-index: 100;
  background: rgba(250,245,238,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max-w); margin: auto;
  display: flex; align-items: center; gap: 18px;
  padding: 14px 20px;
}
.brand {
  font-family: "Fraunces", serif;
  font-weight: 900; font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.brand-icon {
  width: 32px; height: 32px;
  background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700;
}
.nav-links { display: flex; gap: 20px; margin-left: auto; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.btn-call {
  background: var(--accent); color: #fff;
  padding: 10px 18px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.88rem;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.btn-call:hover { background: var(--accent-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(45,36,24,0.7) 0%,
    rgba(45,36,24,0.4) 50%,
    rgba(45,36,24,0.2) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: auto;
  padding: 40px 20px; width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #e8915a; margin-bottom: 12px;
}
.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.05;
  color: #fff; margin: 0 0 16px;
  max-width: 650px;
}
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  max-width: 520px; line-height: 1.6;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.12); color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem;
  text-decoration: none; display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* ===== SECTIONS ===== */
.section {
  padding: 80px 20px;
}
.section-alt { background: var(--surface); }
.wrap {
  max-width: var(--max-w); margin: auto;
}
.section-label {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); margin-bottom: 8px;
}
.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--ink-soft); font-size: 1.05rem;
  max-width: 600px; margin-bottom: 40px;
  line-height: 1.6;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%; aspect-ratio: 3/1;
  object-fit: cover; display: block;
}
.service-card-body { padding: 20px; }
.service-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 6px;
}
.service-card p {
  color: var(--ink-soft); font-size: 0.92rem;
  line-height: 1.55;
}

/* ===== ABOUT / STORY ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.about-text p {
  color: var(--ink-soft); line-height: 1.7;
  margin-bottom: 16px; font-size: 1rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-highlights {
  display: grid; gap: 16px;
}
.highlight {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.highlight-icon {
  width: 44px; height: 44px;
  background: #fef0e6;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent); font-size: 1.2rem;
}
.highlight h4 {
  font-size: 1rem; font-weight: 700; margin-bottom: 3px;
}
.highlight p {
  color: var(--ink-soft); font-size: 0.88rem;
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-num {
  width: 48px; height: 48px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
  margin: 0 auto 16px;
}
.step h3 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  color: var(--ink-soft); font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== VISIT / CONTACT ===== */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contact-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-item {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.contact-item:last-child { border-bottom: none; }
.contact-label {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--accent); min-width: 70px;
}
.contact-value { font-size: 0.95rem; }
.contact-value a { color: var(--ink); text-decoration: none; }
.contact-value a:hover { color: var(--accent); }
.contact-cta {
  margin-top: 20px; display: block; text-align: center;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  min-height: 360px; border: 0;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: #2d2418; color: rgba(255,255,255,0.7);
  padding: 36px 20px 24px;
}
.footer-inner {
  max-width: var(--max-w); margin: auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  font-family: "Fraunces", serif;
  font-weight: 700; font-size: 1.1rem;
  color: #fff;
}
.footer-links {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.85rem;
}
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-links .sep { color: rgba(255,255,255,0.2); }
.footer-copy {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  text-align: center; margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { gap: 10px; }
  .about-grid, .visit-grid, .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { min-height: 500px; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(45,36,24,0.6) 0%,
      rgba(45,36,24,0.4) 100%
    );
  }
  .offer-text span:not(#countdown) { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
