:root{
  --bg: #fffdf8;
  --text: #000000;
  --muted: #555453;

  /* supporting neutrals (still in your vibe) */
  --card: #ffffff;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 12px 30px rgba(0,0,0,0.06);

  /* accent (subtle, sophisticated) */
  --accent: #111111;      /* buttons/links */
  --accent-2: #f3efe6;    /* soft highlight background */
}

.wrap{
  width: min(1120px, calc(100% - 48px)); /* 24px padding each side */
  margin-inline: auto;
}


/* Base */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.55;
}

/* Layout */
.container{
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

section{
  padding: 84px 0;
}

h1,h2,h3{
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

h1{
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
}

h2{
  font-size: clamp(1.6rem, 2.1vw, 2.1rem);
  line-height: 1.15;
}

p{ margin: 0 0 16px; color: var(--muted); }
.section-subtext{ max-width: 52ch; margin: 0 auto 44px; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  will-change: transform;
}

.btn.primary{
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.btn.secondary{
  background: transparent;
  color: var(--text);
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

.btn:active{ transform: translateY(0px); }

/* NAVBAR */

.topbar {
  background: #f9f6ee;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);

}

.topbar .wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #000000;
}

/* Right Side */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Phone Number */
.phone {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.2s ease;
  letter-spacing: 0.3px;
}

.phone:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Pills */
.pill {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 900px;
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.pill.subtle {
  background: rgba(0, 0, 0, 0.04);
  color: #555453;
}

@media (max-width: 768px) {

  .topbar .wrap {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .topbar-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .phone {
    font-size: 1.1rem;
  }

}


/* HERO */
.hero{
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  padding: 50px 0 72px; /* reduce the huge top padding since we're centering */
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* 2/3 text, 1/3 image */
  align-items: center;
  gap: 56px; /* a bit more breathing room */
}

.hero-text h1{
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.03;
  margin-bottom: 16px;
}

.lead{
  font-size: clamp(1.1rem, 1.2vw, 1.25rem);
  max-width: 56ch;
  margin-bottom: 30px;
}

.lead-sub{
  display: block;
  margin-top: 10px;
  color: #555453;
  font-size: 0.98em;
}


.cta-row{
  gap: 14px;
  margin-bottom: 22px;
}

.btn{
  padding: 14px 20px;
  font-size: 1rem;
  border-radius: 999px;
}

.btn.primary{
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.btn.ghost{
  background: transparent;
  border: 1px solid rgba(0,0,0,0.14);
  color: #000;
  margin-left: 20px;
}

.trust-row{
  gap: 10px;
  font-size: 0.95rem;
}

.trust-row span{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  color: #555453;
}

.hero-image{
  width: 100%;
  height: clamp(420px, 55vh, 700px); /* bigger presence */

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps full truck visible */
}

@media (max-width: 900px) {
  .trust-row{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: center;
    justify-items: center;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image{
    display: none;
  }

  .trust-row span{
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .trust-row{
    grid-template-columns: 1fr !important;
  }
}


/* SERVICES */
.services{
  min-height: calc(100vh - 72px);    /* full viewport */
  display: flex;                     /* allow vertical centering */
  align-items: center;               /* center content vertically */
  justify-content: center;           /* centers the wrap horizontally */
  padding: 96px 0;                   /* fallback spacing */
}

/* header spacing */
.services h2{
  text-align: center;
  margin-bottom: 12px;
}

.services .section-subtext{
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 56px;
  color: #555453;
  font-size: 1.05rem;
}

/* grid: 2x2 on desktop = less squashed than 4 across */
.services-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* cards */
.service-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  min-height: 160px;                 /* prevents “squashed” look */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card h3{
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: #000;
}

.service-card p{
  margin: 0;
  color: #555453;
  font-size: 1rem;
  line-height: 1.5;
}

/* hover: subtle + premium */
.service-card:hover{
  transform: translateY(-2px);
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,0.07);
}

/* responsive */
@media (max-width: 900px){
  .services{
    min-height: auto;  /* on mobile, don’t force full viewport */
    padding: 72px 0;
  }

  .services-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card{
    padding: 22px;
    min-height: 0;
  }
}

/* QUOTE / CONTACT */
.quote-section{
  background: var(--accent-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-content{
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.quote-form{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.quote-form input,
.quote-form textarea{
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border-radius: 14px;
  border: 1px solid var(--border);
  appearance: none;
  background: #fff;
  color: var(--text);
  outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder{
  color: rgba(0,0,0,0.45);
}

.quote-form input:focus,
.quote-form textarea:focus{
  border-color: rgba(0,0,0,0.22);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}

.quote-form button{
  width: 100%;
  margin-top: 10px;
}

.quote-form select {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  color: rgba(0,0,0,0.45);
  outline: none;
  appearance: none;              /* remove default browser arrow */
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px; /* space for arrow */
}

.quote-form select.valid {
  color: #000000; /* black once selected */
}

/* Focus state (matches your inputs) */
.quote-form select:focus {
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}



.direct-call{
  background: #f9f6ee;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.call-number{
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  margin: 8px 0 6px;
}

.call-number:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 960px){
  .hero-content{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .quote-content{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  section{ padding: 64px 0; }
  .services-grid{ grid-template-columns: 1fr; }
}

/* FOOTER */

.site-footer{
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 28px 0;
  background: #fffdf8;
  font-size: 0.9rem;
  color: #555453;
}

.footer-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer a{
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.site-footer a:hover{
  opacity: 0.7;
}

@media (max-width: 768px){
  .footer-content{
    flex-direction: column;
    text-align: center;
  }
}
