:root {
  --ink: #111614;
  --muted: #53615c;
  --navy: #102632;
  --navy-2: #183746;
  --steel: #e6eceb;
  --concrete: #f4f6f3;
  --paper: #ffffff;
  --gold: #d8a73f;
  --gold-2: #f1cf72;
  --line: #d6ddd9;
  --danger: #7f1d1d;
  --radius: 8px;
  --shadow: 0 18px 42px rgba(16, 38, 50, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--navy);
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: rgba(16, 38, 50, 0.97);
  box-shadow: 0 10px 28px rgba(16, 38, 50, 0.24);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #091922;
  font-size: 0.88rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #eef5f2;
}

.topbar svg {
  width: 16px;
  height: 16px;
  color: var(--gold-2);
}

.nav-shell {
  width: min(1220px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 156px;
  height: auto;
}

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

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-2);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 290px;
  display: none;
  padding: 0.45rem;
  background: var(--paper);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dropdown-panel a {
  display: block;
  padding: 0.75rem 0.85rem;
  color: var(--navy);
  border-radius: 6px;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: #fbf2d9;
  color: var(--navy);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  display: block;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: #fff;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.76rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 820;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn svg,
.contact-link svg,
.icon-box svg,
.feature-card svg,
.issue-grid svg,
.text-link svg,
.area-card svg,
.mini-steps svg,
.scope-panel svg,
.mobile-cta svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn-gold {
  color: #10150f;
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.btn-gold:hover {
  background: var(--gold);
}

.btn-navy {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-2);
}

.btn-outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.68);
}

.full {
  width: 100%;
}

.hero,
.sub-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero {
  min-height: min(760px, calc(100vh - 114px));
  display: grid;
  align-items: center;
  padding: 4rem 0;
}

.sub-hero {
  padding: 5.2rem 0;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 25, 34, 0.96), rgba(9, 25, 34, 0.8) 45%, rgba(9, 25, 34, 0.28)),
    linear-gradient(0deg, rgba(9, 25, 34, 0.42), transparent 34%);
}

.hero-grid,
.sub-hero-inner {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: 2.5rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
}

h1,
.section-head h2,
.split h2,
.cta-band h2,
.contact-panel h2,
.contact-form h2 {
  font-family: "Arial Black", "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(2.55rem, 4.75vw, 4.65rem);
}

.sub-hero h1 {
  max-width: 980px;
  font-size: clamp(2.25rem, 5.2vw, 4.75rem);
}

.hero-text,
.sub-hero p,
.section-head p,
.cta-band p {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: #eef5f2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.45rem 0 1.35rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.68rem;
  border: 1px solid rgba(241, 207, 114, 0.56);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 760;
}

.trust-strip svg {
  width: 18px;
  height: 18px;
  color: var(--gold-2);
}

.inspection-panel {
  padding: 1.35rem;
  border: 1px solid rgba(241, 207, 114, 0.45);
  border-radius: var(--radius);
  background: rgba(9, 25, 34, 0.78);
  box-shadow: var(--shadow);
}

.inspection-panel img {
  width: 180px;
  margin-bottom: 1rem;
}

.inspection-panel p {
  margin: 0 0 1rem;
  color: #eef5f2;
}

.mini-steps {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.mini-steps li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 760;
}

.mini-steps svg {
  color: var(--gold-2);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #dfe8e5;
  font-size: 0.92rem;
  font-weight: 760;
}

.breadcrumbs a {
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.section {
  padding: 5rem 0;
}

.concrete-band,
.intro-band {
  background: var(--concrete);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2,
.split h2,
.cta-band h2,
.contact-panel h2,
.contact-form h2 {
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  color: var(--navy);
}

.section-head p,
.split p,
.service-card p,
.feature-card p,
.area-card p,
.detail-grid p,
.scope-panel p,
.contact-panel p,
.contact-form p,
.faq-grid p {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-grid article {
  min-height: 150px;
  padding: 1.25rem;
  background: #fff;
}

.proof-grid h2 {
  font-size: 1.12rem;
  color: var(--navy);
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card,
.feature-card,
.area-card,
.detail-grid article,
.scope-panel,
.contact-panel,
.contact-form,
.faq-grid details,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 38, 50, 0.08);
}

.service-card {
  overflow: hidden;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

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

.media-link {
  display: block;
}

.service-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.1rem;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: #10150f;
  background: var(--gold-2);
  border-radius: var(--radius);
}

.service-card h3 {
  font-size: 1.22rem;
  color: var(--navy);
}

.service-card h3 a {
  text-decoration: none;
}

.text-link,
.area-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  color: #7a5615;
  font-weight: 820;
  text-decoration-thickness: 2px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 3rem;
}

.reverse > :first-child {
  order: 2;
}

.feature-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.issue-grid,
.feature-grid,
.area-grid,
.detail-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

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

.issue-grid div,
.issue-list span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  font-weight: 760;
}

.issue-grid svg,
.issue-list svg {
  color: var(--gold);
}

