/* ============================================================
   STRODE CONTAINERS — Main Stylesheet
   Single shared file for all pages.
   ============================================================ */

/* ─── Brand tokens ────────────────────────────────────────── */
:root {
  --charcoal:     #1a1a1a;
  --charcoal-2:   #111111;
  --charcoal-3:   #333333;
  --midgrey:      #4a4a4a;
  --lightgrey:    #f5f5f5;
  --offwhite:     #fafafa;
  --silver:       #c8c8c8;
  --silver-dark:  #a0a0a0;
  --border:       #e0e0e0;
  --border-soft:  #f0f0f0;
  --white:        #ffffff;

  --amber-bg:     #fffbeb;
  --amber-border: #fde68a;
  --amber-text:   #92400e;
  --amber-icon:   #d97706;

  --red:          #dc2626;

  --shadow-sm:    0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:    0 4px 12px rgba(0, 0, 0, 0.08);

  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    12px;

  --max-width:    1280px;

  --transition:   0.2s ease;
  --transition-slow: 0.65s ease;
}

/* ─── Reset / normalize ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ─── Layout helpers ──────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

main {
  flex: 1;
  padding-top: 64px; /* navbar height mobile */
}
@media (min-width: 1024px) {
  main { padding-top: 80px; } /* navbar height desktop */
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn--dark:hover { background: var(--charcoal-3); }

.btn--light {
  background: var(--white);
  color: var(--charcoal);
}
.btn--light:hover { background: #f0f0f0; }

.btn--outline-light {
  border-color: #555;
  color: var(--white);
  background: transparent;
}
.btn--outline-light:hover {
  border-color: #888;
  background: rgba(255, 255, 255, 0.05);
}

.btn--bold { font-weight: 700; padding: 1rem 2rem; }
.btn--small { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }

.btn--full { width: 100%; }
@media (min-width: 640px) { .btn--full { width: auto; } }

/* ─── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: box-shadow var(--transition), background-color var(--transition);
}
.navbar--scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 640px) { .nav-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .nav-inner { padding: 0 2rem; height: 80px; }
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .nav-logo img { height: 48px; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
@media (min-width: 1024px) { .nav-links { gap: 2rem; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--midgrey);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--charcoal); }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}
.nav-cta:hover { background: var(--charcoal-3); }

/* Hamburger button */
.nav-toggle {
  display: flex;
  padding: 0.5rem;
  color: var(--charcoal);
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile menu */
.nav-mobile {
  display: none;
  border-top: 1px solid var(--border-soft);
  background: var(--white);
  padding-bottom: 1rem;
}
.nav-mobile.is-open { display: block; }
@media (min-width: 768px) { .nav-mobile { display: none !important; } }

.nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.5rem;
}
.nav-mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--midgrey);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition);
}
.nav-mobile-link:hover {
  color: var(--charcoal);
  background: var(--lightgrey);
}
.nav-mobile-cta-wrap { padding: 0.5rem 1rem 0; }

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: var(--white);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1rem;
}
@media (min-width: 640px) { .footer-inner { padding: 3.5rem 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 4rem 2rem; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem; }
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  /* No filter — display the real logo as-is */
}

.footer-tagline {
  color: var(--silver);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
  margin-bottom: 0.5rem;
}
.footer-blurb {
  color: var(--silver-dark);
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 20rem;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--silver-dark);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: var(--silver-dark); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact svg { width: 16px; height: 16px; margin-top: 2px; color: var(--silver); flex-shrink: 0; }
.footer-contact a, .footer-contact address { color: inherit; font-style: normal; transition: color var(--transition); word-break: break-word; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--charcoal-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #666;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; text-align: left; } }

/* ─── Page header (every page except home) ───────────────── */
.page-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 4rem 0;
}
@media (min-width: 640px) { .page-header { padding: 5rem 0; } }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 0.75rem;
}
.page-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 640px) { .page-header h1 { font-size: 3rem; } }

.page-header__intro {
  margin-top: 1rem;
  color: var(--silver-dark);
  font-size: 1.125rem;
  max-width: 36rem;
}
.page-header h1.long { max-width: 36rem; }

/* ─── Section base ────────────────────────────────────────── */
.section {
  padding: 4rem 0;
}
@media (min-width: 640px) { .section { padding: 5rem 0; } }

.section--white { background: var(--white); }
.section--grey  { background: var(--lightgrey); }
.section--dark  { background: var(--charcoal); color: var(--white); }
.section--darker { background: var(--charcoal-2); color: var(--white); }
.section--cta   { padding: 3.5rem 0; }
@media (min-width: 1024px) { .section--cta { padding: 4rem 0; } }

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }

