:root {
  --color-primary: #006b5e;
  --color-primary-dark: #005248;
  --color-charcoal: #1f272d;
  --color-orange: #ff6a00;
  --color-orange-cta: #c44f00;
  --color-orange-dark: #b34700;
  --color-green: #3c9e3a;
  --color-gray: #555c62;
  --color-light: #f7f7f7;
  --color-white: #ffffff;
  --color-border: #e2e5e7;
  --color-input-border: #d7dbdd;
  --color-teal-tint: #f0f8f6;
  --color-footer-muted: #c7cdd0;
  --color-footer-link: #dde2e4;
  --navy: var(--color-charcoal);
  --green: var(--color-primary);
  --green-dark: var(--color-primary-dark);
  --gold: var(--color-orange);
  --blush: var(--color-light);
  --background: var(--color-white);
  --white: var(--color-white);
  --mint: var(--color-light);
  --text: var(--color-charcoal);
  --text-muted: var(--color-gray);
  --border: var(--color-border);
  --shadow: 0 8px 24px rgba(31, 39, 45, 0.08);
  --shadow-lg: 0 18px 40px rgba(31, 39, 45, 0.1);
  --radius: 16px;
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--background);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

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

a {
  color: var(--color-primary-dark);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(31, 39, 45, 0.1);
}

section[id],
#quote {
  scroll-margin-top: 90px;
}

.site-header .wrap {
  width: min(calc(100% - 2.5rem), 1200px);
}

.topbar {
  display: block;
  background: var(--color-charcoal);
  color: var(--color-footer-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--color-orange);
}

.nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 88px;
  padding: 0.55rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
  grid-column: 1;
  justify-self: start;
  position: relative;
}

.logo picture {
  display: contents;
}

.logo img {
  width: auto;
  height: 64px;
  max-width: min(280px, 58vw);
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
}

.logo strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.logo span span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.nav {
  display: none;
  grid-column: 2;
  justify-self: center;
}

.nav-list,
.sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.nav a,
.nav button {
  font: inherit;
  background: none;
  border: 0;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  font-size: 0.93rem;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
}

.nav a:hover,
.nav button:hover,
.nav a:focus-visible,
.nav button:focus-visible {
  color: var(--color-primary);
}

.has-sub {
  position: relative;
}

.nav-parent {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-parent > a {
  padding-right: 0.2rem;
}

.sub-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  min-width: 2.6rem;
  min-height: 2.6rem;
  padding: 0;
  border-radius: 8px;
}

.sub-toggle span {
  display: block;
  width: 0.42em;
  height: 0.42em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.2em;
  transition: transform 0.18s ease;
}

.has-sub.open > .nav-parent .sub-toggle span {
  transform: rotate(-135deg);
  margin-top: 0.12em;
}

.sub-list {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 270px;
  max-height: min(70vh, 28rem);
  overflow-y: auto;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 0.55rem;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.has-sub.open > .sub-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-list a {
  display: block;
  border-radius: 10px;
  font-weight: 600;
}

.sub-list a:hover,
.sub-list a:focus-visible {
  color: var(--color-primary);
  background: var(--color-teal-tint);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  grid-column: 3;
  justify-self: end;
}

.phone-link {
  display: none !important;
}

.header-actions .btn,
.header-actions .btn-gold {
  min-height: 42px;
  padding: 0.5rem 1.05rem;
  border-radius: 10px;
  box-shadow: none;
  white-space: nowrap;
}

.header-actions .btn:hover,
.header-actions .btn-gold:hover,
.header-actions .btn:focus-visible {
  transform: none;
}

.phone-link::before,
.hero-phone::before,
.topbar a[href^="tel:"]::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 .1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn,
.btn-gold,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 13px;
  padding: 0.8rem 1.2rem;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  background: var(--color-orange-cta);
  color: var(--color-white);
  box-shadow: 0 8px 18px rgba(196, 79, 0, 0.22);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn-gold:hover,
.btn-primary:hover,
.btn:focus-visible,
.btn-gold:focus-visible {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
}

.btn-line {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  box-shadow: none;
}

.btn-line:hover,
.btn-line:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-line.ink {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.section-navy .btn-line,
.section-navy .btn-line.ink {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.section-navy .btn-line:hover,
.section-navy .btn-line:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: transform 0.18s ease, top 0.18s ease, background 0.18s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

body.nav-open .menu-toggle span {
  background: transparent;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 107, 94, 0.08), transparent 30%),
    linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
  padding: 3.4rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  gap: 1.8rem;
}

.eyebrow {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
h1 {
  color: var(--navy);
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin: 0.45rem 0 1rem;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.text-green {
  color: var(--color-primary);
}

.hero p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.3rem 0 1rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-orange-cta);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.15rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: inset 3px 0 0 var(--color-primary);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-trust li:nth-child(2) {
  box-shadow: inset 3px 0 0 var(--color-green);
}

.hero-trust li:nth-child(4) {
  box-shadow: inset 3px 0 0 var(--color-orange);
}

.hero-visual {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.quote-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-top: 1rem;
}

.quote-card h2 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
  color: var(--navy);
}

.quote-card p,
.form-note,
.lead {
  color: var(--text-muted);
}

.form {
  display: grid;
  gap: 0.75rem;
}

.form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
}

