:root {
  --ink: #1a1713;
  --ink-soft: #3a342c;
  --paper: #f5f0e8;
  --paper-warm: #ebe3d5;
  --accent: #c8552c;
  --accent-deep: #a0401f;
  --muted: #8a7f6f;
  --line: #d4c9b5;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

.serif { font-family: 'Fraunces', Georgia, serif; font-feature-settings: "ss01"; }

/* ——— NAV ——— */
nav.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  min-height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

nav.topnav.scrolled {
  background: rgba(245, 240, 232, 0.98);
  box-shadow: 0 2px 24px rgba(26, 23, 19, 0.07);
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-img-footer {
  height: 76px;
}

.logo-name {
  display: none;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links { display: flex; gap: 2.25rem; list-style: none; font-size: 0.9rem; }

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-phone:hover { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--accent); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  position: relative;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: rotate(45deg); top: 0; }
body.menu-open .nav-toggle span::after { transform: rotate(-45deg); top: 0; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--paper);
  z-index: 99;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

body.menu-open .mobile-menu { transform: translateX(0); }

.mobile-menu ul { list-style: none; margin-bottom: 2rem; }
.mobile-menu li { border-bottom: 1px solid var(--line); }

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.mobile-menu a::after { content: '→'; color: var(--accent); font-size: 1.2rem; }

.mobile-menu-ctas {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu-ctas a {
  padding: 1rem;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  justify-content: center;
}

.mobile-menu-ctas a::after { display: none; }
.mobile-menu-ctas .call { background: var(--paper-warm); color: var(--ink); }
.mobile-menu-ctas .quote { background: var(--ink); color: var(--paper); }

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "content form"
    "cards   form";
  column-gap: 4rem;
  row-gap: 2.5rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content   { grid-area: content; }
.hero-stat-cards { grid-area: cards; }
.hero-form-wrap  { grid-area: form; position: sticky; top: calc(var(--nav-h) + 1.5rem); }

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background:
    radial-gradient(ellipse at top right, rgba(200, 85, 44, 0.08), transparent 60%),
    linear-gradient(180deg, transparent, var(--paper-warm));
  z-index: 0;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); }

/* Hero headline + truck wrapper */
.hero-headline-wrap {
  margin-bottom: 1.5rem;
}

.hero-truck-img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin: 1.5rem 0 2rem;
  box-shadow: 0 30px 70px -15px rgba(26, 23, 19, 0.38), 0 8px 24px -8px rgba(26, 23, 19, 0.18);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-truck-img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 40px 80px -15px rgba(26, 23, 19, 0.44), 0 12px 32px -8px rgba(26, 23, 19, 0.22);
}

.hero-truck-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-truck-img:hover img {
  transform: scale(1.04);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.hero h1 em { font-style: italic; font-weight: 300; color: var(--accent); }

.hero > .hero-content > p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Hero trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.ht-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.ht-item strong { color: var(--ink); }

.ht-stars {
  display: flex;
  gap: 2px;
}

.ht-stars svg {
  width: 13px; height: 13px;
  fill: #e8a020;
}

.ht-dot {
  width: 8px; height: 8px;
  background: #4a9d5f;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 157, 95, 0.2);
  flex-shrink: 0;
}

.ht-divider {
  width: 1px; height: 16px;
  background: var(--line);
  flex-shrink: 0;
}

/* Hero form card */
.hero-form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 40px 80px -20px rgba(26, 23, 19, 0.18);
  position: relative;
  z-index: 1;
}

.hero-form-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.hero-form-header h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}

.hero-form-header p { font-size: 0.8rem; color: var(--muted); }

/* Hero stat cards */
.hero-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.hero-card {
  border-radius: 18px;
  padding: 1.4rem 1.25rem;
}

.hc-light {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px -8px rgba(26, 23, 19, 0.1);
}

.hc-dark  { background: var(--ink);    color: var(--paper); }
.hc-accent { background: var(--accent); color: var(--paper); }

.hc-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  opacity: 0.65;
  margin-bottom: 0.6rem;
}

.hc-val {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hc-unit { font-size: 0.9rem; opacity: 0.6; }

.hc-sub { font-size: 0.75rem; opacity: 0.7; line-height: 1.4; }

/* ——— TRUST BAR ——— */
.trust-bar {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--paper-warm);
}

.trust-item { text-align: center; }