.section-subtitle {
  color: var(--midgrey);
  max-width: 36rem;
  margin: 0 auto 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 0.75rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── HOME — Hero (with background image + dark overlay) ─── */
.hero {
  position: relative;
  /* Layered background: 50% black overlay on top of hero.jpg */
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/hero.jpg') center center / cover no-repeat;
  background-color: var(--charcoal); /* fallback if image fails to load */
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 1px, transparent 8px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1rem;
}
@media (min-width: 640px) { .hero-inner { padding: 8rem 1.5rem; } }
@media (min-width: 1024px) { .hero-inner { padding: 10rem 2rem; } }

.hero-content { max-width: 48rem; }

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }

.hero-title .accent { color: var(--silver); }

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--silver-dark);
  max-width: 36rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.25rem; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 200, 200, 0.3), transparent);
}

/* ─── HOME — Stats bar ────────────────────────────────────── */
.stats {
  background: var(--charcoal-2);
  color: var(--white);
}
.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
}
.stats-grid > * + * { border-top: 1px solid var(--charcoal-3); }
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 1.5rem;
  }
  .stats-grid > * + * { border-top: none; border-left: 1px solid var(--charcoal-3); }
}
@media (min-width: 1024px) {
  .stats-grid { padding: 0 2rem; }
}

.stat {
  padding: 2rem 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .stat { padding: 2.5rem 1.5rem; } }

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) { .stat-value { font-size: 2.25rem; } }
.stat-label {
  font-size: 0.875rem;
  color: var(--silver-dark);
  letter-spacing: 0.02em;
}

/* ─── HOME — Services grid ────────────────────────────────── */
.services-head { text-align: center; margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}
.service-card:hover {
  border-color: var(--silver);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--lightgrey);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color var(--transition), color var(--transition);
}
.service-icon svg { width: 32px; height: 32px; }
.service-card:hover .service-icon { background: var(--charcoal); color: var(--white); }

.service-title { font-size: 1.125rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.service-desc {
  font-size: 0.875rem;
  color: var(--midgrey);
  line-height: 1.6;
  flex: 1;
}
.service-link {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}
.service-card:hover .service-link { text-decoration: underline; }

/* ─── Image placeholder (grey box) ────────────────────────── */
.placeholder {
  background: #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.placeholder--full {
  width: 100%;
  height: 16rem;
}
@media (min-width: 640px) { .placeholder--full { height: 20rem; } }
@media (min-width: 1024px) { .placeholder--full { height: 24rem; } }

.placeholder--card {
  width: 100%;
  height: 18rem;
  border-radius: var(--radius);
  background: #e8e8e8;
}
@media (min-width: 1024px) {
  .placeholder--card { height: 100%; min-height: 320px; }
}
.placeholder--small {
  width: 100%;
  height: 16rem;
  border-radius: var(--radius);
  background: #e8e8e8;
}
.placeholder--map {
  width: 100%;
  height: 11rem;
  border-radius: var(--radius);
  background: #e8e8e8;
  border: 1px solid var(--border);
}
.placeholder--inline {
  margin-top: 2rem;
  width: 100%;
  height: 12rem;
  border-radius: var(--radius);
  background: #e8e8e8;
}

/* ─── HOME — Why Choose Us ─────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.why-text p { color: var(--midgrey); line-height: 1.7; margin-bottom: 1.5rem; }
.why-text .section-title { margin-bottom: 1.5rem; }

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.text-link:hover { color: var(--midgrey); border-color: var(--silver); }

.checklist { display: flex; flex-direction: column; gap: 1rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-bullet {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-bullet svg { width: 12px; height: 12px; }
.checklist li span:last-child { color: var(--midgrey); font-size: 0.875rem; line-height: 1.6; }

/* ─── CTA banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
@media (min-width: 1024px) { .cta-banner { padding: 5rem 0; } }

.cta-banner h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .cta-banner h2 { font-size: 2.25rem; } }

.cta-banner p { color: var(--silver-dark); margin-bottom: 2rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
.cta-banner.smaller h2 { font-size: 1.5rem; }
@media (min-width: 640px) { .cta-banner.smaller h2 { font-size: 1.875rem; } }
.cta-banner.smaller p { margin-bottom: 1.75rem; max-width: 28rem; }

/* ─── SERVICES — alternating sections ─────────────────────── */
.svc-section { padding: 4rem 0; }
@media (min-width: 640px) { .svc-section { padding: 5rem 0; } }
.svc-section { scroll-margin-top: 80px; }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
}

