:root {
  --brand-navy: #07264f;
  --brand-blue: #0e67b2;
  --brand-sky: #20b8cf;
  --brand-ink: #142235;
  --brand-soft: #f3f7fb;
  --brand-gold: #f1a526;
  --brand-mist: #e6eef6;
  --card: #ffffff;
  --border: rgba(13, 42, 76, 0.12);
  --shadow: 0 20px 52px rgba(14, 38, 73, 0.13);
  --shadow-soft: 0 12px 30px rgba(14, 38, 73, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--brand-ink);
  background: #f7f9fc;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.top-strip {
  background: #061f43;
  color: #fff;
  font-size: 0.8rem;
}

.top-strip__content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
}

.top-strip__content p {
  margin: 0;
}

.top-strip a {
  font-weight: 600;
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(13, 42, 76, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 0.3rem 0;
}

.brand {
  width: 150px;
  flex: 0 0 auto;
}

.brand img,
.footer-logo img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 999px;
  padding: 0.44rem 0.58rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: var(--brand-blue);
  background: rgba(14, 103, 178, 0.08);
}

.main-nav a.is-active {
  color: var(--brand-blue);
  background: rgba(14, 103, 178, 0.1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand-navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn {
  border: 0;
  border-radius: 8px;
  padding: 0.78rem 1.08rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), #09528f);
  box-shadow: 0 12px 24px rgba(14, 103, 178, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(14, 103, 178, 0.3);
}

.btn--small {
  padding: 0.58rem 0.88rem;
}

.btn--ghost {
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(4, 47, 114, 0.22);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(660px, calc(100vh - 110px));
  padding: 6.6rem 0 5.4rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 20, 44, 0.82), rgba(4, 47, 114, 0.58), rgba(4, 47, 114, 0.1)),
    url("assets/realistic-exterior-team.jpg") center / cover;
}

.hero__grid {
  display: block;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0 3.6rem;
  background: linear-gradient(135deg, rgba(4, 47, 114, 0.07), rgba(62, 197, 255, 0.12));
}

.page-hero p {
  max-width: 70ch;
}

.eyebrow {
  margin: 0 0 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-blue);
}

h1,
h2,
h3 {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.015em;
  line-height: 1.08;
  margin: 0 0 0.7rem;
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.35rem;
}

.hero__content p {
  margin: 0;
  max-width: 64ch;
}

.hero__brand-quote {
  margin-top: 0.9rem;
  max-width: 38ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  position: relative;
}

.hero__brand-quote::after {
  content: "";
  display: block;
  margin-top: 0.55rem;
  width: min(320px, 100%);
  height: 4px;
  border-radius: 8px;
  background: var(--brand-gold);
  opacity: 0.92;
}

.hero__actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__highlights {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.hero__highlights li {
  position: relative;
  padding-left: 1.2rem;
  font-weight: 500;
}

.hero__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.hero__content {
  max-width: 720px;
}

.hero .eyebrow {
  color: #9be4ff;
}

.hero h1 {
  max-width: 780px;
}

.hero-card {
  display: none;
}

.hero-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.97));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.hero-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.hero-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  border: 1px solid rgba(4, 47, 114, 0.16);
}

.hero-card__stats {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-card__stats article {
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem;
  border: 1px solid rgba(4, 47, 114, 0.12);
}

.hero-card__stats strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.9rem;
  color: var(--brand-navy);
  line-height: 1;
}

.hero-card__stats span {
  font-size: 0.88rem;
  color: rgba(11, 26, 47, 0.8);
}

.section {
  padding: 4.7rem 0;
}

.section--light {
  background: var(--brand-soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.8rem;
}

.section-head p {
  margin-top: 0;
}

.section-cta {
  margin-top: 1.25rem;
}

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

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(4, 47, 114, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card--media {
  padding: 0;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.service-card__content {
  padding: 1rem 1rem 1.1rem;
}

.service-card__content p {
  margin: 0;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(4, 47, 114, 0.14);
}

.service-card h3 {
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.service-card h3::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--brand-gold);
  flex: 0 0 auto;
}

.service-card p {
  margin: 0;
}

.bullet-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

.bullet-list li {
  margin-bottom: 0.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

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

.gallery-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 32px rgba(4, 47, 114, 0.1);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 0.7rem 0.8rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-navy);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.timeline-item p {
  margin: 0;
}

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

.review {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: #fff;
}

.review p {
  margin-top: 0;
}

.review strong {
  color: var(--brand-navy);
}

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

.metric-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: #fff;
  text-align: center;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  font-family: "Rajdhani", sans-serif;
  color: var(--brand-navy);
  line-height: 1;
}

.metric-card span {
  font-size: 0.9rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.contact-list a {
  color: var(--brand-blue);
  font-weight: 600;
}

.steps-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
  margin-top: 1rem;
}

.steps-box h3 {
  margin-bottom: 0.5rem;
}

.steps-box ol {
  margin: 0;
  padding-left: 1.1rem;
}

.steps-box li {
  margin-bottom: 0.35rem;
}

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

.job-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.15rem;
}