.trust-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ——— SECTIONS ——— */
section { padding: 6rem 2rem; }

.section-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.section-header h2 em { font-style: italic; color: var(--accent); font-weight: 300; }

.section-header p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ——— COVERAGE ——— */
.coverage-section { background: var(--paper-warm); }

.states-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.6rem;
}

.states-toggle { display: none; }

.state-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  cursor: default;
  white-space: nowrap;
}

.state-item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.state-check {
  width: 13px; height: 13px;
  stroke: #4a9d5f;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

/* ——— SERVICES ——— */
.services {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(26, 23, 19, 0.2);
}

.service-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 300;
}

.service-icon {
  width: 54px; height: 54px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-warm);
  border-radius: 14px;
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--paper);
}

.service-icon svg {
  width: 26px; height: 26px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  transition: all 0.4s;
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ——— PROCESS ——— */
.process-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200, 85, 44, 0.15), transparent 70%);
  pointer-events: none;
}

.process-section .section-header h2 em { color: var(--accent); }
.process-section .section-header p { color: #b8ae9e; }

.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.process-step {
  padding: 2rem 1.25rem;
  border-left: 1px solid rgba(245, 240, 232, 0.15);
  transition: all 0.3s;
}

.process-step:hover {
  border-left-color: var(--accent);
  padding-left: 2rem;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.process-step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.process-step p { color: #b8ae9e; font-size: 0.9rem; line-height: 1.6; }

/* ——— GALLERY ——— */
.gallery-section { background: var(--paper-warm); overflow: hidden; }

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(26, 23, 19, 0.3);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26, 23, 19, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-caption {
  position: absolute;
  bottom: 1rem; left: 1.25rem; right: 1.25rem;
  color: var(--paper);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.gallery-caption .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.gallery-caption .title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
}


/* ——— TESTIMONIALS ——— */
.testimonials-section { background: var(--paper); }

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.t-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(26,23,19,0.15);
}

.t-stars {
  display: flex;
  gap: 3px;
}

.t-stars svg {
  width: 14px; height: 14px;
  fill: #e8a020;
}

.t-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  flex-shrink: 0;
}

.t-name { font-weight: 500; font-size: 0.88rem; }
.t-route { font-size: 0.75rem; color: var(--muted); margin-top: 0.1rem; }

/* ——— FAQ ——— */
.faq-section { background: var(--paper-warm); }
.faq-wrap { max-width: 820px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  text-align: left;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.faq-q:hover { color: var(--accent); }

.faq-toggle {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all 0.3s;
}

.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; }

.faq-item.open .faq-toggle { background: var(--ink); border-color: var(--ink); }
.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after { background: var(--paper); }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a { max-height: 600px; padding-bottom: 1.75rem; }

.faq-a p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
}

/* ——— CONTACT STRIP ——— */
.contact-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 2rem;
}

.contact-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cs-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cs-text p { color: #b8ae9e; font-size: 0.95rem; max-width: 440px; line-height: 1.6; }

.cs-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  flex-shrink: 0;
}

.cs-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  transition: background 0.3s;
  white-space: nowrap;
}

.cs-phone:hover { background: var(--accent-deep); }

.cs-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.3s, background 0.3s;
  white-space: nowrap;
}

.cs-email:hover { border-color: var(--paper); background: rgba(255,255,255,0.06); }

.contact-form-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-grid .cs-text { margin-bottom: 2rem; }