.form input,
.form textarea,
.form select {
  font: inherit;
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--color-input-border);
  border-radius: 12px;
  background: var(--white);
  max-width: 100%;
}

.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 107, 94, 0.12);
}

.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"] {
  border-color: #b91c1c;
}

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

.form .error {
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status {
  display: none;
  padding: 0.8rem;
  border-radius: 12px;
  background: var(--color-light);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.show {
  display: block;
}

.form-status.is-error {
  background: #f8e8ea;
}

.form-status.is-success {
  background: #e8f6e8;
  color: var(--color-charcoal);
  box-shadow: inset 3px 0 0 var(--color-green);
}

.form-status a {
  color: var(--color-primary);
  font-weight: 800;
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

#estimate-form,
#quote,
#photos {
  scroll-margin-top: 6.5rem;
}

.trust {
  background: var(--white);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  padding: 1.1rem 0 0.4rem;
  list-style: none;
  margin-block: 0;
  margin-inline: auto;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  box-shadow: 0 6px 16px rgba(31, 39, 45, 0.04);
}

.trust-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--color-green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.trust-list li:first-child::before {
  background: var(--color-primary);
}

.trust-list li:nth-child(3)::before {
  background: var(--color-orange);
}

.section {
  padding: 4rem 0;
  background: var(--white);
}

.section h2,
.section-navy h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--navy);
}

.section h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 0.7rem;
  background: var(--color-orange);
  border-radius: 99px;
}

.section-alt {
  background: var(--color-light);
}

.section-mint,
.section-muted {
  background: var(--color-teal-tint);
}

.section-navy,
.band {
  background: var(--color-charcoal);
  color: var(--white);
}

.section-navy h2,
.band h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy .lead,
.section-navy p,
.band p,
.section-navy li,
.band li {
  color: var(--color-footer-muted);
}

.cards {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.card h3,
.card h3 a {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
  color: var(--navy);
  text-decoration: none;
}

.card p,
.card li {
  color: var(--text-muted);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--color-teal-tint);
  color: var(--color-primary);
  margin-bottom: 0.85rem;
  box-shadow: inset 3px 0 0 var(--color-orange);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.7rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
}

.card:hover .card-cta {
  gap: 0.5rem;
}

.split {
  display: grid;
  gap: 1.4rem;
}

.list {
  margin: 0.8rem 0 1rem;
  padding-left: 1.15rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--color-orange);
  border-radius: 0 16px 16px 0;
  padding: 1.1rem 1.15rem;
}

