@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── DESIGN TOKENS — Steel Blue / Navy from logo ───────── */
:root {
  --ink:        #0A1628;
  --navy:       #0D2144;
  --steel:      #1A3A6B;
  --blue:       #2563A8;
  --blue-mid:   #1E4F8F;
  --sky:        #4B8FD4;
  --sky-light:  #7FB3E8;
  --fog:        #F4F6FA;
  --warm-white: #FAFBFD;
  --silver:     #C8D4E8;
  --text:       #0D1F3C;
  --muted:      #4A5F7A;
  --border:     #D0DAE8;
  --radius:     4px;
  --max:        1200px;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── IMAGE PLACEHOLDER SYSTEM ───────────────────────────── */
.img-ph {
  width: 100%;
  background: linear-gradient(135deg, #1A3A6B 0%, #2563A8 50%, #4B8FD4 100%);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.img-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Aspect ratios */
.img-ph-hero   { height: 480px; }
.img-ph-wide   { height: 360px; }
.img-ph-sq     { height: 300px; }
.img-ph-tall   { height: 420px; }
.img-ph-sm     { height: 220px; }
/* When no real img inside, show a subtle watermark */
.img-ph:not(:has(img))::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(37,99,168,0.7) 0%, rgba(10,22,40,0.85) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Crect x='28' y='0' width='4' height='20' rx='2' fill='rgba(255,255,255,0.06)'/%3E%3Crect x='28' y='40' width='4' height='20' rx='2' fill='rgba(255,255,255,0.06)'/%3E%3Crect x='0' y='28' width='20' height='4' rx='2' fill='rgba(255,255,255,0.06)'/%3E%3Crect x='40' y='28' width='20' height='4' rx='2' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: cover, 60px 60px;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(75, 143, 212, 0.2);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links .nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover { background: var(--sky); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-main.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10,22,40,0.72) 0%,
    rgba(10,22,40,0.45) 45%,
    rgba(10,22,40,0.10) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(75,143,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,143,212,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--sky); }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--sky-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--sky); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,99,168,0.45); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--sky); color: var(--sky-light); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--steel); transform: translateY(-1px); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sky-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }

