:root {
  --navy: #111010;
  --blue: #1c4e82;
  --blue-bright: #143a63;
  --blue-light: #5b9bd9;
  --steel: #6b7684;
  --steel-light: #e9edf2;
  --white: #ffffff;
  --dark: #111010;
  --warn: #e2711d;
  --silver: #d9dde3;
  --gold: #2f6fb0;
  --orange: #e2711d;
  --font-head: 'Oswald', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #f18a3d, var(--orange));
  color: #1a0d02;
  box-shadow: 0 8px 24px rgba(226,113,29,0.4);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(226,113,29,0.55); }
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-warn {
  background: var(--warn);
  color: var(--dark);
}

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--navy);
  color: #e4ded1;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: #fff; font-weight: 700; }

.promo-topbar {
  background: linear-gradient(90deg, #b3131e, var(--navy) 45%, var(--navy) 55%, #b3131e);
}
.promo-topbar b { color: var(--warn); }
.promo-topbar a { text-decoration: underline; }

/* ---------- Header ---------- */
header.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,16,16,0.97);
  border-bottom: 1px solid rgba(28,78,130,0.28);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 22px rgba(0,0,0,0.45);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand-icon { height: 56px; width: 56px; object-fit: contain; flex-shrink: 0; border-radius: 8px; }
.brand-wordmark { height: 34px; width: auto; object-fit: contain; }
nav.main-nav { flex: 1 1 auto; display: flex; justify-content: center; }
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  position: relative;
  color: #e8e6e2;
  font-weight: 600;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 0;
  transition: color 0.15s ease;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
nav.main-nav a:hover { color: var(--gold); }
nav.main-nav a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.nav-phone {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  white-space: nowrap;
  line-height: 1.15;
}
.nav-phone span { display: block; font-size: 0.62rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.nav-phone:hover { color: var(--gold); }
.nav-quote-btn { padding: 10px 22px; font-size: 0.82rem; white-space: nowrap; }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('assets/hero-garage.png') center/cover no-repeat;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,9,8,0.94) 30%, rgba(30,24,14,0.55) 75%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 100px 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(28,78,130,0.16);
  border: 1px solid var(--blue-light);
  color: var(--blue-light);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--blue-light); }