.step span {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.step h3 {
  margin: 0.25rem 0 0.4rem;
  color: var(--navy);
}

.photo-callout {
  margin: 1.4rem 0;
  background: var(--color-teal-tint);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  color: var(--navy);
  font-weight: 800;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.2rem 0 1.3rem;
  padding: 0;
  list-style: none;
}

.item-grid li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.item-grid li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: var(--color-green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.location-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.location-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.location-card::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: var(--color-teal-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23006B5E' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.location-card::after {
  content: "→";
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-left: auto;
}

.location-card:hover,
.location-card:focus-visible {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.location-card small {
  flex: 1 0 100%;
  padding-left: 36px;
  font-weight: 600;
  color: var(--text-muted);
}

.compare {
  display: grid;
  gap: 1.2rem;
}

.section-navy .card,
.band .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-navy .card h3,
.section-navy .card h3 a {
  color: var(--white);
}

.section-navy .card h3::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 0.55rem;
  background: var(--color-green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section-navy .card p {
  color: var(--color-footer-muted);
}

.section-navy .card-icon {
  background: rgba(0, 107, 94, 0.18);
  color: var(--color-primary);
}

.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.15rem 1rem;
  margin-top: 0.75rem;
}

.faq details[open] {
  background: var(--color-teal-tint);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--color-primary);
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 0.95rem;
  color: var(--text-muted);
}

.final-cta .hero-phone {
  color: var(--white);
  font-size: 1.6rem;
  margin-top: 0.4rem;
}

.final-cta {
  padding-bottom: 5rem;
}

.site-footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 0 0 6.2rem;
}

.footer-cta-band {
  background: var(--color-charcoal);
  color: var(--white);
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.footer-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-footer-muted);
}

.footer-cta-title {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-cta-band .btn {
  background: var(--color-orange-cta);
  color: var(--color-white);
  box-shadow: 0 8px 18px rgba(196, 79, 0, 0.22);
}

.footer-cta-band .btn:hover,
.footer-cta-band .btn:focus-visible {
  background: var(--color-orange-dark);
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  gap: 1.8rem 2rem;
  padding: 3.2rem 0 0.4rem;
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
}

.site-footer h2::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 0.55rem;
  background: var(--color-orange);
}

.site-footer a {
  color: var(--color-footer-link);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-orange);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.4rem 0;
}

.site-footer p {
  color: var(--color-footer-muted);
}

.footer-contact a[href^="tel"] {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
}

.footer-bar {
  display: block;
  width: 100%;
  margin-top: 2.2rem;
  padding: 1.05rem 0;
  border: 0;
  background: #182025;
  color: var(--color-footer-muted);
  font-size: 0.88rem;
}

.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
}

.footer-bar a {
  color: var(--white);
  font-weight: 800;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.7rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(31, 39, 45, 0.08);
}

.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

.sticky-call a:first-child {
  background: var(--color-primary);
  color: var(--color-white);
}

.sticky-call a:last-child {
  background: var(--color-orange-cta);
  color: var(--color-white);
}

.placeholder {
  padding: 4rem 0 5rem;
}

.placeholder h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
}

@media (min-width: 700px) {
  .trust-list,
  .cards,
  .compare,
  .item-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .sub-toggle {
    width: 1.7rem;
    min-width: 1.7rem;
    min-height: 2.2rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    display: block;
    justify-self: center;
  }

  .hero {
    padding: 4.6rem 0 3rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .section {
    padding: 5.8rem 0;
  }

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

  .item-cards.cards {
    grid-template-columns: repeat(5, 1fr);
  }

  .location-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  }

  .sticky-call {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.6rem;
  }

  .trust-list {
    grid-template-columns: repeat(6, 1fr);
  }

  .has-sub:hover > .sub-list,
  .has-sub:focus-within > .sub-list,
  .has-sub.open > .sub-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .nav a,
  .nav button {
    padding: 0.5rem 0.72rem;
    font-size: 0.95rem;
  }

  .header-actions {
    gap: 1.15rem;
  }
}

