/* ==========================================================================
   NAVARRO — Premium Home & Auto Care
   Design system: "Two Lanes" — Auto (copper) / Home (sage), on ink + platinum
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root{
  /* Core palette */
  --ink:        #14181B;
  --ink-2:      #1D2327;
  --steel:      #232B30;
  --steel-line: #323C42;
  --platinum:   #E7E9EA;
  --platinum-2: #DDE1E2;
  --chrome:     #A9B2B8;
  --white:      #F7F8F8;
  --charcoal:   #1B2023;

  /* Lane colors */
  --auto:       #C1622D;
  --auto-dim:   #7A3F1E;
  --auto-tint:  #F4E3D6;
  --home:       #6E7C4F;
  --home-dim:   #48512F;
  --home-tint:  #E4E8D9;

  /* Type */
  --display: 'Oswald', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --radius: 2px;
  --maxw: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
}
p{ margin: 0 0 1em; }

.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 2px;
  background: currentColor;
  display:inline-block;
}
.eyebrow.auto{ color: var(--auto); }
.eyebrow.home{ color: var(--home); }

:focus-visible{
  outline: 2px solid var(--auto);
  outline-offset: 3px;
}

/* -------------------- Buttons -------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--auto); color: var(--white); }
.btn-primary:hover{ background: #A8531F; }
.btn-home{ background: var(--home); color: var(--white); }
.btn-home:hover{ background: #5B6841; }
.btn-outline{ background: transparent; border-color: var(--chrome); color: var(--white); }
.btn-outline:hover{ border-color: var(--white); }
.btn-outline-dark{ background: transparent; border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline-dark:hover{ background: var(--charcoal); color: var(--white); }
.btn-block{ width:100%; justify-content:center; }

/* -------------------- Header -------------------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--steel-line);
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height: 76px;
}
.logo{
  font-family: var(--display);
  color: var(--white);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display:flex; flex-direction:column; line-height:1;
}
.logo small{
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--chrome);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}
.logo span.hl{ color: var(--auto); }

.nav-desktop{ display:flex; align-items:center; gap: 30px; }
.nav-desktop a{
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--platinum);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-desktop a:hover, .nav-desktop a.active{ border-color: var(--auto); color: var(--white); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-phone{
  font-family: var(--mono); font-size: 12.5px; color: var(--chrome); display:none;
}
.menu-toggle{
  display:none; background:none; border:1px solid var(--steel-line); color: var(--white);
  width:42px; height:42px; border-radius: var(--radius); cursor:pointer;
  align-items:center; justify-content:center;
}
.mobile-nav{
  display:none; flex-direction:column; background: var(--ink-2);
  border-bottom: 1px solid var(--steel-line);
}
.mobile-nav.open{ display:flex; }
.mobile-nav a{
  padding: 16px 24px; font-family: var(--mono); font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--platinum);
  border-top: 1px solid var(--steel-line);
}

@media (max-width: 900px){
  .nav-desktop{ display:none; }
  .menu-toggle{ display:flex; }
}
@media (min-width: 700px){
  .nav-phone{ display:inline; }
}

/* -------------------- Hero -------------------- */
.hero{
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow:hidden;
  border-bottom: 1px solid var(--steel-line);
}
.hero::after{
  content:"";
  position:absolute; right:-10%; top:-30%;
  width:600px; height:600px;
  border: 1px solid var(--steel-line);
  border-radius: 50%;
  opacity:.5;
}
.hero .wrap{ position:relative; z-index:2; }
.hero h1{
  font-size: clamp(38px, 6vw, 68px);
  max-width: 850px;
  margin-bottom: 22px;
}
.hero h1 .auto-word{ color: var(--auto); }
.hero h1 .home-word{ color: var(--home); }
.hero p.lede{
  font-size: 18px;
  color: var(--platinum);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }

/* -------------------- Two Lanes -------------------- */
.lanes{
  display:grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--steel-line);
  border: 1px solid var(--steel-line);
}
@media (max-width: 760px){ .lanes{ grid-template-columns: 1fr; } }

.lane{
  background: var(--ink);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
}
.lane-auto{ border-top: 4px solid var(--auto); }
.lane-home{ border-top: 4px solid var(--home); }
.lane h3{ font-size: 30px; margin-bottom: 14px; }
.lane-auto h3{ color: var(--auto); }
.lane-home h3{ color: var(--home); }
.lane p{ color: var(--chrome); margin-bottom: 22px; }
.lane ul{ margin-bottom: 26px; }
.lane li{
  font-size: 14.5px;
  padding: 9px 0;
  border-top: 1px solid var(--steel-line);
  display:flex; gap:10px;
}
.lane li:first-child{ border-top:none; }
.lane li::before{ content:"—"; color: var(--chrome); }