.svc-grid .order-2-mobile { order: 2; }
@media (min-width: 1024px) {
  .svc-grid .order-1-desktop { order: 1; }
  .svc-grid .order-2-desktop { order: 2; }
  .svc-grid .order-2-mobile { order: 0; }
}

.svc-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.svc-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .svc-section h2 { font-size: 2.25rem; } }

.svc-section p { color: var(--midgrey); line-height: 1.7; margin-bottom: 1rem; }

/* ─── Tables ──────────────────────────────────────────────── */
.size-table-wrap { margin-top: 1.5rem; overflow-x: auto; }
.size-table { font-size: 0.875rem; }
.size-table th {
  text-align: left;
  padding: 0.625rem 1.5rem 0.625rem 0;
  color: var(--midgrey);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.size-table td {
  padding: 0.75rem 1.5rem 0.75rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.size-table td:first-child { font-weight: 500; color: var(--charcoal); }
.size-table td:last-child { color: var(--midgrey); }
.size-table tr:hover td { background: var(--offwhite); }

/* Big striped pricing table */
.price-table-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  overflow-x: auto;
}
.price-table { font-size: 0.875rem; }
.price-table thead {
  background: var(--charcoal);
  color: var(--white);
}
.price-table th {
  padding: 1rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
}
.price-table th:last-child { text-align: right; }
.price-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}
.price-table td:first-child { font-weight: 500; color: var(--charcoal); }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--charcoal); }
.price-table tbody tr:nth-child(even) { background: var(--offwhite); }
.price-table tbody tr:hover { background: var(--lightgrey); }

.rate-suffix { font-weight: 400; color: var(--midgrey); }

/* ─── Notices (info / warning) ────────────────────────────── */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.6;
}
.notice svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.notice strong { color: var(--charcoal); }

.notice--info {
  background: var(--lightgrey);
  border-left: 4px solid var(--charcoal);
  color: var(--midgrey);
}
.notice--info svg { color: var(--charcoal); }

.notice--soft {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--midgrey);
}
.notice--soft svg { color: var(--midgrey); }

.notice--warning {
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  color: var(--amber-text);
}
.notice--warning svg { color: var(--amber-icon); }
.notice--warning strong { color: var(--amber-text); }

.notice .gap-top { margin-top: 1.25rem; }

/* spacing helpers */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* Price card (truck/crane) */
.price-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--lightgrey);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.price-card-amount { font-size: 2.25rem; font-weight: 700; color: var(--charcoal); }
.price-card-amount-sub { color: var(--midgrey); font-size: 0.875rem; margin-top: 0.25rem; }
.price-card-divider { width: 1px; height: 48px; background: var(--border); }
.price-card-note { font-size: 0.875rem; color: var(--midgrey); line-height: 1.6; max-width: 24rem; }

/* Smaller price card (truck rate inside services page) */
.rate-mini {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--lightgrey);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.rate-mini-num { font-size: 1.5rem; font-weight: 700; color: var(--charcoal); }
.rate-mini-num .sm { font-size: 1rem; font-weight: 400; color: var(--midgrey); }
.rate-mini-note { font-size: 0.875rem; color: var(--midgrey); margin-top: 0.25rem; }

.sales-card {
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.sales-card-title { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.25rem; }
.sales-card-body { font-size: 0.875rem; color: var(--midgrey); line-height: 1.6; }

.sales-pricing-card {
  padding: 1.5rem;
  background: var(--lightgrey);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.sales-pricing-card .title { font-size: 1.125rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.25rem; }
.sales-pricing-card .body { font-size: 0.875rem; color: var(--midgrey); }

/* CTA below pricing */
.pricing-cta {
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-soft);
}
.pricing-cta h3 { font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.75rem; }
.pricing-cta p { color: var(--midgrey); margin-bottom: 1.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }

.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 1024px) { .pricing-stack { gap: 5rem; padding: 5rem 0; } }

/* ─── ABOUT page ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.about-text h2 { margin-bottom: 1.5rem; line-height: 1.3; }
.about-text .stack { display: flex; flex-direction: column; gap: 1rem; }
.about-text p { color: var(--midgrey); line-height: 1.7; }

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-stat {
  background: var(--lightgrey);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.about-stat-num { font-size: 1.5rem; font-weight: 700; color: var(--charcoal); }
.about-stat-label { font-size: 0.75rem; color: var(--midgrey); margin-top: 0.25rem; }

/* Timeline */
.timeline {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-list { display: flex; flex-direction: column; gap: 2rem; }
.timeline-item { display: flex; gap: 1.5rem; }
.timeline-dot {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.timeline-content { padding-top: 0.625rem; }
.timeline-year { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.25rem; }
.timeline-text { font-size: 0.875rem; color: var(--midgrey); line-height: 1.6; }

/* Service area */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .area-grid { grid-template-columns: 1fr 1fr; } }
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.area-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--charcoal); }
.area-list li.muted { color: var(--midgrey); font-style: italic; font-weight: 400; grid-column: span 2; }
.area-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--charcoal); flex-shrink: 0; }
.area-dot--soft { background: var(--silver); }