@media (max-width: 979px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(31, 39, 45, 0.42);
    z-index: 40;
  }

  body.nav-open .nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 51;
    max-height: min(78vh, calc(100dvh - 8.5rem));
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.35rem 0 1rem;
    box-shadow: var(--shadow-lg);
  }

  body.nav-open .nav-list {
    display: block;
    padding: 0 0.85rem;
  }

  body.nav-open .nav-list > li {
    border-bottom: 1px solid var(--border);
  }

  body.nav-open .nav-list > li > a {
    display: block;
    padding: 0.95rem 0.4rem;
    font-size: 1.05rem;
    font-weight: 800;
    white-space: normal;
  }

  body.nav-open .nav-parent {
    width: 100%;
    justify-content: space-between;
    gap: 0.35rem;
  }

  body.nav-open .nav-parent > a {
    flex: 1;
    padding: 0.95rem 0.4rem;
    font-size: 1.05rem;
    font-weight: 800;
    white-space: normal;
  }

  body.nav-open .sub-toggle {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    margin: 0.35rem 0;
    border: 1px solid var(--border);
    background: var(--background);
  }

  body.nav-open .has-sub > .sub-list,
  body.nav-open .has-sub:focus-within > .sub-list {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .has-sub.open > .sub-list {
    display: block !important;
    position: static;
    min-width: 0;
    max-height: none;
    overflow: visible;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: var(--background);
    border-radius: 12px;
    margin: 0 0 0.85rem;
    padding: 0.35rem;
  }

  body.nav-open .sub-list a {
    padding: 0.72rem 0.9rem 0.72rem 1.05rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    white-space: normal;
  }

  body.nav-open .sub-list li:last-child a {
    font-weight: 800;
    color: var(--color-primary);
  }

  body {
    padding-bottom: 4.8rem;
  }
}

.breadcrumb {
  padding: 1.15rem 0 0;
  font-size: 0.92rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--color-primary);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: var(--text-muted);
}

.nav a[aria-current="page"] {
  color: var(--color-primary);
}

.job-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.job-card p {
  font-weight: 400;
}

.job-card.plain {
  cursor: default;
}

.job-card.plain:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.item-cards .card {
  padding: 0.95rem 1rem;
}

.item-cards .card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.form-row {
  display: grid;
  gap: 0.75rem;
}

