:root {
  --ink: #000000;
  --forest: #0751a5;
  --moss: #8cc04c;
  --green: #8cc04c;
  --blue: #0751a5;
  --gold: #8cc04c;
  --clay: #0751a5;
  --paper: #ffffff;
  --mist: #ffffff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  --font-main: "Bricolage Grotesque", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.6;
}

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

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

.skip-link {
  background: var(--blue);
  color: var(--white);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 30;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar {
  align-items: center;
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  display: flex;
  font-size: 0.84rem;
  gap: 1rem;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.35rem 1rem;
}



.areas-ticker {
  align-items: center;
  display: inline-flex;
  flex: 0 1 min(58vw, 56rem);
  gap: 0.5rem;
  min-width: 16rem;
  overflow: hidden;
}

.ticker-window {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.ticker-track {
  animation: areas-ticker 42s linear infinite;
  display: inline-flex;
  gap: 1.6rem;
  min-width: max-content;
  white-space: nowrap;
}


.ticker-track .ticker-item {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  gap: 0.45rem;
  transition: color 180ms ease;
}

.ticker-track .ticker-item i {
  color: var(--green);
  font-size: 0.9em;
  line-height: 1;
}

@keyframes areas-ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.topbar > span,
.topbar a {
  align-items: center;
  display: inline-flex;
  gap: 0.42rem;
}

.topbar i {
  color: var(--green);
  font-size: 0.92em;
  line-height: 1;
}
.navbar {
  align-items: center;
  background: var(--blue);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 5rem;
  padding: 0 1.25rem;
}

.brand {
  align-items: center;
  background: transparent;
  border-radius: 0.7rem;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  overflow: visible;
  padding: 0;
}

.brand img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 9.4rem;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.nav-links a {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.nav-item > a:hover,
.nav-item > a:focus-visible {
  color: var(--green);
}

.nav-item {
  position: relative;
}

.has-menu::after {
  content: "";
  display: block;
  height: 0.8rem;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.service-menu {
  background: var(--white);
  border: 1px solid rgba(7, 81, 165, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  display: none;
  left: 0;
  min-width: 14rem;
  padding: 0.5rem 0;
  position: absolute;
  top: calc(100% + 0.45rem);
  z-index: 25;
}

.service-menu a {
  border-bottom: 1px solid rgba(7, 81, 165, 0.12);
  color: var(--ink);
  display: block;
  padding: 0.72rem 1rem;
  white-space: nowrap;
}

.service-menu a:hover,
.service-menu a:focus-visible {
  color: var(--blue);
}

.service-menu a:last-child {
  border-bottom: 0;
}

.has-menu:hover .service-menu,
.has-menu:focus-within .service-menu {
  display: block;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.service-grid a:hover,
.service-grid a:focus-visible {
  color: var(--blue);
}

.nav-cta {
  align-items: center;
  background: var(--green);
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 0.82rem 1.05rem;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: transparent;
  border-color: var(--green);
  box-shadow: inset 0 0 0 2px var(--white);
  color: var(--white);
}

.hero {
  align-items: end;
  color: var(--white);
  display: grid;
  min-height: calc(100vh - 7.4rem);
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 81, 165, 0.9), rgba(7, 81, 165, 0.42) 58%, rgba(7, 81, 165, 0.22)),
    linear-gradient(0deg, rgba(7, 81, 165, 0.72), rgba(7, 81, 165, 0));
}

.hero-content {
  max-width: min(1280px, 100%);
  padding: 8vh clamp(1.25rem, 5vw, 5rem);
  position: relative;
}

.eyebrow {
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  margin-bottom: 1.2rem;
  max-width: 11ch;
}

.hero h1 {
  max-width: none;
}

@media (min-width: 1120px) {
  .hero h1 {
    white-space: nowrap;
  }
}

h2 {
  color: var(--forest);
  font-size: clamp(2.05rem, 4vw, 4.2rem);
  margin-bottom: 1rem;
}

h3 {
  color: var(--forest);
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  max-width: 720px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  align-items: center;
  align-self: flex-start;
  border-radius: 999px;
  border: 2px solid transparent;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.88rem 1.15rem;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
  width: max-content;
  max-width: 100%;
}


.button i,
.nav-cta i {
  flex: 0 0 auto;
  font-size: 0.95em;
  line-height: 1;
  margin-right: 0.15rem;
}

.button span,
.nav-cta span {
  min-width: 0;
}
.button-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 2px var(--white);
  color: var(--white);
}

.intro-band {
  background: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  background: var(--mist);
  padding: 1.6rem clamp(1rem, 4vw, 3rem);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1.1;
}

.stat span {
  color: rgba(0, 0, 0, 0.74);
  margin-top: 0.35rem;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  margin: 0 auto;
  max-width: 1240px;
}

.section-copy p,
.section-heading p,
.about-card p,
.contact-copy p {
  color: rgba(0, 0, 0, 0.74);
  font-size: 1.05rem;
}

.section-heading {
  margin: 0 auto 2.2rem;
  max-width: 820px;
  text-align: center;
}

.image-stack {
  min-height: 34rem;
  position: relative;
}

.image-main,
.image-float {
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-main {
  height: 32rem;
  width: 82%;
}

.image-logo {
  border-radius: 0.75rem;
  bottom: 1.2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
  height: auto;
  left: 1.2rem;
  max-width: 12rem;
  padding: 0;
  position: absolute;
  width: 40%;
  z-index: 3;
}

.image-float {
  border: 0.7rem solid var(--paper);
  bottom: 0;
  height: 17rem;
  position: absolute;
  right: 0;
  width: 45%;
}
.services,
.reviews,
.faq {
  background: var(--white);
}

.reviews {
  background: var(--blue);
  color: var(--white);
}

.reviews .section-heading h2,
.reviews .section-heading p {
  color: var(--white);
}

.reviews .section-heading > p:not(.review-badge) {
  color: rgba(255, 255, 255, 0.78);
}

.service-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.service-grid article,
.timeline article,
.review-grid blockquote,
.faq-list details,
.contact-form {
  background: var(--paper);
  border: 1px solid rgba(7, 81, 165, 0.16);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

.service-grid article {
  min-height: 100%;
}

.service-grid img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.service-grid h3,
.service-grid p {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.service-grid h3 {
  margin-top: 1.2rem;
}

.service-grid p {
  color: rgba(0, 0, 0, 0.72);
  padding-bottom: 1.35rem;
}

.service-grid a {
  color: var(--blue);
  display: inline-flex;
  font-weight: 800;
  margin: 0 1.2rem 1.35rem;
}

.process {
  background: var(--forest);
  color: var(--white);
}

.process h2,
.process h3 {
  color: var(--white);
}

.process .section-heading p,
.timeline p {
  color: rgba(255, 255, 255, 0.75);
}

.timeline {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.timeline article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  padding: 1.4rem;
}

.timeline .step-icon {
  align-items: center;
  background: var(--green);
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 1.35rem;
  height: 3.35rem;
  justify-content: center;
  line-height: 1;
  margin-bottom: 1.4rem;
  width: 3.35rem;
}

.timeline .step-icon i {
  display: block;
}

.project-gallery {
  display: grid;
  gap: 1rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.project-gallery figure {
  aspect-ratio: 1 / 1;
  background: var(--white);
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.project-gallery .wide {
  grid-column: span 1;
}

.project-gallery img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.project-gallery figcaption {
  background: linear-gradient(0deg, rgba(7, 81, 165, 0.9), rgba(7, 81, 165, 0));
  bottom: 0;
  color: var(--white);
  font-weight: 800;
  left: 0;
  padding: 4rem 1rem 1rem;
  position: absolute;
  right: 0;
}

.review-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 0.72rem;
  margin: 0 auto 1.15rem;
  padding: 0.5rem 0.85rem;
}

.review-badge span {
  background: var(--gold);
  border-radius: 999px;
  height: 0.55rem;
  width: 0.55rem;
}

.review-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.review-grid blockquote {
  border-radius: 24px;
  margin: 0;
  padding: 1.8rem;
}

.review-stars,
.review-grid > blockquote > span {
  color: var(--gold);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-grid p {
  color: rgba(0, 0, 0, 0.76);
}

.review-grid footer {
  align-items: center;
  display: grid;
  gap: 0 0.7rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-top: 1.25rem;
}

.review-grid footer span {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  grid-row: span 2;
  height: 2.35rem;
  justify-content: center;
  width: 2.35rem;
}

.review-grid cite {
  color: var(--blue);
  display: block;
  font-style: normal;
  font-weight: 800;
}

.review-grid small {
  color: rgba(0, 0, 0, 0.58);
  display: block;
}

.review-grid strong {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  grid-row: span 2;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.button-ghost.dark {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.about {
  background:
    linear-gradient(90deg, var(--mist) 0 50%, var(--paper) 50% 100%);
}

.about-card {
  align-items: center;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: 0.75fr 1.25fr;
  margin: 0 auto;
  max-width: 1080px;
  padding: clamp(1rem, 3vw, 2rem);
}

.about-card img {
  aspect-ratio: 4 / 5;
  background: var(--white);
  height: auto;
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto;
  max-width: 900px;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
}

.faq-list summary {
  color: var(--forest);
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  color: rgba(0, 0, 0, 0.72);
  margin: 0.85rem 0 0;
}

.contact {
  align-items: start;
  background: var(--forest);
  color: var(--white);
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}


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

.contact-cta .contact-copy {
  text-align: right;
}

.contact-cta .contact-actions {
  justify-content: flex-end;
}

.contact-cta-panel {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.contact-cta-panel .button {
  font-size: 1rem;
  min-height: 3.35rem;
  padding-inline: 1.35rem;
}
.contact h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions a {
  border-bottom: 2px solid var(--gold);
  color: var(--white);
  font-weight: 800;
}

.contact-form {
  background: var(--white);
  color: var(--ink);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-form label {
  color: rgba(0, 0, 0, 0.78);
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.35rem;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  align-self: stretch;
  width: 100%;
}

.jobber-form-wrap {
  background: var(--white);
  border: 1px solid rgba(7, 81, 165, 0.16);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  padding: 0;
}

.jobber-work-request {
  border: 0;
  display: block;
  height: 295px;
  min-height: 0;
  width: 100%;
}
input,
textarea {
  background: var(--mist);
  border: 1px solid rgba(7, 81, 165, 0.22);
  color: var(--ink);
  font: inherit;
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(140, 192, 76, 0.8);
  outline-offset: 3px;
}

.site-footer {
  background: #0751a5;
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  padding: 3rem clamp(1.25rem, 5vw, 5rem) 1.5rem;
}

.site-footer img {
  display: block;
  height: auto;
  margin-bottom: 1rem;
  max-width: 18rem;
  object-fit: contain;
  padding: 0;
  width: 100%;
}

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

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 1.2rem;
}

.copyright,
.powered-by {
  margin: 0;
}

.powered-by {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.powered-by a {
  color: var(--green);
  display: inline;
  margin: 0;
}

.thank-you-page {
  align-items: center;
  background:
    linear-gradient(rgba(7, 81, 165, 0.88), rgba(7, 81, 165, 0.88)),
    url("assets/images/header-2.bak-Custom.jpg") center / cover;
  display: grid;
  min-height: 620px;
}

.thank-you-card {
  background: var(--white);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 760px;
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
}

.thank-you-card h1 {
  color: var(--blue);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.04;
  max-width: none;
}

.thank-you-card p {
  color: rgba(0, 0, 0, 0.74);
  font-size: 1.12rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.thank-you-card .hero-actions {
  justify-content: center;
}

.countdown-wrap {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  flex-wrap: wrap;
  font-weight: 800;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.countdown-number {
  align-items: center;
  background: var(--green);
  border: 4px solid var(--blue);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 2rem;
  height: 5rem;
  justify-content: center;
  line-height: 1;
  width: 5rem;
}
.service-page-hero {
  align-items: stretch;
  background: var(--blue);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  min-height: 560px;
}

.service-page-hero > div {
  align-self: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

.service-page-hero h1 {
  max-width: 12ch;
}

.service-page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 650px;
}

.service-page-hero img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-layout {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 18rem minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.service-sidebar {
  background: var(--blue);
  border-radius: 1rem;
  color: var(--white);
  overflow: hidden;
  padding: 1rem;
  position: sticky;
  top: 7rem;
}

.service-sidebar h2 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 0.8rem;
}

.service-sidebar a {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.65rem;
  display: flex;
  gap: 0.7rem;
  margin-top: 0.1rem;
  padding: 0.75rem 0.7rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.service-sidebar a i {
  color: var(--white);
  flex: 0 0 1.1rem;
  font-size: 0.95rem;
  text-align: center;
  transition: color 180ms ease;
}

.service-sidebar a span {
  min-width: 0;
}

.service-sidebar a:hover,
.service-sidebar a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.service-sidebar a:hover i,
.service-sidebar a:focus-visible i,
.service-sidebar a.active i {
  color: var(--green);
}

.service-sidebar a.active {
  color: var(--gold);
}

.service-article h2 {
  max-width: 700px;
}

.service-article > p {
  color: rgba(0, 0, 0, 0.74);
  font-size: 1.08rem;
  max-width: 850px;
}

.detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.detail-grid article {
  border: 1px solid rgba(7, 81, 165, 0.16);
  padding: 1.25rem;
}

.detail-grid article h3 {
  font-size: 1.2rem;
}


.numbered-heading {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.style-number-icon {
  align-items: center;
  background: var(--green);
  border: 2px solid rgba(7, 81, 165, 0.16);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.92rem;
  height: 2rem;
  justify-content: center;
  line-height: 1;
  width: 2rem;
}

.style-number-icon i {
  display: block;
}
.service-cta-band {
  align-items: center;
  background: var(--blue);
  color: var(--white);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 3rem;
  padding: 2rem;
}

.service-cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.service-cta-band p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.service-cta-band .button {
  align-self: center;
  justify-self: end;
}

@media (max-width: 960px) {
  

.areas-ticker {
  align-items: center;
  display: inline-flex;
  flex: 0 1 min(58vw, 56rem);
  gap: 0.5rem;
  min-width: 16rem;
  overflow: hidden;
}

.ticker-window {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.ticker-track {
  animation: areas-ticker 42s linear infinite;
  display: inline-flex;
  gap: 1.6rem;
  min-width: max-content;
  white-space: nowrap;
}


.ticker-track .ticker-item {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  gap: 0.45rem;
  transition: color 180ms ease;
}

.ticker-track .ticker-item i {
  color: var(--green);
  font-size: 0.9em;
  line-height: 1;
}

@keyframes areas-ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.topbar > span,
.topbar a {
  align-items: center;
  display: inline-flex;
  gap: 0.42rem;
}

.topbar i {
  color: var(--green);
  font-size: 0.92em;
  line-height: 1;
}
.navbar {
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    padding-top: 0.8rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    max-width: 11ch;
    white-space: normal;
  }

  .intro-band,
  .split,
  .contact,
  .about-card,
  .service-grid,
  .service-page-hero,
  .service-layout,
  .service-cta-band,
  .timeline,
  .review-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .nav-item {
    position: static;
  }

  .has-menu::after {
    display: none;
  }

  .service-menu {
    left: 1.25rem;
    right: 1.25rem;
    top: auto;
  }

  .image-stack {
    min-height: 28rem;
  }

  .image-main {
    height: 26rem;
  }

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

@media (max-width: 620px) {
  .topbar {
    align-items: center;
    flex-direction: column;
    gap: 0.15rem;
  }

  

.areas-ticker {
  align-items: center;
  display: inline-flex;
  flex: 0 1 min(58vw, 56rem);
  gap: 0.5rem;
  min-width: 16rem;
  overflow: hidden;
}

.ticker-window {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.ticker-track {
  animation: areas-ticker 42s linear infinite;
  display: inline-flex;
  gap: 1.6rem;
  min-width: max-content;
  white-space: nowrap;
}


.ticker-track .ticker-item {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  gap: 0.45rem;
  transition: color 180ms ease;
}

.ticker-track .ticker-item i {
  color: var(--green);
  font-size: 0.9em;
  line-height: 1;
}

@keyframes areas-ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.topbar > span,
.topbar a {
  align-items: center;
  display: inline-flex;
  gap: 0.42rem;
}

.topbar i {
  color: var(--green);
  font-size: 0.92em;
  line-height: 1;
}
.navbar {
    justify-content: center;
  }

  .brand img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 9.4rem;
}

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions .button,
  .contact-form button {
    width: 100%;
  }

  .image-stack {
    min-height: auto;
  }

  .image-main {
    height: auto;
    width: 100%;
  }

  .image-logo {
  border-radius: 0.75rem;
  bottom: 1.2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
  height: auto;
  left: 1.2rem;
  max-width: 12rem;
  padding: 0;
  position: absolute;
  width: 40%;
  z-index: 3;
}

  .image-float {
    border: 0;
    height: auto;
    margin-top: 1rem;
    position: static;
    width: 100%;
  }

  .project-gallery,  .detail-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .project-gallery .wide {
  grid-column: span 1;
}

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}


@media (max-width: 720px) {
  .topbar {
    gap: 0.75rem;
  }

  .areas-ticker {
    flex-basis: 100%;
    min-width: 100%;
  }
}