/* Values */
.values {
  background: var(--lightgrey);
  padding: 3rem 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value h3 { font-size: 1.125rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.value p { font-size: 0.875rem; color: var(--midgrey); line-height: 1.6; max-width: 18rem; margin: 0 auto; }

/* ─── CONTACT page ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    padding: 5rem 0;
  }
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info h2 { font-size: 1.25rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1.25rem; }

.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--lightgrey);
  border: 1px solid #e8e8e8;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  font-size: 0.75rem;
  color: var(--silver-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.contact-value { font-size: 0.875rem; font-weight: 500; color: var(--charcoal); word-break: break-word; }
.contact-value a { transition: color var(--transition); }
.contact-value a:hover { color: var(--midgrey); }

.hours-card {
  padding: 1.25rem;
  background: var(--lightgrey);
  border-radius: var(--radius);
  border: 1px solid #e8e8e8;
}
.hours-card h3 { font-size: 0.875rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.75rem; }
.hours-list { display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.875rem; color: var(--midgrey); }
.hours-list li { display: flex; justify-content: space-between; }
.hours-list li span:last-child { font-weight: 500; color: var(--charcoal); }
.hours-list li.closed span:last-child { color: var(--midgrey); font-weight: 500; }

/* Form */
.contact-form-wrap h2 { font-size: 1.25rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}
.required { color: var(--red); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border: 1px solid #d0d0d0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--silver-dark); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--charcoal);
  box-shadow: 0 0 0 1px var(--charcoal);
}

.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a1a1a'%3e%3cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.06l3.71-3.83a.75.75 0 111.08 1.04l-4.25 4.4a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.75rem;
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-honeypot { display: none !important; }

.form-submit {
  width: 100%;
  padding: 0.875rem 2rem;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background-color var(--transition);
}
.form-submit:hover { background: var(--charcoal-3); }
.form-submit:active { background: #000; }
@media (min-width: 640px) { .form-submit { width: auto; } }

.form-note { font-size: 0.75rem; color: var(--silver-dark); line-height: 1.5; }

/* ─── 404 page ────────────────────────────────────────────── */
.notfound {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 1rem;
}
.notfound h1 { font-size: 2.25rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.75rem; }
.notfound p { color: var(--midgrey); margin-bottom: 2rem; max-width: 24rem; }

/* ─── Scroll-reveal animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── Real-photo helpers (used in place of placeholders) ─── */

/* Full-width banner image (e.g. About page yard photo) */
.banner-image {
  display: block;
  width: 100%;
  height: 18rem;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 640px) { .banner-image { height: 22rem; } }
@media (min-width: 1024px) { .banner-image { height: 28rem; } }

/* Image that slots into a side-by-side grid (e.g. truck-crane on Services) */
.card-image {
  display: block;
  width: 100%;
  height: 18rem;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1024px) {
  .card-image { height: 100%; min-height: 320px; }
}

/* Image used inside the smaller about-grid right column */
.small-image {
  display: block;
  width: 100%;
  height: 16rem;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
}

/* Full-width banner with a dark overlay on top (e.g. Contact entrance image) */
.image-banner-overlay {
  position: relative;
  width: 100%;
  height: 18rem;
  overflow: hidden;
}
@media (min-width: 640px) { .image-banner-overlay { height: 22rem; } }
@media (min-width: 1024px) { .image-banner-overlay { height: 26rem; } }

.image-banner-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.image-banner-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  /* "Slight" dark overlay — 30% */
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Live Google Maps embed (Contact page) */
.map-embed {
  width: 100%;
  height: 16rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--lightgrey);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (min-width: 1024px) { .map-embed { height: 20rem; } }

/* SVG service-area illustration (About page) */
.svg-map {
  width: 100%;
  height: auto;
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.5rem;
}

/* Page header with background image + dark overlay (Services top banner) */
.page-header--image {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    var(--page-header-image, none) center center / cover no-repeat;
  background-color: var(--charcoal);
  overflow: hidden;
}

/* ─── Utility ─────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
