:root {
  --navy: #0B1F3A;
  --navy-2: #132E52;
  --navy-3: #14345C;
  --charcoal: #2F3437;
  --steel: #7D8A95;
  --gold: #C8A24A;
  --white: #FFFFFF;
  --gray: #F4F6F8;
  --line: #DDE4EA;
  --shadow: 0 18px 42px rgba(11, 31, 58, 0.12);
  --shadow-soft: 0 10px 24px rgba(11, 31, 58, 0.08);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
}

.topbar strong {
  color: var(--white);
  font-weight: 700;
}

.topbar__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

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

.brand img {
  width: auto;
  height: 74px;
  max-width: 132px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
}

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

.primary-nav a[aria-current="page"]:not(.btn)::after,
.primary-nav a:not(.btn):hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle__lines {
  position: relative;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle__lines::before {
  top: -7px;
}

.nav-toggle__lines::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

.btn--gold:hover {
  background: #d7b455;
  border-color: #d7b455;
}

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

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

.btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero {
  position: relative;
  min-height: 645px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.96) 0%, rgba(11, 31, 58, 0.88) 42%, rgba(11, 31, 58, 0.5) 72%, rgba(11, 31, 58, 0.25) 100%),
    url("../images/hero-construction.png") center center / cover no-repeat;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 162, 74, 0.2), transparent);
}

.hero__inner {
  display: grid;
  align-items: center;
  min-height: 645px;
  padding: 78px 0;
}

.hero__content {
  width: min(760px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 1.04;
  font-weight: 900;
}

.hero__subhead {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.34rem;
  font-weight: 800;
}

.hero__copy {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  min-height: 112px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item__label {
  display: block;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  line-height: 1.28;
}

.section {
  padding: 92px 0;
}

.section--gray {
  background: var(--gray);
}

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

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section-header--compact {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2,
.section-title {
  margin: 0;
  color: var(--navy);
  font-size: 2.55rem;
  line-height: 1.12;
  font-weight: 900;
}

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

.section-intro {
  color: #5f6a71;
  font-size: 1.04rem;
}

.section--navy .section-intro {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 3px;
  background: var(--gold);
}

.card h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.25;
}

.card p {
  color: #59646b;
}

.card__link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.service-card {
  min-height: 224px;
}

.audience-card {
  min-height: 255px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.project-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--navy-2);
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.property-services-feature {
  margin-bottom: 34px;
}

.project-card__body {
  padding: 24px;
}

.project-card__type {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.28;
}

.project-card p {
  color: #59646b;
}

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

.feature-panel {
  padding: 34px;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(140deg, var(--navy), var(--navy-3));
  box-shadow: var(--shadow);
}

.feature-panel h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.cta-band {
  padding: 68px 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(11, 31, 58, 0.98), rgba(19, 46, 82, 0.95)),
    linear-gradient(45deg, transparent 0 40%, rgba(200, 162, 74, 0.16) 40% 42%, transparent 42% 100%);
}

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

.cta-band h2 {
  margin: 0 0 8px;
  font-size: 2.25rem;
  line-height: 1.15;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(11, 31, 58, 0.98), rgba(19, 46, 82, 0.94)),
    linear-gradient(45deg, rgba(200, 162, 74, 0.14) 0 20%, transparent 20% 100%);
}

.page-hero__inner {
  padding: 90px 0 78px;
}

.page-hero__content {
  max-width: 860px;
}

.page-hero p {
  max-width: 790px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-group {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-group h2 {
  font-size: 1.55rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 22px;
}

.grid--3 .service-list {
  grid-template-columns: 1fr;
}

.service-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: #556168;
}

.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.value-card {
  padding: 26px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.value-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.12rem;
}

.info-band {
  padding: 34px;
  border: 1px solid rgba(200, 162, 74, 0.42);
  border-radius: var(--radius);
  background: #fffaf0;
}

.info-band h2,
.info-band h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.55fr);
  gap: 32px;
  align-items: start;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.area-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--navy);
  font-weight: 900;
}

.faq-item p {
  padding: 0 26px 24px;
  color: #59646b;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 34px;
  align-items: start;
}

.estimate-form {
  display: grid;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd8df;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--charcoal);
  background: var(--white);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(200, 162, 74, 0.28);
  border-color: var(--gold);
}

.form-note {
  display: none;
  padding: 14px 16px;
  border: 1px solid rgba(200, 162, 74, 0.48);
  border-radius: var(--radius);
  color: var(--navy);
  background: #fffaf0;
  font-weight: 700;
}

.form-note.is-visible {
  display: block;
}

.contact-card {
  padding: 32px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1.55rem;
}

.contact-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-card dt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #07182d;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  padding: 56px 0;
}

.footer-brand img {
  width: 190px;
  max-height: none;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 520px;
}

.footer-meta {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  color: var(--white);
  font-weight: 800;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  align-content: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.site-footer__bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .brand img {
    height: 68px;
    max-width: 122px;
  }

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

  .trust-item:nth-child(4) {
    border-left: 1px solid var(--line);
  }

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

  .project-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .topbar__meta {
    justify-content: flex-start;
  }

  .main-header__inner {
    min-height: 72px;
  }

  .brand img {
    height: 58px;
    max-width: 108px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 15px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 4px;
  }

  .primary-nav .btn {
    margin-top: 10px;
  }

  .hero,
  .hero__inner {
    min-height: 620px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(11, 31, 58, 0.98), rgba(11, 31, 58, 0.82)),
      url("../images/hero-construction.png") center center / cover no-repeat;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.65rem;
    line-height: 1.08;
  }

  .hero__subhead {
    font-size: 1.08rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-header,
  .split,
  .service-area-grid,
  .contact-layout,
  .site-footer__main,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .section h2,
  .section-title,
  .cta-band h2 {
    font-size: 2rem;
  }

  .grid--3,
  .grid--4,
  .project-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    gap: 22px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero,
  .hero__inner {
    min-height: 595px;
  }

  .hero__inner {
    padding: 58px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.28rem;
  }

  .hero__actions,
  .section-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip__grid,
  .grid--2,
  .process-grid,
  .service-list,
  .area-list,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .card,
  .service-group,
  .estimate-form,
  .contact-card,
  .feature-panel {
    padding: 24px;
  }

  .page-hero__inner {
    padding: 66px 0 58px;
  }

  .site-footer__bottom .container {
    flex-direction: column;
  }
}