.job-meta {
  margin-top: -0.1rem;
  margin-bottom: 0.6rem;
  color: rgba(11, 26, 47, 0.75);
  font-size: 0.92rem;
  font-weight: 600;
}

.quote-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 1px solid rgba(4, 47, 114, 0.18);
  border-radius: 12px;
  padding: 0.72rem 0.84rem;
  font: inherit;
  color: var(--brand-ink);
  background: #fff;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(62, 197, 255, 0.42);
  border-color: var(--brand-blue);
}

.form-note {
  min-height: 1.3rem;
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  font-size: 1.7rem;
  margin-top: 1.4rem;
}

.cta-band {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(140deg, #ffffff, rgba(62, 197, 255, 0.13));
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-band p {
  margin: 0;
  max-width: 60ch;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: #062755;
  color: #dcecff;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1.15fr;
  gap: 1.8rem;
  align-items: start;
  padding: 2.4rem 0 1.8rem;
}

.footer-brand {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: #fff;
}

.footer-grid p {
  margin: 0;
}

.footer-about {
  display: grid;
  gap: 0.78rem;
}

.footer-logo {
  display: block;
  width: 132px;
  background: #fff;
  border-radius: 8px;
  padding: 0.42rem;
}

.footer-heading {
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
}

.footer-links {
  display: grid;
  gap: 0.48rem;
}

.footer-links a {
  color: #dcecff;
  font-weight: 600;
  width: fit-content;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.footer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.footer-services a {
  border: 1px solid rgba(220, 236, 255, 0.18);
  border-radius: 999px;
  color: #f5fbff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.34rem 0.58rem;
}

.footer-services a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.footer-contact {
  display: grid;
  gap: 0.55rem;
}

.footer-contact-link,
.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f5fbff;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(62, 197, 255, 0.14);
  color: #82dbff;
  flex: 0 0 auto;
}

.footer-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.btn--footer {
  margin-top: 0.35rem;
  width: fit-content;
  background: #fff;
  color: var(--brand-navy);
  box-shadow: none;
}

.footer-bottom {
  border-top: 1px solid rgba(220, 236, 255, 0.16);
  padding: 0.85rem 0;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid,
  .split-section,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }

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

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

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

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

  .cta-band {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .top-strip__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.8rem 1.2rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 0.55rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 4.3rem;
  }

  .section,
  .page-hero {
    padding: 3.9rem 0;
  }

  .container {
    width: min(1120px, calc(100% - 1.45rem));
  }

  .service-grid,
  .service-grid--wide,
  .timeline,
  .review-grid,
  .gallery-grid,
  .gallery-grid--three,
  .metric-grid,
  .job-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    width: 180px;
  }

  .main-nav .btn {
    width: fit-content;
  }
}

/* Visual refresh */
:root {
  --brand-navy: #092f57;
  --brand-blue: #1264a3;
  --brand-sky: #2db7c9;
  --brand-ink: #172033;
  --brand-muted: #5b697a;
  --brand-soft: #eef5f8;
  --brand-gold: #d9911e;
  --brand-mist: #dce7ef;
  --card: #ffffff;
  --border: rgba(23, 32, 51, 0.11);
  --shadow: 0 22px 58px rgba(17, 42, 73, 0.13);
  --shadow-soft: 0 14px 34px rgba(17, 42, 73, 0.09);
  --radius: 8px;
  --section-space: clamp(3.9rem, 7vw, 6.4rem);
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
p,
a,
li,
.eyebrow {
  letter-spacing: 0;
}

body {
  color: var(--brand-ink);
  background:
    linear-gradient(180deg, rgba(238, 245, 248, 0.76) 0, rgba(247, 249, 252, 0) 22rem),
    #f7f9fc;
  font-size: 16px;
}

body::selection {
  color: #fff;
  background: var(--brand-blue);
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
}

.top-strip {
  background: #082744;
  font-size: 0.82rem;
}

.top-strip__content {
  align-items: center;
  padding: 0.46rem 0;
}

.top-strip a {
  color: #dff8ff;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(17, 42, 73, 0.07);
}

.nav-wrap {
  min-height: 116px;
}

.brand {
  width: clamp(150px, 13vw, 176px);
  height: 104px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(17, 42, 73, 0.08));
}

