/* ========== ROOT / RESET ========== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #252633;
  background: radial-gradient(circle at top, #25293b 0, #05060a 55%, #020308 100%);
  -webkit-font-smoothing: antialiased;
}

/* Global container */
.shell {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

/* ========== TYPOGRAPHY ========== */

h1,
h2,
h3 {
  margin: 0 0 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #191a24;
}

h1 {
  font-size: clamp(2.2rem, 3.1vw, 3rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.lead {
  font-size: 1.02rem;
  max-width: 40rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #b17f3b;
  margin-bottom: 0.5rem;
}

.small-note {
  font-size: 0.85rem;
  color: #5b5c69;
}

.number-list {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.number-list li {
  margin-bottom: 0.45rem;
}

.bullet-list {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.bullet-list li {
  margin-bottom: 0.35rem;
}

/* ========== HEADER & NAV ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 4, 0.96),
    rgba(10, 8, 4, 0.88),
    rgba(10, 8, 4, 0.8)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
}

.nav-logo {
  display: block;
  height: 52px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-link {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f4e7cf;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f8b74a, #ffdd8a);
  border-radius: 999px;
  transition: width 0.2s ease-out;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.is-active {
  color: #f8c76b;
}

.nav-link.is-active::after {
  width: 100%;
}

.nav-link-contact {
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 220, 150, 0.7);
}

/* ========== HERO ========== */

.hero {
  padding: 2.75rem 0 3.25rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  background: radial-gradient(circle at top left, #f6d29b 0, #d28d48 38%, #9a6331 100%);
  border-radius: 32px;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 2.5rem 3rem;
}

.hero-shell-compact {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.hero-compact {
  padding-top: 2.25rem;
}

.hero-copy {
  color: #1b1410;
}

.hero-copy h1 {
  color: #100e0a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-actions-left {
  margin-top: 1.25rem;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-media-small {
  justify-content: center;
}

.hero-media-inner {
  background: radial-gradient(circle at top, #f8f4ef 0, #f0e0ce 40%, #e2b87f 100%);
  border-radius: 28px;
  padding: 0.75rem;
  border: 4px solid #050509; /* black frame around hero images */
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(0, 0, 0, 0.25);
}

.hero-media-inner img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* ========== BUTTONS ========== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s, color 0.12s;
}

.button-primary {
  background: radial-gradient(circle at top left, #f8c35a 0, #f19a2f 60%, #d5741a 100%);
  color: #301a05;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.button-ghost {
  background: rgba(249, 235, 215, 0.12);
  color: #23140f;
  border-color: rgba(238, 206, 150, 0.7);
}

.button-ghost:hover {
  background: rgba(249, 235, 215, 0.24);
}

/* ========== SECTIONS / PANELS ========== */

.section {
  padding: 2.75rem 0;
}

.panel {
  background: radial-gradient(circle at top, #f7e7d1 0, #f2d5ae 45%, #e1b17a 100%);
  border-radius: 32px;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  margin-bottom: 2.5rem;
}

.panel > .shell {
  padding: 2.5rem 3rem;
}

.panel-split > .shell {
  padding-block: 2.25rem 2.35rem;
}

.section-header {
  margin-bottom: 1.4rem;
}

.section-header p {
  max-width: 40rem;
}

/* grid helpers */

.grid-two,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.25rem;
}

/* info cards */

.info-card {
  background: #fdf8f1;
  border-radius: 24px;
  padding: 1.5rem 1.7rem;
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* ========== LOGO ROWS ========== */

.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #8a6e4a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.logo-tile {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fdf8f1;
  box-shadow:
    0 9px 22px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

.logo-tile img {
  display: block;
  height: 44px;
}

/* Contact logos shared */

.contact-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.contact-logos img {
  display: block;
  height: 40px;
}

.apn-footer-logo {
  margin-top: 1rem;
  height: 40px;
}

/* ========== CONTACT / LICENSE ========== */

.panel-contact .section-header {
  margin-bottom: 1rem;
}

.contact-block {
  margin-top: 0.25rem;
}

.contact-name {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-mini {
  margin-top: 1rem;
}

.license-lines {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: #534437;
}

/* ========== INVENTORY GRID ========== */

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.vehicle-card {
  background: #fdf8f1;
  border-radius: 20px;
  padding: 1.1rem 1.25rem;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

.vehicle-title {
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.vehicle-meta {
  font-size: 0.9rem;
  color: #66636a;
  margin-bottom: 0.4rem;
}

.vehicle-price {
  font-weight: 600;
  font-size: 0.93rem;
  color: #9b5a16;
  margin-bottom: 0.35rem;
}

.vehicle-note {
  font-size: 0.86rem;
  color: #4b4a52;
}

.inventory-disclaimer {
  font-size: 0.85rem;
  margin-top: 1.75rem;
  color: #5d5550;
}

/* ========== FOOTER ========== */

.site-footer {
  background: #05060a;
  color: #e7ddc9;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 1.5rem;
}

.footer-inner {
  padding: 1.4rem 0 1.6rem;
  text-align: center;
}

.footer-meta {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  color: #bbb29e;
}

.footer-powered {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e9c57d;
}

.footer-powered span {
  font-weight: 700;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
  .hero-shell,
  .grid-two,
  .split-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    justify-content: center;
    order: -1;
    margin-bottom: 1.25rem;
  }

  .panel > .shell,
  .panel-split > .shell {
    padding: 2.1rem 1.65rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .nav-main {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .nav-logo {
    height: 56px;
  }

  .logo-tile img {
    height: 40px;
  }

  .hero {
    padding-top: 2.1rem;
  }
}

@media (max-width: 600px) {
  body {
    background: #05060a;
  }

  .shell {
    width: min(100% - 2rem, 100%);
  }

  .hero-shell {
    border-radius: 24px;
    padding: 1.9rem 1.6rem;
  }

  .panel {
    border-radius: 24px;
  }

  .panel > .shell {
    padding-inline: 1.6rem;
  }

  .nav-main {
    gap: 1rem;
  }

  .nav-logo {
    height: 40px;
  }

  .hero-media-inner {
    border-width: 3px;
  }

  .vehicle-card {
    padding-inline: 1rem;
  }
}
/* ==== BH Solutions header logo sizing overrides ==== */

.nav-brand img[alt="BH Solutions logo"],
.nav-brand img.nav-logo {
  display: block;
  max-height: 68px;   /* bigger in the top bar */
}

/* Tablets */
@media (max-width: 1024px) {
  .nav-brand img[alt="BH Solutions logo"],
  .nav-brand img.nav-logo {
    max-height: 58px;
  }
}

/* Phones */
@media (max-width: 640px) {
  .nav-brand img[alt="BH Solutions logo"],
  .nav-brand img.nav-logo {
    max-height: 48px;
  }
}
/* ==== Featured partner badge logo sizing ==== */

/* Shared size for the BH / U-Haul / Interlock / APN tiles */
img[alt="BH Solutions logo"],
img[alt="U-Haul logo"],
img[alt="Ignition Interlock Services logo"],
img[alt="Alliance Property Network logo"] {
  max-height: 88px;       /* was smaller before */
  width: auto;
}

/* If you used a pill/card wrapper around them, give the card a bit more room */
.partners-row,
.partners-grid {
  gap: 2.5rem;
}

.partner-card,
.partner-pill {
  padding: 1.75rem 2rem;
}

/* Make sure logos inside the white partner pills are centered cleanly */
.partner-card img,
.partner-pill img {
  display: block;
  margin: 0 auto;
}
/* === Final home-page logo sizing === */

/* Header brand logo – bigger on desktop, still clean on mobile */
.nav-brand img.nav-logo {
  height: 64px;
}

@media (max-width: 768px) {
  .nav-brand img.nav-logo {
    height: 52px;
  }
}
/* Partner logo cards */
.partner-card {
  width: 210px;
  height: 140px;
}

.partner-card img {
  max-width: 80%;
  max-height: 80px;
}
/* Footer/contact logos under email */
.footer-logos img.footer-logo {
  height: 56px;
}

@media (max-width: 768px) {
  .footer-logos img.footer-logo {
    height: 48px;
  }
}
/* ===================== */
/*  LOGO SIZE ADJUSTMENTS */
/* ===================== */

/* Header brand logo (top left) */
.nav-logo {
  display: block;
  height: 68px;         /* bigger on desktop */
}

/* Smaller on phones */
@media (max-width: 768px) {
  .nav-logo {
    height: 52px;
  }
}

/* Partner tiles on the home/services section */
.partner-grid-logo {
  width: auto;
  height: 80px;         /* larger, but still balanced */
}

/* Contact section logos at the bottom */
.contact-logos img {
  height: 52px;
  width: auto;
  margin-right: 1.75rem;
}

/* Make clickable partner cards have no underline */
.partner-card-link {
  text-decoration: none;
  color: inherit;
}
/* ============================
   PARTNER LOGO FIXES (BIGGER)
   ============================ */

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.logo-tile {
  width: 180px;           /* INCREASE TILE SIZE */
  height: 180px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.12);
}

.logo-tile img {
  width: 100%;
  height: auto;
  object-fit: contain;    /* Make logos look clean */
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .logo-tile {
    width: 140px;
    height: 140px;
  }
}
/* HEADER LOGO FIX */
.nav-logo {
  height: 80px !important;        /* Bigger logo */
}

@media (max-width: 768px) {
  .nav-logo {
    height: 55px !important;      /* Mobile size */
  }
}
/* === HEADER LOGO SIZE FIX === */

.nav-brand .nav-logo {
  height: 42px;       /* try 42–48; bump up if you want it even larger */
  width: auto;
  object-fit: contain;
  display: block;
}

/* keep logo from getting too huge on very small screens */
@media (max-width: 480px) {
  .nav-brand .nav-logo {
    height: 32px;
  }
}
/* === PRE-APPROVAL FORM STYLES === */

.panel-pre-approval {
  padding: 4rem 0;
}

.panel-pre-approval .split-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .panel-pre-approval .split-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.pre-approval-form {
  margin-top: 1.5rem;
}

.pre-approval-form .form-grid {
  display: grid;
  gap: 1.25rem 1.5rem;
}

@media (min-width: 720px) {
  .pre-approval-form .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pre-approval-form .form-field-full {
    grid-column: 1 / -1;
  }
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font: inherit;
  background: #fff;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.04);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.pre-approval-form .button {
  margin-top: 1.5rem;
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.pre-approval-sidebar {
  margin-top: 2.5rem;
}

@media (min-width: 960px) {
  .pre-approval-sidebar {
    margin-top: 0;
  }
}

/* small contact anchor section */
.panel-contact-ghost {
  padding: 2rem 0 3rem;
  text-align: center;
  font-size: 0.95rem;
}
/* ===== CLEAN HEADER LOGO SYSTEM (NO CONFLICTS) ===== */

.header-logo {
    height: 72px;            /* Primary desktop size */
    width: auto;
    display: block;
    object-fit: contain;
    image-rendering: auto;
}

/* Tablets */
@media (max-width: 1024px) {
    .header-logo {
        height: 60px;
    }
}

/* Large phones */
@media (max-width: 768px) {
    .header-logo {
        height: 50px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .header-logo {
        height: 42px;
    }
}
/* ===== FINAL BH HEADER LOGO RESET ===== */

.site-header .nav-brand img.site-logo {
  height: 80px !important;   /* desktop size */
  width: auto !important;
  display: block;
  object-fit: contain;
}

/* Tablets */
@media (max-width: 1024px) {
  .site-header .nav-brand img.site-logo {
    height: 68px !important;
  }
}

/* Large phones */
@media (max-width: 768px) {
  .site-header .nav-brand img.site-logo {
    height: 56px !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .site-header .nav-brand img.site-logo {
    height: 44px !important;
  }
}
/* === BH Solutions header logo – global === */
.nav-logo {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Tablet / small laptop */
@media (max-width: 1024px) {
  .nav-logo {
    height: 56px;
  }
}

/* Phones */
@media (max-width: 768px) {
  .nav-logo {
    height: 44px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .nav-logo {
    height: 36px;
  }
}
/* ===========================
   HEADER – CLEAN LOCK (FINAL)
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: radial-gradient(circle at center, #1a1a1a 0%, #070708 60%, #050506 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

/* Brand / logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 260px; /* prevents nav from pushing logo into weird wraps */
}

.nav-logo {
  display: block;
  height: 44px;     /* clean header height */
  width: auto;
  max-width: 420px; /* keeps it from becoming a billboard */
  object-fit: contain;
}

/* Nav links (single row) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  margin-left: auto;
}

.nav-link {
  text-decoration: none;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.86);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #f2c14f;
  border-bottom-color: #f2c14f;
}

/* Contact button */
.nav-cta {
  text-decoration: none;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(242,193,79,0.65);
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-cta:hover {
  border-color: #f2c14f;
  color: #f2c14f;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-logo { height: 40px; }
  .nav-links { gap: 1.4rem; }
}

@media (max-width: 820px) {
  .header-inner { gap: 1rem; }
  .nav-links { display: none; } /* hide links on small screens unless you add a hamburger */
  .nav-brand { min-width: 0; }
  .nav-logo { height: 38px; max-width: 320px; }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: radial-gradient(circle at top left, #1a1c26 0%, #0b0c10 55%, #05060a 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 0;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.nav-logo {
  height: 44px;         /* adjust 40–52 if needed */
  width: auto;
  display: block;
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: rgba(255,255,255,0.95);
  border-bottom-color: rgba(212, 175, 55, 0.8);
}

.nav-cta {
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.55);
}

.nav-cta:hover {
  border-color: rgba(212, 175, 55, 0.9);
}

@media (max-width: 900px) {
  .header-inner { gap: 0.9rem; }
  .site-nav { gap: 1.1rem; flex-wrap: wrap; justify-content: flex-end; }
  .nav-logo { height: 40px; }
}