.hero p.lead {
  font-size: 1.15rem;
  color: #e6e0d3;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
}
.hero-stats .stat b {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-light);
}
.hero-stats .stat span {
  font-size: 0.8rem;
  color: #d8d2c5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Section generic ---------- */
section { padding: 90px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
}
.section-head p { margin-top: 16px; color: #5c574f; font-size: 1.05rem; }

.bg-light { background: var(--steel-light); }
.bg-navy { background: var(--navy); color: #fff; }

/* ---------- Trust strip ---------- */
/* ---------- Family-Owned Promise ---------- */
.family-note {
  background: linear-gradient(120deg, var(--navy), #1c1a18);
  padding: 5.5rem 0;
  border-top: 6px solid var(--orange);
  border-bottom: 6px solid var(--orange);
  box-shadow: 0 0 60px rgba(200, 150, 46, 0.25) inset;
  position: relative;
  overflow: hidden;
}
.family-note::before {
  content: "\201C";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14rem;
  font-family: Georgia, serif;
  color: rgba(200, 150, 46, 0.12);
  line-height: 1;
  pointer-events: none;
}
.family-note-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.family-note-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.05rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 18px rgba(200, 150, 46, 0.45);
}
.family-note p {
  color: #f2eee2;
  font-size: 1.28rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.family-note p:first-of-type {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.55rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}
.family-note-sign {
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
  margin-bottom: 0 !important;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(200, 150, 46, 0.4);
}

@media (max-width: 640px) {
  .family-note { padding: 3.5rem 0; }
  .family-note p:first-of-type { font-size: 1.25rem; }
  .family-note p { font-size: 1.05rem; }
  .family-note-sign { font-size: 1.15rem; }
}

.trust-strip {
  background: var(--blue);
  color: #fff;
  padding: 22px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.trust-strip .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.trust-strip .item .ico { font-size: 1.6rem; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 34px 26px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border: 1px solid #eef1f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.16); }
.service-card .icon {
  width: 58px; height: 58px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-bright), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px; color: #fff;
}
.service-card h3 {
  font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: var(--navy);
  text-transform: uppercase;
}
.service-card p { color: #5c574f; font-size: 0.95rem; line-height: 1.55; }
.service-card .tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--warn); color: var(--dark);
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}

/* ---------- Why us / feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img { border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid #e4e9f0;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  background: var(--blue); color: #fff; border-radius: 50%;
  width: 26px; height: 26px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.85rem; margin-top: 2px;
}
.feature-list b { display: block; color: var(--navy); font-size: 1rem; }
.feature-list span { color: #5c574f; font-size: 0.92rem; }

/* ---------- Warranty banner ---------- */
.warranty-banner {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.warranty-banner .big {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
}
.warranty-banner .label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  font-weight: 800;
  font-size: 0.9rem;
}
.warranty-banner .desc { max-width: 480px; color: #e6e0d3; }
.warranty-banner .desc h3 { font-size: 1.6rem; margin-bottom: 8px; text-transform: uppercase; color: #fff; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  counter-reset: step;
}
.process-step { text-align: center; padding: 10px; }
.process-step .num {
  counter-increment: step;
  width: 60px; height: 60px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.3rem;
}
.process-step h4 { color: var(--navy); font-weight: 800; margin-bottom: 8px; text-transform: uppercase; font-size: 1.05rem; }
.process-step p { color: #5c574f; font-size: 0.92rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  border-radius: 14px;
  height: 260px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ---------- Floor Coating System ---------- */
.coating-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.coating-benefit {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}
.coating-benefit .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.coating-benefit h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  color: #111010;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.coating-benefit p {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.55;
}
.compare-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}
.compare-table thead th {
  background: #111010;
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.compare-table thead th.highlight {
  background: var(--gold);
  color: #fff;
}
.compare-table td.highlight {
  color: var(--gold);
  font-weight: 600;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 800px) {
  .coating-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .coating-benefits {
    grid-template-columns: 1fr;
  }
}

/* ---------- Materials / Supplier ---------- */
.materials-section {
  background: #fff;
  padding: 60px 0;
}
.materials-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.materials-logo {
  width: 280px;
  max-width: 100%;
  flex-shrink: 0;
}
.materials-copy {
  flex: 1;
  min-width: 280px;
}
.materials-copy .eyebrow {
  color: var(--gold);
}
.materials-copy h2 {
  color: #111010;
  font-family: var(--font-head);
  margin: 8px 0 14px;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.materials-copy p {
  color: #333;
  line-height: 1.6;
  font-size: 1.02rem;
}
.materials-copy strong {
  color: #111010;
}
@media (max-width: 700px) {
  .materials-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Flake Colors ---------- */
.flake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin-top: 10px;
}
.flake-swatch {
  border-radius: 12px;
  overflow: hidden;
  background: #1b1a19;
  border: 1px solid rgba(28,78,130,0.25);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.flake-swatch:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(28,78,130,0.25);
}
.flake-swatch img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.flake-swatch span {
  display: block;
  text-align: center;
  padding: 10px 6px;
  font-family: var(--font-head, 'Oswald', sans-serif);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold, #c8962e);
}
.flake-note {
  margin-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #9a9a9a;
  font-style: italic;
}

/* ---------- Install Video ---------- */
.video-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.install-video {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  border: 3px solid var(--gold);
  background: #000;
  margin-top: 10px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.fleet-grid img {
  border-radius: 14px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.testi-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.testi-card .stars { color: var(--warn); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p.quote { color: #4a453d; font-size: 0.98rem; line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.testi-card .who { display: flex; align-items: center; gap: 12px; }
.testi-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.testi-card .who b { display: block; color: var(--navy); font-size: 0.92rem; }
.testi-card .who span { color: #a89f8d; font-size: 0.8rem; }

/* ---------- Service area ---------- */
.area-list {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px;
}
.area-list span {
  background: #fff; border: 1px solid #e3ddd0; color: var(--navy);
  padding: 10px 20px; border-radius: 30px; font-weight: 700; font-size: 0.9rem;
}

/* ---------- CTA form section ---------- */
.cta-section {
  position: relative;
  background: linear-gradient(120deg, var(--navy), #0a0908);
  color: #fff;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background: url('assets/flake-texture.png') center/cover no-repeat;
  opacity: 0.14;
}
.cta-wrap {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.cta-wrap h2 { font-size: clamp(1.8rem,3.2vw,2.6rem); font-weight: 900; text-transform: uppercase; margin-bottom: 18px; line-height: 1.15; }
.cta-wrap p { color: #d8d2c5; font-size: 1.05rem; margin-bottom: 26px; line-height: 1.6; }
.cta-phone-block {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 20px 24px; border-radius: 12px;
  margin-bottom: 16px;
}
.cta-phone-block .ico { font-size: 1.8rem; }
.cta-phone-block a { font-size: 1.5rem; font-weight: 900; color: #fff; }
.cta-phone-block span { display: block; font-size: 0.78rem; color: var(--blue-light); text-transform: uppercase; font-weight: 800; letter-spacing: 0.05em; }

.lead-form {
  background: #fff;
  color: var(--dark);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.lead-form h3 { color: var(--navy); font-weight: 900; text-transform: uppercase; margin-bottom: 6px; font-size: 1.3rem; }
.lead-form p.sub { color: #5c574f; font-size: 0.9rem; margin-bottom: 22px; }
.lead-form label { display: block; font-weight: 700; font-size: 0.82rem; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.03em; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e0dace;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-family: inherit;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--blue-bright);
}
.lead-form .btn { width: 100%; }
.form-note { font-size: 0.78rem; color: #a89f8d; text-align: center; margin-top: 14px; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success .check-big {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 16px;
}
.form-success h3 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: #5c574f; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid #e4e9f0;
  padding: 22px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 800; color: var(--navy); font-size: 1.05rem;
}
.faq-q .plus { font-size: 1.4rem; color: var(--blue); transition: transform 0.2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; color: #5c574f; font-size: 0.95rem; line-height: 1.6; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* ---------- Footer ---------- */
footer {
  background: #0a0908;
  color: #c8c2b8;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 44px; }
.footer-brand .name { color: #fff; font-weight: 900; text-transform: uppercase; font-size: 1.05rem; }
.footer-brand .slogan { color: var(--blue-light); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
footer p { font-size: 0.9rem; line-height: 1.6; }
footer h5 { color: #fff; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
footer ul a:hover { color: var(--blue-light); }
.footer-bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: #8a8478;
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--blue); color: #fff;
  display: none; align-items: center; justify-content: center;
  gap: 10px; padding: 14px; font-weight: 800; text-transform: uppercase;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.25);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .img-col { order: -1; }
  .cta-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 20px; }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 0; }
  nav.main-nav li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  nav.main-nav a { display: block; padding: 14px 0; }
  .hamburger { display: block; }
  .nav-phone { display: none; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 58px; }
  .footer-grid { grid-template-columns: 1fr; }
}