.footer-logo img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.main-nav {
  gap: 0.32rem;
}

.main-nav a {
  color: #243248;
  font-size: 0.86rem;
  padding: 0.56rem 0.72rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--brand-navy);
  background: rgba(18, 100, 163, 0.09);
}

.main-nav .btn {
  color: #fff;
}

.main-nav .btn:hover,
.main-nav .btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, #1474bd, #0a4779);
}

.menu-toggle {
  border-radius: var(--radius);
}

.menu-toggle:hover {
  background: rgba(18, 100, 163, 0.08);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  min-height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1474bd, #0a4779);
  box-shadow: 0 14px 26px rgba(18, 100, 163, 0.23);
}

.btn:hover {
  box-shadow: 0 18px 36px rgba(18, 100, 163, 0.29);
}

.btn--ghost {
  color: var(--brand-navy);
  background: #fff;
  border: 1px solid rgba(18, 100, 163, 0.18);
}

.hero {
  isolation: isolate;
  min-height: min(720px, calc(100vh - 94px));
  padding: clamp(5.2rem, 10vw, 8rem) 0 clamp(4.5rem, 8vw, 6.6rem);
  background:
    linear-gradient(90deg, rgba(5, 20, 38, 0.92) 0%, rgba(8, 47, 87, 0.72) 46%, rgba(8, 47, 87, 0.15) 78%),
    linear-gradient(0deg, rgba(5, 20, 38, 0.42), rgba(5, 20, 38, 0)),
    url("assets/realistic-exterior-team.jpg") center 42% / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(5, 20, 38, 0.34), rgba(5, 20, 38, 0));
}

.hero__grid,
.hero__content {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 760px;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #a8ecff;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6.1vw, 5.25rem);
}

.hero__content > p:not(.eyebrow):not(.hero__brand-quote),
.hero__highlights li,
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.hero__brand-quote {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 700;
  color: #fff;
}

.hero__brand-quote::after {
  width: 156px;
  height: 3px;
}

.hero__actions {
  gap: 0.82rem;
  margin-top: 1.6rem;
}

.hero__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.95);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.hero__highlights li {
  padding: 0.46rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
}

.hero__highlights li::before {
  display: none;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 690px;
  margin-top: 1.55rem;
}

.hero__proof article {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero__proof strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  color: #fff;
}

.hero__proof span {
  display: block;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.page-hero {
  isolation: isolate;
  padding: clamp(4.7rem, 8vw, 6.8rem) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 20, 38, 0.9), rgba(8, 47, 87, 0.66), rgba(8, 47, 87, 0.18)),
    url("assets/realistic-exterior-team.jpg") center 48% / cover;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
}

.page-hero p {
  font-size: 1.03rem;
}

body[data-page="services"] .page-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 20, 38, 0.9), rgba(8, 47, 87, 0.66), rgba(8, 47, 87, 0.18)),
    url("assets/realistic-deck-fence-stain.jpg");
}

body[data-page="portfolio"] .page-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 20, 38, 0.9), rgba(8, 47, 87, 0.66), rgba(8, 47, 87, 0.18)),
    url("assets/realistic-cabinet-painting.jpg");
}

body[data-page="careers"] .page-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 20, 38, 0.9), rgba(8, 47, 87, 0.66), rgba(8, 47, 87, 0.18)),
    url("assets/realistic-exterior-team.jpg");
}

body[data-page="quote"] .page-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 20, 38, 0.9), rgba(8, 47, 87, 0.66), rgba(8, 47, 87, 0.18)),
    url("assets/realistic-pressure-washing.jpg");
}

.eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h2 {
  max-width: 850px;
}

h3 {
  font-size: 1.42rem;
}

.section {
  padding: var(--section-space) 0;
}

.section--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0)),
    var(--brand-soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(1.45rem, 3vw, 2.35rem);
}

.section-head p:last-child {
  color: var(--brand-muted);
}

.section-cta {
  margin-top: 1.55rem;
}

.service-grid,
.gallery-grid,
.timeline,
.review-grid,
.metric-grid,
.job-grid {
  gap: 1.18rem;
}

