/* ============================================================
   Lourenço Auto Detailing — brand tokens + design system
   Palette: automotive red + deep navy + gold (from his brand)
   ============================================================ */
:root {
  --brand-primary: #C62828;   /* deep automotive red — primary CTAs */
  --brand-dark:    #14203A;   /* deep navy — dark surfaces */
  --brand-light:   #FBF4F3;   /* warm off-white — light sections */
  --brand-accent:  #F4A91F;   /* gold — highlights, echoes the brand yellow */
  --brand-neutral: #64748B;
  --font-heading:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* dark sections always get light headings (app.css forces a dark h1/h2 color) */
.cms-bg-dark h1, .cms-bg-dark h2, .cms-bg-dark h3 { color: #fff !important; }

/* ---- shared design-system classes (used across all pages) ---- */
.lo-display { font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; }
.lo-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-primary); }
.lo-eyebrow-center { justify-content: center; }
.lo-eyebrow-accent { color: var(--brand-accent); }
.lo-dot { width: 8px; height: 8px; border-radius: 9999px; background: var(--brand-accent); display: inline-block; }

.lo-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-size: 15px; font-weight: 700; border-radius: 12px; transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease; text-align: center; }
.lo-btn-primary { background: var(--brand-primary); color: #fff; box-shadow: 0 8px 20px rgba(198,40,40,.28); }
.lo-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(198,40,40,.36); }
.lo-btn-dark { background: var(--brand-dark); color: #fff; }
.lo-btn-dark:hover { transform: translateY(-2px); opacity: .92; }
.lo-btn-light { background: #fff; color: var(--brand-dark); }
.lo-btn-light:hover { transform: translateY(-2px); background: #f1f5f9; }
.lo-btn.w-full { width: 100%; }

/* hero / banner image + veil */
.lo-hero { isolation: isolate; }
.lo-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.lo-hero-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(20,32,58,.94) 0%, rgba(20,32,58,.80) 48%, rgba(20,32,58,.42) 100%); }
.lo-banner { position: relative; overflow: hidden; }
.lo-banner-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,32,58,.86), rgba(20,32,58,.78)); }

/* stat row */
.lo-stats { background: #e5e7eb; }
.lo-stats > div { background: #fff; }

/* cards */
.lo-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.lo-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(20,32,58,.12); border-color: var(--brand-primary); }

/* price cards */
.lo-price-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 32px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.lo-price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(20,32,58,.12); }
.lo-price-card--featured { border-color: var(--brand-primary); box-shadow: 0 10px 30px rgba(198,40,40,.14); }
.lo-tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 9999px; }
.lo-tag--primary { background: var(--brand-primary); color: #fff; }
.lo-tag--muted { background: #f1f5f9; color: #64748b; }
.lo-divider-v { width: 1px; height: 44px; background: #e5e7eb; }
.lo-feats { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.lo-feats li { position: relative; padding-left: 26px; font-size: 14px; color: #475569; }
.lo-feats li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-primary); font-weight: 800; }

/* steps */
.lo-steps-line { display: none; }
@media (min-width: 768px) { .lo-steps-line { display: block; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, rgba(244,169,31,.45), rgba(244,169,31,.06)); z-index: 0; } }
.lo-num { font-size: 40px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: var(--brand-accent); margin-bottom: 16px; }

/* media + checklists */
.lo-media { aspect-ratio: 4/3; }
.lo-why { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.lo-why li { display: flex; gap: 14px; align-items: flex-start; }
.lo-check { flex: none; width: 26px; height: 26px; border-radius: 9999px; background: rgba(198,40,40,.10); color: var(--brand-primary); font-weight: 800; display: grid; place-items: center; font-size: 13px; margin-top: 2px; }
.lo-why div { font-size: 15px; line-height: 1.55; }

/* gallery */
.lo-shot { border-radius: 16px; overflow: hidden; aspect-ratio: 7/5; box-shadow: 0 10px 30px rgba(20,32,58,.10); }
.lo-shot img { transition: transform .4s ease; width: 100%; height: 100%; object-fit: cover; }
.lo-shot:hover img { transform: scale(1.05); }

/* reviews */
.lo-stars { color: #F4A91F; letter-spacing: 3px; }
.lo-review { background: #fff; border: 1px solid #eef0f3; border-radius: 18px; padding: 28px; box-shadow: 0 8px 24px rgba(20,32,58,.06); margin: 0; }
.lo-author { display: flex; align-items: center; gap: 12px; }
.lo-avatar { flex: none; width: 40px; height: 40px; border-radius: 9999px; background: var(--brand-primary); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 15px; }

/* contact rows */
.lo-info { display: flex; gap: 14px; align-items: flex-start; }
.lo-info-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(198,40,40,.10); color: var(--brand-primary); display: grid; place-items: center; }

/* lo-num-knockout: hide timeline line behind the step numbers */
.lo-steps .lo-num{ display:inline-block; position:relative; z-index:1; background:var(--brand-dark); padding-right:18px; }