.issue-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.area-preview {
  background: linear-gradient(135deg, #fff 0%, #fff 50%, #edf1ee 50%, #edf1ee 100%);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.area-list span {
  padding: 0.85rem;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 38, 50, 0.08);
  font-weight: 780;
  color: var(--navy);
}

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

.feature-card,
.area-card,
.detail-grid article,
.process-grid article {
  padding: 1.2rem;
}

.feature-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.feature-card h3,
.detail-grid h3,
.scope-panel h3,
.process-grid h3 {
  font-size: 1.18rem;
  color: var(--navy);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: #7a5615;
  font-weight: 900;
}

.area-grid {
  grid-template-columns: repeat(4, 1fr);
}

.area-card h2 {
  font-size: 1.2rem;
  color: var(--navy);
}

.scope-panel {
  padding: 1.25rem;
  background: var(--navy);
  color: #fff;
}

.scope-panel h3 {
  color: #fff;
}

.scope-panel ul,
.contact-note ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.scope-panel li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #eef5f2;
}

.scope-panel svg {
  color: var(--gold-2);
}

.faq-section {
  background: #fff;
}

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

.faq-grid details {
  padding: 0;
}

.faq-grid summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--navy);
  font-weight: 860;
}

.faq-grid p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 1.35rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  font-weight: 820;
  text-decoration: none;
}

.contact-link.large {
  width: 100%;
  padding: 0.85rem;
  margin: 0.45rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
}

.contact-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-note h3 {
  color: var(--navy);
}

.contact-note li {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 780;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid #9da9a5;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(216, 167, 63, 0.2);
  outline: 0;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.cta-band {
  padding: 4rem 0;
  color: #fff;
  background: var(--navy);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.cta-band h2 {
  color: #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.site-footer {
  padding-top: 3.75rem;
  color: #fff;
  background: #07131a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr 1.05fr;
  gap: 2rem;
}

.site-footer img {
  width: 200px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--gold-2);
  font-size: 1rem;
}

.site-footer p {
  color: #dce5e1;
}

.site-footer a {
  display: block;
  margin: 0.42rem 0;
  color: #fff;
  text-decoration: none;
}

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

.license-list {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
}

.license-list span {
  display: block;
  color: #dce5e1;
  font-size: 0.92rem;
  font-weight: 760;
}

.social-block {
  margin-top: 1.3rem;
}

.social-block h2 {
  margin-bottom: 0.7rem;
}

.social-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.site-footer .social-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.58rem;
  margin: 0;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: block;
}

.social-link span {
  line-height: 1.15;
  white-space: nowrap;
}

.social-link-thumbtack .brand-icon {
  color: #009fd9;
}

.social-link-instagram .brand-icon {
  color: #e4405f;
}

.social-link-facebook .brand-icon {
  color: #0866ff;
}

.social-link-yelp .brand-icon {
  color: #d32323;
}

.site-footer .social-link:hover,
.site-footer .social-link:focus-visible {
  color: #fff;
  border-color: rgba(241, 207, 114, 0.82);
  background: rgba(241, 207, 114, 0.12);
  transform: translateY(-1px);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1rem;
  text-align: center;
  color: #c8d2ce;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-cta {
  display: none;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 26, 0.82);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  height: min(780px, calc(100vh - 32px));
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-panel header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: #fff;
  background: var(--navy);
  border-bottom: 4px solid var(--gold);
}

.modal-panel h2 {
  font-size: 1.12rem;
}

.modal-panel button {
  width: 44px;
  height: 44px;
  color: #fff;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.modal-panel iframe {
  width: 100%;
  height: calc(100% - 76px);
  border: 0;
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 114px 0 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    overflow: auto;
    background: var(--navy);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a,
  .site-nav button {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
  }

  .dropdown-panel {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0.4rem 0 0.8rem;
    box-shadow: none;
  }

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

  .inspection-panel {
    display: none;
  }

  .service-grid,
  .proof-grid,
  .feature-grid,
  .detail-grid,
  .process-grid,
  .area-grid,
  .issue-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .shell,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

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

  .topbar a[href^="mailto"],
  .topbar span {
    display: none;
  }

  .brand img {
    width: 128px;
  }

  .site-nav {
    inset: 110px 0 0;
  }

  .hero {
    min-height: auto;
    padding: 3.2rem 0 2.7rem;
  }

  .sub-hero {
    padding: 4.25rem 0;
  }

  h1 {
    font-size: clamp(1.95rem, 8.6vw, 2.45rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .proof-grid,
  .feature-grid,
  .detail-grid,
  .process-grid,
  .area-grid,
  .issue-grid,
  .faq-grid,
  .footer-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .hero .trust-strip {
    display: none;
  }

  .section {
    padding: 3.6rem 0;
  }

  .reverse > :first-child {
    order: initial;
  }

  .mobile-cta {
    position: sticky;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #07131a;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-cta a,
  .mobile-cta button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: #fff;
    background: var(--navy);
    text-decoration: none;
    font-weight: 850;
  }

  .mobile-cta button {
    cursor: pointer;
  }

  .modal {
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

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