.service-card,
.gallery-card,
.timeline-item,
.review,
.metric-card,
.job-card,
.steps-box,
.quote-form,
.cta-band {
  border-color: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card,
.timeline-item,
.review,
.metric-card,
.job-card,
.steps-box,
.quote-form {
  background: rgba(255, 255, 255, 0.96);
}

.service-card {
  position: relative;
  overflow: hidden;
}

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

.service-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
}

.service-card__media {
  background: #dce7ef;
  overflow: hidden;
}

.service-card__media img,
.gallery-card img {
  width: 100%;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.service-card__media img {
  aspect-ratio: 16 / 10;
}

.service-card--featured .service-card__media img {
  height: 100%;
  min-height: 318px;
  aspect-ratio: auto;
}

.service-card:hover .service-card__media img,
.gallery-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.05);
}

.service-card__content {
  padding: 1.15rem 1.15rem 1.25rem;
}

.service-card h3 {
  align-items: flex-start;
}

.service-card h3::before {
  width: 4px;
  height: 1.45rem;
  border-radius: 999px;
  margin-top: 0.08rem;
}

.service-card p,
.timeline-item p,
.review p,
.job-card p,
.metric-card span,
.steps-box li,
.bullet-list li,
.contact-list li {
  color: var(--brand-muted);
}

.bullet-list {
  padding-left: 1.08rem;
}

.gallery-card {
  position: relative;
  isolation: isolate;
  min-height: 240px;
}

.gallery-card img {
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 3.6rem 1rem 0.95rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(5, 20, 38, 0.86), rgba(5, 20, 38, 0));
}

.portfolio-gallery .gallery-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-gallery .gallery-card:first-child img {
  aspect-ratio: auto;
}

.timeline {
  position: relative;
}

.timeline-item {
  padding: 1.24rem;
}

.timeline-item span {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
}

.review {
  position: relative;
  padding: 1.35rem;
}

.review::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: var(--brand-gold);
}

.metric-card {
  padding: 1.3rem;
}

.metric-card strong {
  color: var(--brand-blue);
}

.split-section {
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split-section > div > p,
.contact-copy,
.legal-copy {
  color: var(--brand-muted);
}

.contact-list {
  gap: 0.65rem;
}

.contact-list li {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.steps-box {
  padding: 1.15rem;
}

.quote-form {
  padding: clamp(1.15rem, 3vw, 1.65rem);
}

.quote-form label {
  color: #243248;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border-color: rgba(23, 32, 51, 0.14);
  border-radius: var(--radius);
  background: #fbfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 0;
  background: #fff;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(45, 183, 201, 0.16);
}

.cta-band {
  padding: clamp(1.25rem, 3.2vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 248, 0.86)),
    #fff;
}

.site-footer {
  background: #082744;
}

.footer-grid {
  gap: clamp(1.3rem, 3vw, 2.2rem);
}

.footer-logo {
  width: 150px;
  border: 1px solid rgba(220, 236, 255, 0.22);
}

.footer-services a {
  border-radius: var(--radius);
}

.footer-icon {
  border-radius: var(--radius);
}

@media (max-width: 1080px) {
  .service-card--featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .service-card--featured .service-card__media img {
    min-height: 280px;
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 1.35rem));
  }

  .top-strip__content {
    gap: 0.12rem;
  }

  .nav-wrap {
    min-height: 106px;
  }

  .brand {
    width: clamp(142px, 38vw, 166px);
    height: 96px;
  }

  .main-nav {
    padding: 0.85rem 1rem 1rem;
    box-shadow: 0 18px 28px rgba(17, 42, 73, 0.12);
  }

  .main-nav a {
    padding: 0.62rem 0.68rem;
  }

  .main-nav .btn,
  .hero__actions .btn,
  .quote-form .btn,
  .cta-band .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 4.35rem 0 3.7rem;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 15vw, 3.7rem);
  }

  .hero__actions {
    display: grid;
  }

  .hero__highlights,
  .hero__proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__proof article {
    padding: 0.72rem 0.8rem;
  }

  .page-hero {
    padding: 4.1rem 0;
  }

  .service-card--featured,
  .portfolio-gallery .gallery-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card--featured {
    display: block;
  }

  .service-card--featured .service-card__media img,
  .gallery-card img,
  .portfolio-gallery .gallery-card:first-child img {
    min-height: 225px;
    aspect-ratio: 4 / 3;
  }

  .gallery-card figcaption {
    padding: 3rem 0.9rem 0.85rem;
  }

  .cta-band {
    gap: 1rem;
  }

  .footer-grid {
    gap: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