/* Quote form */
.quote-form {
  background: var(--paper);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.form-row { margin-bottom: 1rem; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 0.7rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7f6f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  padding-right: 1.5rem;
}

.form-row input:focus,
.form-row select:focus { border-bottom-color: var(--accent); }

.form-row textarea {
  width: 100%;
  padding: 0.7rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: transparent;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color 0.3s;
  min-height: 100px;
}
.form-row textarea:focus { border-bottom-color: var(--accent); }

.form-submit {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 1rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: background 0.3s;
}

.form-submit:hover:not(:disabled) { background: var(--accent); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #4a9d5f;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.form-success p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; }
.form-success a { color: var(--accent); }

/* ——— FOOTER ——— */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 2rem 2rem;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo { color: var(--paper); margin-bottom: 1.25rem; }
.footer-brand .logo-mark { background: var(--paper); }
.footer-brand .logo-mark::after { background: var(--accent); }

.footer-brand p {
  color: #b8ae9e;
  max-width: 320px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8ae9e;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.social-link svg {
  width: 15px; height: 15px;
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
  color: #b8ae9e;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ——— MOBILE STICKY CTA BAR ——— */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--ink);
  padding: 0.75rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  gap: 0.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.sticky-cta .call { background: rgba(245, 240, 232, 0.12); color: var(--paper); }
.sticky-cta .quote { background: var(--accent); color: var(--paper); }

.sticky-cta svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeIn 1s ease forwards; }
.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.3s; }
.fade-in.delay-3 { animation-delay: 0.45s; }
.fade-in.delay-4 { animation-delay: 0.6s; }

@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

.float { animation: float 6s ease-in-out infinite; }
.float.delay-a { animation-delay: -2s; }
.float.delay-b { animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ——— SCROLL REVEAL ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ——— TABLET (≤ 1024px) ——— */
@media (max-width: 1024px) {
  nav.topnav { padding: 0.9rem 1.5rem; }

  .hero {
    padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem;
    column-gap: 2.5rem;
    row-gap: 2rem;
  }

  .hero-stat-cards { grid-template-columns: repeat(3, 1fr); }

  .services           { grid-template-columns: repeat(2, 1fr); }
  .process-grid       { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .states-grid        { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

/* ——— MOBILE (≤ 768px) ——— */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  body { padding-bottom: 76px; }

  /* ── Nav ── */
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  nav.topnav { padding: 0.75rem 1.25rem; }
  .logo-img { height: 34px; }
  .logo-img-footer { height: 90px; }
  .logo-name { display: block; }

  /* ── Hero ── */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "content"
      "form"
      "cards";
    padding: calc(var(--nav-h) + 1.75rem) 1.25rem 2rem;
    min-height: auto;
    row-gap: 1.25rem;
  }

  .hero::before { width: 100%; opacity: 0.4; }
  .hero-truck-img img { height: 200px; }
  .hero-headline-wrap { gap: 0; margin-bottom: 0.75rem; }
  .hero-form-wrap { position: static; padding: 1.25rem; border-radius: 16px; }
  .hero-form-header { margin-bottom: 1rem; padding-bottom: 0.9rem; }
  .hero-form-header h3 { font-size: 1.2rem; }
  .quote-form { padding: 0; border: none; background: transparent; border-radius: 0; }
  .form-row { margin-bottom: 0.65rem; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .form-row input, .form-row select { font-size: 1rem; }

  .hero h1 { margin-bottom: 0.75rem; }
  .hero > .hero-content > p { font-size: 0.95rem; margin-bottom: 0.9rem; }

  /* Stat cards — horizontal scroll strip */
  .hero-stat-cards {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    margin: 0 -1.25rem;
    padding: 0 1.25rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-stat-cards::-webkit-scrollbar { display: none; }
  .hero-card { flex: 0 0 155px; border-radius: 16px; padding: 1.1rem 1rem; }
  .hc-val { font-size: 1.5rem; }

  /* ── Trust bar ── */
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
    padding: 1.5rem 1.25rem;
  }

  /* ── Sections ── */
  section { padding: 2.5rem 1.25rem; }
  .section-header { margin-bottom: 1.75rem; }
  .section-header h2 { margin-bottom: 0.75rem; }
  .section-header p { font-size: 0.95rem; }

  /* ── Coverage / States — 3 columns ── */
  .states-grid { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
  .state-item { font-size: 0.7rem; padding: 0.45rem 0.5rem; gap: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .state-check { width: 10px; height: 10px; flex-shrink: 0; }

  /* ── Services — 2 columns ── */
  .services { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .service-card { padding: 1.2rem; }
  .service-num { margin-bottom: 0.65rem; font-size: 0.85rem; }
  .service-card h3 { font-size: 1.15rem; }
  .service-card p { font-size: 0.85rem; }
  .service-icon { width: 42px; height: 42px; margin-bottom: 0.75rem; border-radius: 11px; }
  .service-icon svg { width: 22px; height: 22px; }

  /* ── Process — 2 columns ── */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .process-step { padding: 1.25rem; border-left: 1px solid rgba(245, 240, 232, 0.15); border-top: none; }
  .process-step:hover { padding-left: 1.5rem; border-left-color: var(--accent); }
  .process-step h3 { font-size: 1.2rem; }
  .process-step p { font-size: 0.85rem; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .gallery-item img { height: 140px; }
  .gallery-caption { opacity: 1; transform: translateY(0); bottom: 0.6rem; left: 0.75rem; right: 0.75rem; }
  .gallery-caption .label { font-size: 0.62rem; margin-bottom: 0.15rem; }
  .gallery-caption .title { font-size: 0.9rem; }
  .gallery-item::after { opacity: 0.75; }

  /* ── Testimonials — swipeable horizontal scroll ── */
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.85rem;
    margin: 0 -1.25rem;
    padding: 0 1.25rem 1rem;
    scroll-snap-type: x mandatory;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .t-card { flex: 0 0 82vw; scroll-snap-align: start; }

  /* ── FAQ ── */
  .faq-q { padding: 1.1rem 0; font-size: 1rem; }
  .faq-toggle { width: 28px; height: 28px; }
  .faq-a p { font-size: 0.9rem; }

  /* ── Contact strip ── */
  .contact-strip { padding: 2.5rem 1.25rem; }
  .contact-strip-inner { flex-direction: column; align-items: stretch; gap: 1.5rem; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cs-ctas { display: flex; flex-direction: column; gap: 0.75rem; }
  .cs-phone { justify-content: center; width: 100%; }
  .cs-email { text-align: center; }

  /* ── Footer — 2-column grid, brand spans full width ── */
  footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    font-size: 0.78rem;
    gap: 0.6rem;
  }

  /* ── Sticky CTA ── */
  .sticky-cta { display: flex; }
}

/* ——— LICENSE BADGE ——— */
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 1.1rem;
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transform: rotate(-2deg);
  margin-top: 1rem;
  width: fit-content;
  letter-spacing: 0.02em;
}

.lb-sep { color: var(--muted); }

/* ——— SMS CONSENT ——— */
.form-row-consent { margin-top: 0.5rem; margin-bottom: 0.75rem; }

.sms-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

/* Hide the real input but keep it accessible */
.sms-checkbox-wrap {
  position: relative;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 0.1rem;
}

.sms-checkbox-wrap input[type="checkbox"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  z-index: 1;
}

/* Custom visible box */
.sms-checkbox-box {
  display: block;
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
  pointer-events: none;
}

/* Checkmark via ::after */
.sms-checkbox-box::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  border: 2px solid var(--paper);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.15s ease;
  margin: 2px 0 0 4px;
}

.sms-checkbox-wrap input[type="checkbox"]:checked ~ .sms-checkbox-box {
  background: var(--accent);
  border-color: var(--accent);
}

.sms-checkbox-wrap input[type="checkbox"]:checked ~ .sms-checkbox-box::after {
  transform: rotate(45deg) scale(1);
}

.sms-checkbox-wrap input[type="checkbox"]:focus-visible ~ .sms-checkbox-box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.sms-consent-text {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.55;
}

.sms-consent-text a {
  color: var(--accent);
  text-decoration: underline;
}

.sms-error,
.field-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.5rem;
  min-height: 1em;
}

.form-submit-error {
  font-size: 0.85rem;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

/* ——— SMALL PHONE (≤ 480px) ——— */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero-form-wrap { padding: 1rem; }
  .hero-card { flex: 0 0 145px; }

  .trust-bar { gap: 1rem 0.75rem; }

  /* states: 2 columns fit better at very narrow widths */
  .states-grid { grid-template-columns: repeat(2, 1fr); gap: 0.3rem; max-height: 210px; overflow: hidden; transition: max-height 0.5s ease; }
  .states-grid.expanded { max-height: 2000px; }
  .state-item { font-size: 0.75rem; padding: 0.45rem 0.65rem; }
  .states-toggle { display: block; margin: 1rem auto 0; background: none; border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 1.25rem; font-size: 0.82rem; color: var(--ink-soft); cursor: pointer; transition: border-color 0.25s, color 0.25s; }
  .states-toggle:hover { border-color: var(--accent); color: var(--accent); }

  /* services: stay 2 columns, tighter padding */
  .service-card { padding: 1.1rem; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.82rem; }

  /* process: 1 column */
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { border-left: none; border-top: 1px solid rgba(245, 240, 232, 0.15); padding: 1.1rem 0; }
  .process-step:first-child { border-top: none; }
  .process-step:hover { padding-left: 0; border-left-color: transparent; }

  .t-card { flex: 0 0 88vw; padding: 1.4rem; }
  .t-quote { font-size: 0.93rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: auto; }
}