/* Hero right cards */
.hero-right { display: flex; flex-direction: column; gap: 1rem; }
.hero-card {
  background: rgba(10,22,40,0.42);
  border: 1px solid rgba(75,143,212,0.2);
  border-radius: 8px;
  padding: 1.4rem;
}
.hero-card-icon {
  width: 36px; height: 36px;
  background: rgba(37,99,168,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.hero-card-icon svg { width: 18px; height: 18px; fill: var(--sky); }
.hero-card-title { font-family: var(--serif); font-size: 1rem; color: #fff; margin-bottom: 0.4rem; }
.hero-card p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ─── SECTION SCAFFOLDING ────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-dark { background: var(--navy); color: #fff; }
.section-fog  { background: var(--fog); }
.section-ink  { background: var(--ink); color: #fff; }
.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--blue); }
.section-dark .section-tag,
.section-ink .section-tag  { color: var(--sky); }
.section-dark .section-tag::before,
.section-ink .section-tag::before  { background: var(--sky); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-dark .section-title,
.section-ink .section-title  { color: #fff; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.75; }
.section-dark .section-sub { color: rgba(255,255,255,0.55); }
.divider { width: 48px; height: 2px; background: var(--blue); margin: 1.5rem 0; }

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 2rem 5rem;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10,22,40,0.70) 0%,
    rgba(10,22,40,0.40) 55%,
    rgba(10,22,40,0.12) 100%);
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(75,143,212,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,143,212,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.page-hero-tag::before { content: ''; width: 24px; height: 1px; background: var(--sky); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.75; }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--sky); }
.breadcrumb span { color: var(--sky); }

/* ─── GRID LAYOUTS ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.align-center { align-items: center; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: 0 12px 40px rgba(37,99,168,0.12); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px;
  background: #EBF2FC;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 22px; height: 22px; fill: var(--blue); }
.card h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--text); }
.card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.card-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.card-dark h3 { color: #fff; }
.card-dark p { color: rgba(255,255,255,0.55); }
.card-dark .card-icon { background: rgba(75,143,212,0.15); }
.card-dark .card-icon svg { fill: var(--sky); }

/* ─── TRUST STRIP ────────────────────────────────────────── */
.trust-strip { background: #EBF2FC; padding: 3rem 2rem; border-bottom: 1px solid var(--border); }
.trust-strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 3.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.65rem; font-size: 0.85rem; font-weight: 600; color: var(--steel); }
.trust-item svg { width: 20px; height: 20px; fill: var(--blue); flex-shrink: 0; }

/* ─── PRICING BLOCKS ─────────────────────────────────────── */
.pricing-block { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 2rem; }
.pricing-block-header {
  background: var(--navy);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.pricing-block-header h3 { font-family: var(--serif); color: #fff; font-size: 1.3rem; }
.pricing-badge { background: var(--blue); color: #fff; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 20px; }
.pricing-rows { padding: 0.5rem 0; }
.pricing-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2rem; border-bottom: 1px solid var(--fog);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row-label { font-size: 0.9rem; color: var(--text); }
.pricing-row-value { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--blue); }
.pricing-note { padding: 1rem 2rem 1.5rem; font-size: 0.82rem; color: var(--muted); font-style: italic; }

/* ─── CHECK LIST ─────────────────────────────────────────── */
.check-list { padding: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.55rem 0; font-size: 0.9rem; color: var(--text);
  border-bottom: 1px solid var(--fog);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232563A8'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ─── PRICE TABLE ────────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.price-table th { background: var(--navy); color: #fff; padding: 0.85rem 1.25rem; text-align: left; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.price-table td { padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--fog); color: var(--text); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--fog); }
.price-table .td-price { font-family: var(--serif); font-weight: 600; color: var(--blue); font-size: 1rem; }

/* ─── HAZMAT GRID ────────────────────────────────────────── */
.hazmat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.hazmat-cell { background: #fff; padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.hazmat-cell-name { font-size: 0.85rem; color: var(--text); }
.hazmat-cell-price { font-family: var(--serif); font-weight: 700; color: var(--blue); font-size: 0.95rem; white-space: nowrap; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.4rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--text); cursor: pointer; text-align: left; gap: 1rem;
}
.faq-q-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  font-size: 1.1rem; color: var(--muted);
}
.faq-item.open .faq-q-icon { background: var(--blue); border-color: var(--blue); color: #fff; }
.faq-a { display: none; padding: 0 0 1.4rem; font-size: 0.92rem; color: var(--muted); line-height: 1.75; max-width: 780px; }
.faq-item.open .faq-a { display: block; }

/* Dark FAQ variant */
.faq-dark .faq-item { border-color: rgba(255,255,255,0.1); }
.faq-dark .faq-item:first-child { border-top-color: rgba(255,255,255,0.1); }
.faq-dark .faq-q { color: #fff; }
.faq-dark .faq-q-icon { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
.faq-dark .faq-a { color: rgba(255,255,255,0.6); }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band { background: var(--blue); padding: 4.5rem 2rem; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.4rem); color: #fff; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; }
.btn-white { background: #fff; color: var(--blue); font-weight: 700; }
.btn-white:hover { background: var(--fog); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); margin-left: 1rem; }
.btn-ghost:hover { border-color: #fff; }

/* ─── SERVICE TILES ──────────────────────────────────────── */
.service-tile { display: flex; gap: 2rem; align-items: flex-start; padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.service-tile:last-child { border-bottom: none; }
.service-tile-num { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: #D0DAE8; line-height: 1; flex-shrink: 0; width: 60px; }
.service-tile h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text); }
.service-tile p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.service-tile ul { margin-top: 0.75rem; }
.service-tile ul li { font-size: 0.87rem; color: var(--muted); padding: 0.2rem 0; display: flex; gap: 0.5rem; }
.service-tile ul li::before { content: '—'; color: var(--blue); flex-shrink: 0; }

/* ─── VALUE CARD ─────────────────────────────────────────── */
.value-card { padding: 2.5rem; border-left: 3px solid var(--blue); background: var(--fog); border-radius: 0 8px 8px 0; }
.value-card h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text); }
.value-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── IMAGE SECTIONS ─────────────────────────────────────── */
.img-cover {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
/* Inline image + text pairs */
.split-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 10px;
}
.split-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--steel) 0%, var(--blue) 100%);
}
.split-img-wrap img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; display: block; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.contact-icon { width: 42px; height: 42px; background: #EBF2FC; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 20px; height: 20px; fill: var(--blue); }
.contact-info-item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.2rem; }
.contact-info-item a, .contact-info-item span { font-size: 1rem; color: var(--text); font-weight: 500; }
.contact-form .field { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.95rem; color: var(--text);
  background: #fff; outline: none; transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,168,0.1); }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--ink); padding: 4rem 2rem 2rem; color: rgba(255,255,255,0.5); }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo img { height: 50px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: var(--serif); color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; }
.footer-bottom a { color: var(--sky); }

/* ─── PHOTO STRIPS ───────────────────────────────────────── */
.photo-strip-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
}
.photo-strip-main,
.photo-strip-side { height: 380px; }

.photo-strip-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.photo-strip-item { height: 250px; }
.photo-strip-item img { min-height: 0; height: 100%; object-position: center center; }

/* ─── SERVICE CARD GRID ──────────────────────────────────── */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ─── CONTACT NAME ROW ───────────────────────────────────── */
.contact-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0; /* fields have own margin */
}

/* ─── LISTING PLACEHOLDER ────────────────────────────────── */
.listing-placeholder { text-align: center; padding: 5rem 2rem; border: 2px dashed var(--border); border-radius: 10px; }
.listing-placeholder h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.75rem; }
.listing-placeholder p { color: var(--muted); font-size: 0.95rem; }

/* ─── NO-FEE BANNER ──────────────────────────────────────── */
.no-fee-banner { background: #EBF2FC; border-bottom: 1px solid var(--border); padding: 1.25rem 2rem; }
.no-fee-banner-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.no-fee-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 600; color: var(--steel); }
.no-fee-item svg { width: 18px; height: 18px; fill: var(--blue); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — mobile-first, three breakpoints
   1024px  tablet landscape
    768px  tablet portrait / large phone
    480px  phone
    360px  small phone
   ═══════════════════════════════════════════════════════════ */

/* ── 1024px — tablet landscape ───────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-content { padding: 8rem 2rem 5rem; gap: 3rem; }
  .hero-title { font-size: 2.8rem; }
  /* Hazmat 3-col stays fine at 1024 */
}

/* ── 768px — tablet portrait / large phone ───────────────── */
@media (max-width: 768px) {

  /* NAV */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(10, 22, 40, 0.99);
    padding: 0.5rem 0 1rem;
    gap: 0;
    border-top: 1px solid rgba(75,143,212,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 1.75rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
  }
  .nav-links a:hover { background: rgba(75,143,212,0.1); color: #fff; }
  .nav-links .nav-cta {
    margin: 0.75rem 1.25rem 0;
    border-radius: var(--radius);
    text-align: center;
    background: var(--blue);
    color: #fff;
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
    display: block;
    border-bottom: none;
  }
  .nav-toggle { display: flex; }

  /* HERO */
  .hero-content {
    grid-template-columns: 1fr;
    padding: 6.5rem 1.25rem 3.5rem;
    gap: 0;
  }
  .hero-right { display: none; }
  .hero-title { font-size: 2.2rem; line-height: 1.2; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.65rem; }

  /* PAGE HERO */
  .page-hero { padding: 7.5rem 1.25rem 3rem; min-height: auto; }
  .page-hero h1 { font-size: 1.8rem; line-height: 1.25; }
  .page-hero p { font-size: 0.92rem; }

  /* SECTIONS */
  .section { padding: 3.5rem 1.25rem; }

  /* GRIDS — all single column */
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* SECTION HEADERS */
  .section-title { font-size: 1.7rem; }

  /* HERO CARDS & SPLIT IMAGES */
  .split-img-wrap img { min-height: 220px; }
  .split-img-wrap { min-height: 220px; }

  /* PHOTO STRIPS */
  .photo-strip-2 { grid-template-columns: 1fr; }
  .photo-strip-main, .photo-strip-side { height: 240px; }
  .photo-strip-3 { grid-template-columns: 1fr; }
  .photo-strip-item { height: 200px; }
  .photo-strip-item img { min-height: 0; }

  /* SERVICE CARDS GRID */
  .service-cards-grid { grid-template-columns: 1fr; }

  /* CONTACT NAME ROW */
  .contact-name-row { grid-template-columns: 1fr; gap: 0; }

  /* Management page 3-photo strip */
  div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Homepage dual-image strip */
  div[style*="grid-template-columns:3fr 2fr"] {
    grid-template-columns: 1fr !important;
  }

  /* TRUST STRIP */
  .trust-strip { padding: 2rem 1.25rem; }
  .trust-strip-inner { gap: 1.25rem; justify-content: flex-start; }
  .trust-item { font-size: 0.82rem; }

  /* NO-FEE BANNER */
  .no-fee-banner { padding: 1rem 1.25rem; }
  .no-fee-banner-inner { gap: 1rem; flex-direction: column; align-items: flex-start; }

  /* PRICING BLOCKS */
  .pricing-block-header { flex-wrap: wrap; gap: 0.5rem; }
  .pricing-row { padding: 0.75rem 1.25rem; }
  .pricing-row-label { font-size: 0.85rem; }

  /* HAZMAT GRID */
  .hazmat-grid { grid-template-columns: 1fr 1fr; }
  .hazmat-cell { padding: 0.75rem 0.9rem; }
  .hazmat-cell-name { font-size: 0.78rem; }
  .hazmat-cell-price { font-size: 0.85rem; }

  /* PRICE TABLE — horizontal scroll */
  .price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; border: 1px solid var(--border); }
  .price-table-wrap .price-table { min-width: 480px; }

  /* SERVICE TILES */
  .service-tile { flex-direction: column; gap: 0.75rem; padding: 2rem 0; }
  .service-tile-num { font-size: 2rem; width: auto; }

  /* VALUE CARDS */
  .value-card { padding: 1.75rem; }

  /* CARDS */
  .card { padding: 1.5rem; }
  .card[style*="display:flex"] { flex-direction: row !important; }

  /* CONTACT */
  .contact-form div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* DUMPSTER CARDS in special services */
  div[style*="grid-template-columns:1fr 1fr;gap:2rem;margin-bottom:3rem"] {
    grid-template-columns: 1fr !important;
  }
  /* Service card images */
  div[style*="height:220px;overflow:hidden"] { height: 180px; }

  /* CTA BAND */
  .cta-band { padding: 3rem 1.25rem; }
  .cta-band h2 { font-size: 1.65rem; }
  .btn-ghost { margin-left: 0; margin-top: 0.75rem; }
  .cta-band .btn { display: block; width: 100%; text-align: center; margin-left: 0; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-logo img { height: 42px; }
  footer { padding: 3rem 1.25rem 2rem; }

  /* FAQ */
  .faq-q { font-size: 0.95rem; }

  /* LISTINGS filter bar */
  div[style*="display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3rem;padding:1.5rem"] {
    flex-direction: column;
    align-items: stretch !important;
  }
  div[style*="display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3rem;padding:1.5rem"] select {
    width: 100%;
  }

  /* STAT BOXES in management page */
  div[style*="grid-template-columns:1fr 1fr;gap:1rem"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── 480px — phone ────────────────────────────────────────── */
@media (max-width: 480px) {

  /* NAV logo */
  .nav-logo img { height: 38px; }
  .nav-inner { padding: 0 1rem; }

  /* HERO */
  .hero-content { padding: 6rem 1rem 3rem; }
  .hero-title { font-size: 1.9rem; }
  .hero-eyebrow { font-size: 0.65rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.6rem; }

  /* PAGE HERO */
  .page-hero { padding: 7rem 1rem 2.5rem; }
  .page-hero h1 { font-size: 1.55rem; }

  /* SECTIONS */
  .section { padding: 3rem 1rem; }
  .section-title { font-size: 1.5rem; }

  /* HAZMAT — single col on small phones */
  .hazmat-grid { grid-template-columns: 1fr; }

  /* STAT BOXES — management page 2-col stays */

  /* PRICING */
  .pricing-block-header h3 { font-size: 1.05rem; }
  .pricing-row-value { font-size: 0.95rem; }

  /* TRUST STRIP */
  .trust-strip-inner { gap: 1rem; }
  .trust-item { font-size: 0.78rem; gap: 0.4rem; }

  /* SERVICE TILES */
  .service-tile { padding: 1.5rem 0; }

  /* CARDS */
  .card { padding: 1.25rem; }

  /* CTA */
  .cta-band { padding: 2.5rem 1rem; }
  .cta-band h2 { font-size: 1.45rem; }

  /* FOOTER */
  footer { padding: 2.5rem 1rem 1.5rem; }
  .footer-logo img { height: 38px; }
  .footer-brand p { font-size: 0.82rem; }
  .footer-col h4 { font-size: 0.88rem; }
  .footer-col a { font-size: 0.82rem; }
  .footer-bottom { font-size: 0.72rem; }

  /* CONTACT form */
  .contact-form input,
  .contact-form textarea,
  .contact-form select { font-size: 0.9rem; padding: 0.75rem 0.85rem; }

  /* DUMPSTER cards in dark panel */
  div[style*="background:rgba(255,255,255,0.07)"] { padding: 1rem 1.15rem !important; }

  /* Listing placeholder */
  .listing-placeholder { padding: 3rem 1rem; }
}

/* ── 360px — very small phone ────────────────────────────── */
@media (max-width: 360px) {
  .hero-title { font-size: 1.65rem; }
  .hero-stats { gap: 0.35rem; }
  .stat-num { font-size: 1.25rem; }
  .page-hero h1 { font-size: 1.4rem; }
  .section-title { font-size: 1.35rem; }
  .btn { padding: 0.8rem 1.25rem; font-size: 0.82rem; }
  .nav-links a { padding: 0.85rem 1.25rem; }
}