.contact-form {
  margin-top: 1.1rem;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form input[type="file"] {
  padding: 0.55rem;
}

.req {
  color: var(--color-orange-cta);
}

.optional,
.form-hint,
.form-consent {
  font-weight: 600;
  color: var(--text-muted);
}

.optional {
  font-size: 0.8rem;
}

.form-hint,
.form-consent {
  font-size: 0.88rem;
  margin: 0;
}

.call-card .hero-phone {
  font-size: 1.45rem;
}

.call-card .btn {
  width: 100%;
}

.contact-estimate {
  padding-bottom: 5.4rem;
}

@media (min-width: 700px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 479px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .header-actions .btn,
  .header-actions .btn-gold {
    display: none;
  }

  .sticky-call a {
    font-size: 0.9rem;
  }
}

@media (max-width: 979px) {
  .contact-estimate {
    padding-bottom: 6.4rem;
  }
}

/* =========================================================
   RESPONSIVE HARDENING: phones, tablets, small windows
   ========================================================= */
img,
svg,
video,
iframe {
  max-width: 100%;
}

/* Grid/flex children must be allowed to shrink (prevents content being cut off) */
@media (max-width: 979px) {
  .hero-grid,
  .home-hero-grid,
  .contact-estimate {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.hero-grid > *,
.home-hero-grid > *,
.form-row > *,
.form label {
  min-width: 0;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-size: 16px; /* stops iPhone auto-zoom on focus */
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

.hero-actions,
.home-chips,
.hero-chips,
.chips,
.breadcrumb,
.breadcrumbs {
  flex-wrap: wrap;
}

/* Header: logo shrinks, menu button never pushed off screen */
.nav-bar {
  min-width: 0;
}

.logo {
  min-width: 0;
}

.logo img {
  width: auto;
  max-width: 100%;
}

.menu-toggle {
  flex-shrink: 0;
}

/* Phones & small windows (< 700px) */
@media (max-width: 699px) {
  .form button[type="submit"],
  .form .btn[type="submit"] {
    width: 100%;
  }

  /* Header "Get a Free Estimate" button is already in the sticky bottom bar */
  .header-actions .btn,
  .header-actions .btn-gold {
    display: none;
  }

  /* Top bar was wrapping to 2 lines and eating screen height */
  .topbar {
    font-size: 0.78rem;
  }

  .topbar .wrap {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .topbar .wrap > :first-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
  }

  .topbar a {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Tap targets */
  .btn {
    min-height: 48px;
  }

  /* Keep last content visible above the fixed Call / Estimate bar */
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-call {
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 420px) {
  .logo span span {
    display: none; /* hide the small "GTA, ON" tag on narrow phones */
  }

  .topbar .wrap > :first-child {
    display: none; /* keep only the phone number in the top bar */
  }

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

/* Mobile menu: full width, and not hidden behind the bottom Call/Estimate bar */
@media (max-width: 979px) {
  body.nav-open .nav {
    justify-self: stretch;
    width: auto;
    max-height: calc(100dvh - 8.5rem);
  }

  body.nav-open .sticky-call {
    display: none;
  }
}

/* ---------- Social icons ---------- */
.social-heading {
  margin: 1.1rem 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.social-heading--dark { color: var(--navy); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-links li { margin: 0; }

.social-link {
  --brand: var(--color-primary);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.social-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.social-whatsapp { --brand: #25d366; }
.social-facebook { --brand: #1877f2; }
.social-linkedin { --brand: #0a66c2; }
.social-youtube  { --brand: #ff0000; }

.social-link:hover,
.social-link:focus-visible {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -8px var(--brand);
}
.social-link:hover svg,
.social-link:focus-visible svg { transform: scale(1.08); }
.social-link:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }
.social-link.is-pending { cursor: default; }

.social-links--light .social-link {
  color: var(--brand);
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 4px 12px rgba(31, 39, 45, .06);
}
.social-links--light .social-link:hover,
.social-links--light .social-link:focus-visible { color: #ffffff; background: var(--brand); border-color: var(--brand); }
.social-links--light .social-link:focus-visible { outline-color: var(--color-primary); }
.contact-social { margin-top: 1.25rem; }

.topbar-right { display: flex; align-items: center; gap: .9rem; }
.social-links--compact { display: none; gap: .3rem; }
.social-links--compact .social-link { width: 30px; height: 30px; border-radius: 8px; background: transparent; border-color: transparent; }
.social-links--compact .social-link svg { width: 15px; height: 15px; }
.social-links--compact .social-link:hover,
.social-links--compact .social-link:focus-visible { transform: translateY(-1px); box-shadow: none; }
@media (min-width: 980px) { .social-links--compact { display: flex; } }

/* Floating WhatsApp (≥ 700px) */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 45;
  display: none; align-items: center; gap: .55rem;
  height: 56px; padding: 0 14px; border-radius: 999px;
  background: #25d366; color: #063b1f; font-weight: 800; text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .7), 0 4px 10px rgba(0, 0, 0, .12);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.whatsapp-float svg { width: 28px; height: 28px; flex: 0 0 28px; }
.whatsapp-float-label { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .25s ease; }
.whatsapp-float:hover,
.whatsapp-float:focus-visible { background: #1ebe5a; transform: translateY(-3px); }
.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label { max-width: 140px; }
.whatsapp-float:focus-visible { outline: 3px solid #063b1f; outline-offset: 3px; }
@media (min-width: 700px) {
  .whatsapp-float { display: inline-flex; }
  .sticky-whatsapp { display: none; }
}
@media (min-width: 700px) and (max-width: 979px) { .whatsapp-float { bottom: 88px; } }

/* Mobile sticky bar with WhatsApp */
@media (max-width: 699px) {
  .sticky-call { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .45rem; }
  .sticky-call a { display: flex; align-items: center; justify-content: center; gap: .35rem; min-height: 48px; white-space: nowrap; }
  .sticky-call .sticky-whatsapp { background: #25d366; color: #063b1f; }
  .sticky-call .sticky-whatsapp:hover,
  .sticky-call .sticky-whatsapp:active { background: #1ebe5a; }
  .sticky-call .sticky-whatsapp svg { width: 16px; height: 16px; flex: 0 0 16px; }
}
@media (max-width: 360px) { .sticky-call a { font-size: .8rem; padding-inline: .3rem; } }

.sticky-whatsapp {
  background: #25d366;
  color: #063b1f;
}
.sticky-whatsapp svg { width: 16px; height: 16px; flex: 0 0 16px; }

@media (prefers-reduced-motion: reduce) {
  .social-link, .social-link svg, .whatsapp-float, .whatsapp-float-label { transition: none; }
  .social-link:hover, .social-link:focus-visible, .whatsapp-float:hover, .whatsapp-float:focus-visible { transform: none; }
}

/* ---------- Service-area map ---------- */
.btn-line-light {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn-line-light:hover,
.btn-line-light:focus-visible {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: #eef6f4;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(0, 107, 94, 0.18) 0, rgba(0, 107, 94, 0) 45%),
    linear-gradient(rgba(0, 107, 94, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 107, 94, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px, 28px 28px;
  box-shadow: 0 14px 34px rgba(31, 39, 45, 0.12);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
}

.map-load {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.map-load-pin {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 0 0 10px rgba(0, 107, 94, 0.12), 0 10px 24px rgba(0, 107, 94, 0.35);
  transition: transform 0.2s ease;
}

.map-load-title {
  margin-top: 0.6rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.map-load-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-load:hover .map-load-pin,
.map-load:focus-visible .map-load-pin {
  transform: translateY(-3px) scale(1.05);
}

.map-load:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: -6px;
  border-radius: 18px;
}

/* Homepage (dark section) card */
.area-map-card {
  display: grid;
  gap: 1.4rem;
  margin: 2rem 0 1.4rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.area-map-copy h3 {
  margin: 0 0 0.6rem;
  color: #ffffff;
  font-size: 1.4rem;
}

.area-map-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.area-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.area-map-card .map-embed {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Contact page section */
.contact-area-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.contact-area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.contact-area-list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.contact-area-list a:hover,
.contact-area-list a:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-teal-tint);
}

@media (min-width: 700px) {
  .contact-area-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .area-map-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    padding: 1.6rem;
  }

  .contact-area-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .map-embed {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 699px) {
  .area-map-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-load-pin {
    transition: none;
  }
}

/* ---------- Top bar social icons: brand colours on hover ---------- */
.topbar .social-link::before,
.topbar .social-link::after {
  content: none !important;
  display: none !important;
}

.topbar .social-links--compact .social-link {
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border-color: transparent;
}

.topbar .social-links--compact .social-whatsapp:hover,
.topbar .social-links--compact .social-whatsapp:focus-visible {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.topbar .social-links--compact .social-facebook:hover,
.topbar .social-links--compact .social-facebook:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.topbar .social-links--compact .social-linkedin:hover,
.topbar .social-links--compact .social-linkedin:focus-visible {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
}

.topbar .social-links--compact .social-youtube:hover,
.topbar .social-links--compact .social-youtube:focus-visible {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

.topbar .social-links--compact .social-link:hover,
.topbar .social-links--compact .social-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.topbar .social-links--compact .social-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.site-footer .social-whatsapp:hover,
.site-footer .social-whatsapp:focus-visible,
.contact-social .social-whatsapp:hover,
.contact-social .social-whatsapp:focus-visible {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.site-footer .social-facebook:hover,
.site-footer .social-facebook:focus-visible,
.contact-social .social-facebook:hover,
.contact-social .social-facebook:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.site-footer .social-linkedin:hover,
.site-footer .social-linkedin:focus-visible,
.contact-social .social-linkedin:hover,
.contact-social .social-linkedin:focus-visible {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
}

.site-footer .social-youtube:hover,
.site-footer .social-youtube:focus-visible,
.contact-social .social-youtube:hover,
.contact-social .social-youtube:focus-visible {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}