/* -------------------- Sections -------------------- */
.section{ padding: 76px 0; }
.section-alt{ background: var(--platinum); }
.section-ink{ background: var(--ink); color: var(--white); }
.section-head{ max-width: 640px; margin-bottom: 44px; }
.section-ink .section-head p{ color: var(--chrome); }
.section-head h2{ font-size: clamp(28px,4vw,42px); }

.section-foot-cta{
  margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--steel-line);
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
}

/* -------------------- Cards / Grids -------------------- */
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px){ .grid-3, .grid-4{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .grid-3, .grid-2, .grid-4{ grid-template-columns: 1fr; } }

.card{
  background: var(--white);
  border: 1px solid var(--platinum-2);
  padding: 30px;
  border-radius: var(--radius);
}
.card h4{ font-size: 19px; margin-bottom: 10px; }
.card p{ color: #52585C; font-size: 14.5px; margin-bottom: 0;}
.card .tag{
  font-family: var(--mono); font-size: 10.5px; letter-spacing:.1em; text-transform:uppercase;
  padding: 5px 10px; border-radius: 2px; display:inline-block; margin-bottom: 16px;
}
.tag-auto{ background: var(--auto-tint); color: var(--auto-dim); }
.tag-home{ background: var(--home-tint); color: var(--home-dim); }
.tag-future{ background: #E3E3E3; color: #666; }

/* Pricing cards */
.price-card{
  background: var(--ink); color: var(--white);
  border: 1px solid var(--steel-line);
  padding: 34px 28px;
  display:flex; flex-direction:column;
}
.price-card.featured{ border-color: var(--auto); }
.price-card.featured.home-featured{ border-color: var(--home); }
.price-card .plevel{ font-family: var(--mono); font-size:11px; color:var(--chrome); letter-spacing:.1em; text-transform:uppercase; margin-bottom:8px; }
.price-card h4{ font-size: 22px; margin-bottom: 6px; }
.price-card .price{ font-family: var(--mono); font-size: 34px; color: var(--auto); margin: 10px 0 18px; }
.price-card.home-price .price{ color: var(--home); }
.price-card ul{ flex:1; margin-bottom: 22px; }
.price-card li{ font-size: 13.5px; color: var(--platinum); padding: 8px 0; border-top: 1px solid var(--steel-line); }
.price-card li:first-child{ border-top:none; }
.price-note{ font-family: var(--mono); font-size: 11px; color: var(--chrome); margin-top: 8px;}

/* Step list */
.steps{ counter-reset: step; display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 900px){ .steps{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }
.step{ position:relative; padding-top: 20px; border-top: 2px solid var(--steel-line); }
.step .num{ font-family: var(--mono); color: var(--auto); font-size: 13px; display:block; margin-bottom: 10px; }
.step h4{ font-size: 16px; margin-bottom: 6px; }
.step p{ font-size: 13.5px; color: var(--chrome); }

/* Service area pills */
.area-pills{ display:flex; flex-wrap:wrap; gap: 12px; }
.area-pill{
  font-family: var(--mono); font-size: 13px; letter-spacing:.04em;
  padding: 10px 18px; border: 1px solid var(--steel-line); color: var(--white);
  display:flex; align-items:center; gap:8px;
}
.area-pill .dot{ width:6px; height:6px; border-radius:50%; background: var(--auto); }

/* Photo placeholder */
.photo-slot{
  background: repeating-linear-gradient(135deg, #E9EBEC, #E9EBEC 10px, #E1E4E5 10px, #E1E4E5 20px);
  border: 1px dashed #B7BDC1;
  aspect-ratio: 4/3;
  display:flex; align-items:center; justify-content:center;
  text-align:center; padding: 20px;
}
.photo-slot span{
  font-family: var(--mono); font-size: 11px; letter-spacing:.06em; text-transform:uppercase;
  color: #7C8388;
}

/* Testimonial */
.testimonial{
  background: var(--white); border: 1px solid var(--platinum-2); padding: 28px;
}
.testimonial p.quote{ font-size: 16px; color: var(--charcoal); margin-bottom: 16px; }
.testimonial .who{ font-family: var(--mono); font-size: 12px; color: #6B7175; text-transform: uppercase; letter-spacing:.05em; }
.stars{ color: var(--auto); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }

/* Table */
.compare-table{ width:100%; border-collapse: collapse; }
.compare-table th, .compare-table td{
  text-align:left; padding: 14px 16px; border-bottom: 1px solid var(--platinum-2);
  font-size: 14px; vertical-align: top;
}
.compare-table th{
  font-family: var(--mono); text-transform:uppercase; font-size:11.5px; letter-spacing:.06em;
  color: #6B7175; border-bottom: 2px solid var(--charcoal);
}

/* FAQ */
.faq-item{ border-top: 1px solid var(--platinum-2); padding: 22px 0; }
.faq-item:last-child{ border-bottom: 1px solid var(--platinum-2); }
.faq-item h4{ font-size: 16px; text-transform:none; letter-spacing:0; margin-bottom:8px; font-family: var(--body); font-weight:600; }
.faq-item p{ color:#52585C; font-size:14.5px; margin:0; }

/* -------------------- Forms -------------------- */
.form-tabs{ display:flex; gap: 2px; margin-bottom: 30px; flex-wrap: wrap; }
.form-tab{
  font-family: var(--mono); font-size:12.5px; letter-spacing:.06em; text-transform:uppercase;
  padding: 14px 22px; background: var(--steel); color: var(--chrome); cursor:pointer; border:none;
  border-bottom: 3px solid transparent;
}
.form-tab.active{ background: var(--ink-2); color: var(--white); }
.form-tab.active[data-lane="auto"]{ border-color: var(--auto); }
.form-tab.active[data-lane="home"]{ border-color: var(--home); }

.form-panel{ display:none; }
.form-panel.active{ display:block; }

.field{ margin-bottom: 18px; }
.field label{
  display:block; font-family: var(--mono); font-size: 11.5px; text-transform:uppercase;
  letter-spacing:.06em; color: var(--chrome); margin-bottom: 8px;
}
.field input, .field select, .field textarea{
  width:100%; padding: 13px 14px; background: var(--ink-2); border: 1px solid var(--steel-line);
  color: var(--white); font-family: var(--body); font-size:14.5px; border-radius: var(--radius);
}
.field input::placeholder, .field textarea::placeholder{ color: #6B7378; }
.field textarea{ min-height: 100px; resize: vertical; }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:560px){ .field-row{ grid-template-columns: 1fr; } }
.checkbox-row{ display:flex; flex-wrap:wrap; gap:10px; }
.chip-check{
  font-family: var(--mono); font-size:12px; border:1px solid var(--steel-line); color:var(--chrome);
  padding: 9px 14px; cursor:pointer; user-select:none;
}
.chip-check input{ display:none; }
.chip-check:has(input:checked){ background: var(--auto); border-color: var(--auto); color: var(--white); }
.form-panel[data-lane="home"] .chip-check:has(input:checked){ background: var(--home); border-color: var(--home); }
.form-note{ font-size: 13px; color: var(--chrome); margin-top: 18px; }

/* -------------------- Footer -------------------- */
.site-footer{ background: var(--ink); color: var(--chrome); padding: 56px 0 28px; border-top: 1px solid var(--steel-line); }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h5{
  font-family: var(--mono); color: var(--white); font-size: 12px; letter-spacing:.08em;
  text-transform:uppercase; margin-bottom: 16px;
}
.footer-grid ul li{ padding: 7px 0; font-size: 14px; }
.footer-grid ul li a:hover{ color: var(--white); }
.footer-bottom{
  border-top: 1px solid var(--steel-line); padding-top: 24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap: 12px;
  font-size: 12.5px; color: #6B7378; font-family: var(--mono);
}

/* -------------------- Page hero (inner pages) -------------------- */
.page-hero{ background: var(--ink); color: var(--white); padding: 56px 0; border-bottom: 1px solid var(--steel-line); }
.page-hero h1{ font-size: clamp(32px,5vw,50px); max-width: 700px; }
.page-hero p{ color: var(--chrome); max-width: 560px; font-size: 16px; margin-bottom:0; }
.breadcrumb{ font-family: var(--mono); font-size:12px; color: var(--chrome); margin-bottom:18px; letter-spacing:.05em; text-transform:uppercase; }
.breadcrumb a:hover{ color: var(--white); }

/* Utility */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.center{ text-align:center; }
.small{ font-size: 13px; }
.muted{ color:#6B7175; }
