@font-face {
  font-family: "Onest";
  src: url("./fonts/onest-gnmkw3f-szuj7xmf-hy.woff2?v=427d63affc1d") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("./fonts/intertight-ngswv5hmafg6iuglbnmjxlsh8ag.woff2?v=427d63affc1d")
    format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #1c3740;
  --ink-deep: #142c34;
  --lime: #9daa33;
  --lime-bright: #b3c239;
  --lime-text: #68721d;
  --cream: #f7f7f0;
  --paper: #ffffff;
  --text: #273940;
  --muted: #667177;
  --line: #e5e7df;
  --shadow: 0 12px 35px rgba(18, 41, 49, 0.1);
  --radius: 10px;
  --wrap: min(1290px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea,
a {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--lime-bright);
}

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

h1,
h2,
h3 {
  font-family: "Inter Tight", "Onest", Arial, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 0 24px;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: var(--lime);
}

.button-light {
  background: #fff;
  color: var(--ink-deep);
  text-transform: none;
}

.button-lime {
  background: var(--lime);
  color: #fff;
  text-transform: none;
}

.button-lime:hover {
  background: var(--ink);
}

.eyebrow {
  color: var(--lime-text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  position: relative;
  z-index: 100;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: 260px minmax(410px, 1fr) auto;
  margin-inline: auto;
  min-height: 98px;
  padding-inline: 32px;
  width: 100%;
}

.site-logo {
  align-items: center;
  display: flex;
  width: 250px;
}

.site-logo img {
  height: auto;
  width: 250px;
}

.desktop-nav,
.footer-nav nav {
  align-items: center;
  display: flex;
  gap: clamp(26px, 3.4vw, 52px);
  justify-content: center;
}

.desktop-nav a,
.footer-nav nav a {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.footer-nav nav a:hover,
.footer-nav nav a.active {
  color: var(--lime-text);
}

.header-actions {
  display: flex;
  gap: 20px;
}

.header-actions .button {
  min-width: 138px;
}

.menu-toggle {
  background: var(--lime);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: none;
  gap: 4px;
  grid-template-columns: repeat(2, 6px);
  height: 42px;
  justify-content: center;
  place-content: center;
  width: 42px;
}

.menu-toggle span {
  border: 1.5px solid #fff;
  border-radius: 1px;
  display: block;
  height: 6px;
  width: 6px;
}

.mobile-menu {
  background: var(--ink);
  display: none;
}

.mobile-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 24px;
  text-transform: uppercase;
}

.mobile-menu a.active {
  color: var(--lime-bright);
}

.home-hero {
  background: #0d262d;
  color: #fff;
  min-height: 704px;
  overflow: hidden;
  position: relative;
}

.home-hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 48%;
  position: absolute;
  width: 100%;
}

.home-hero::after {
  background:
    linear-gradient(90deg, rgba(6, 21, 26, 0.24), rgba(6, 21, 26, 0.03)),
    linear-gradient(0deg, rgba(10, 30, 36, 0.16), transparent 40%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: 1fr minmax(330px, 365px);
  min-height: 704px;
  position: relative;
  z-index: 1;
}

.home-hero-title {
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  max-width: 650px;
  padding-left: 34px;
}

.home-hero-title h1 {
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 760;
  margin: 0;
  text-transform: uppercase;
}

.callback-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.callback-card h2 {
  background: #fff;
  color: var(--text);
  font-size: 25px;
  margin: 0;
  padding: 20px 28px;
  text-align: center;
}

.callback-card form {
  background:
    linear-gradient(rgba(19, 51, 60, 0.96), rgba(19, 51, 60, 0.96)),
    url("./images/form-bg.webp?v=427d63affc1d") center / cover;
  display: grid;
  gap: 18px;
  padding: 32px;
}

.callback-card label,
.contact-form label {
  display: grid;
}

.callback-card label span,
.contact-form label span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.callback-card input,
.callback-card select {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  color: #fff;
  min-height: 42px;
  padding: 4px 0 8px;
  width: 100%;
}

.callback-card input::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.callback-card select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--lime) 50%),
    linear-gradient(135deg, var(--lime) 50%, transparent 50%);
  background-position:
    calc(100% - 12px) 18px,
    calc(100% - 7px) 18px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
  padding-right: 28px;
}

.callback-card select option {
  color: var(--ink);
}

.callback-card .button {
  justify-self: start;
  margin-top: 4px;
  min-width: 116px;
}

.form-notice {
  background: rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--lime-bright);
  color: inherit;
  font-size: 12px;
  margin: 0;
  padding: 9px 12px;
}

.home-services {
  background:
    linear-gradient(rgba(25, 53, 61, 0.98), rgba(25, 53, 61, 0.98)),
    url("./images/service-bg.webp?v=427d63affc1d") left center / auto 100% no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 54px 0 82px;
}

.home-services .eyebrow {
  color: var(--lime-bright);
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(38px, 4vw, 52px);
  margin-bottom: 0;
}

.section-heading > a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.service-track {
  display: grid;
  gap: 28px;
  grid-auto-columns: calc((100% - 84px) / 4);
  grid-auto-flow: column;
  overflow: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  background:
    url("./images/customer-review-bg.png?v=427d63affc1d") right top / 170px auto
      no-repeat,
    #fff;
  border: 1px solid rgba(28, 55, 64, 0.1);
  border-radius: var(--radius);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  box-shadow: 0 15px 36px rgba(18, 41, 49, 0.2);
  transform: translateY(-4px);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 36px 38px;
}

.service-card h3 {
  align-items: center;
  display: flex;
  font-size: 23px;
  gap: 15px;
  margin-bottom: 20px;
}

.service-mark {
  display: inline-flex;
  position: relative;
  width: 28px;
}

.service-mark i {
  border-radius: 50% 5px 50% 5px;
  display: block;
  height: 14px;
  transform: rotate(-22deg);
  width: 18px;
}

.service-mark i:first-child {
  background: var(--ink);
}

.service-mark i:last-child {
  background: var(--lime);
  margin-left: -10px;
}

.service-card p {
  color: #687378;
  flex: 1;
  margin-bottom: 26px;
  min-height: 76px;
}

.service-card-cta {
  align-items: center;
  align-self: flex-start;
  background: var(--lime-text);
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  min-height: 42px;
  padding: 0 17px;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.service-card:hover .service-card-cta,
.service-card:focus-visible .service-card-cta {
  background: var(--ink);
}

.service-card-cta span {
  font-size: 18px;
  margin-left: 6px;
}

.service-card.image-top img {
  aspect-ratio: 1.58;
  object-fit: cover;
  width: 100%;
}

.service-card.image-top .service-card-body {
  padding: 28px 25px 25px;
}

.service-card.image-top h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.service-card.image-top p {
  min-height: 58px;
}

.carousel-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.carousel-buttons button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  height: 50px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  width: 50px;
}

.carousel-button-label,
.carousel-mobile-guide {
  display: none;
}

.carousel-buttons button:hover {
  background: var(--lime);
  color: #fff;
}

.ratings-section {
  background:
    linear-gradient(rgba(249, 249, 243, 0.94), rgba(249, 249, 243, 0.94)),
    url("./images/dot-bg.webp?v=427d63affc1d") center / cover;
  padding: 86px 0 92px;
}

.ratings-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
}

.ratings-top h2 {
  font-size: clamp(44px, 4.4vw, 62px);
  margin: 0;
}

.google-rating {
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  min-width: 410px;
  overflow: hidden;
}

.google-g {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: #4285f4;
  display: inline-flex;
  font-size: 27px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  margin: 20px;
  width: 48px;
}

.google-rating > div:not(.rating-score) {
  display: grid;
  padding: 19px 22px 17px 0;
}

.google-rating small,
.rating-score small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rating-score {
  background: var(--ink);
  color: #fff;
  min-width: 205px;
  padding: 13px 24px;
}

.rating-score strong {
  font-size: 32px;
  margin-right: 10px;
}

.rating-score span {
  color: var(--lime-bright);
  font-size: 14px;
}

.rating-cards {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(3, 1fr);
}

.rating-cards article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(28, 55, 64, 0.06);
  overflow: hidden;
  padding: 26px 28px 0;
  text-align: center;
}

.rating-cards b {
  color: var(--lime);
  display: block;
  font-size: 34px;
}

.rating-cards h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.rating-cards > article > span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50px;
  color: #687276;
  display: inline-block;
  font-size: 12px;
  padding: 4px 18px;
  text-transform: uppercase;
  transform: translateY(13px);
}

.rating-cards p {
  border-top: 1px solid var(--line);
  margin: 0 -28px;
  padding: 30px 22px 22px;
}

.home-process {
  padding: 78px 0 54px;
}

.process-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(480px, 0.92fr) minmax(520px, 1.08fr);
}

.project-collage {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.62fr 1fr;
  grid-template-rows: 480px auto;
}

.project-collage img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-small {
  align-self: end;
  height: 300px !important;
  margin-top: auto;
}

.project-large {
  grid-row: span 1;
}

.project-collage blockquote {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  grid-column: 2;
  margin: 0;
}

.project-collage blockquote strong {
  align-items: center;
  background: var(--lime);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 32px;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.project-collage blockquote span {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
}

.project-collage blockquote small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

.process-panel h2 {
  font-size: clamp(46px, 4.7vw, 67px);
  margin-bottom: 30px;
}

.process-panel details {
  border-radius: 12px;
  margin-bottom: 12px;
}

.process-panel summary {
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto auto;
  list-style: none;
  min-height: 70px;
  padding: 12px 16px 12px 22px;
}

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

.process-panel details[open] summary {
  background: var(--ink);
  color: #fff;
}

.process-panel summary > span {
  color: var(--lime);
  font-size: 24px;
}

.process-panel summary strong {
  font-size: 18px;
}

.process-panel summary em {
  background: var(--cream);
  border-radius: 7px;
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  padding: 9px 15px;
}

.process-panel summary b {
  align-items: center;
  background: var(--cream);
  border-radius: 7px;
  color: var(--ink);
  display: flex;
  font-size: 22px;
  font-weight: 400;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.process-panel details[open] summary b {
  font-size: 0;
}

.process-panel details[open] summary b::after {
  content: "−";
  font-size: 22px;
}

.process-panel details > p {
  color: #5f6a6f;
  margin: 0;
  padding: 25px 16px 18px 0;
}

.text-link {
  color: var(--ink);
  display: inline-block;
  font-size: 13px;
  font-weight: 850;
  margin-top: 7px;
  text-transform: uppercase;
}

.testimonials-section {
  background:
    url("./images/why-choose-image-1.webp?v=427d63affc1d") right 80px / 410px auto
      no-repeat,
    #fff;
  padding: 30px 0 88px;
}

.testimonials-title {
  text-align: right;
}

.testimonials-title h2 {
  font-size: clamp(46px, 4vw, 58px);
  margin: 0 auto 35px;
  max-width: 1200px;
  text-align: center;
}

.testimonial-track {
  display: grid;
  gap: 28px;
  grid-auto-columns: calc((100% - 56px) / 3);
  grid-auto-flow: column;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 47px 1fr;
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.testimonial-rating {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 16px;
  justify-content: center;
  writing-mode: vertical-rl;
}

.testimonial-rating span {
  color: var(--lime);
}

.testimonial-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.testimonial-card p {
  flex: 1;
  margin: 0;
  padding: 26px 22px;
}

.testimonial-card h3 {
  border-top: 1px solid var(--line);
  font-size: 16px;
  margin: 0;
  padding: 18px 22px;
}

.testimonial-line {
  background: #e7e9e2;
  border-radius: 6px;
  height: 7px;
  margin-top: 35px;
}

.testimonial-line span {
  background: var(--lime);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 75%;
}

.page-hero {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  min-height: 328px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(50px, 5vw, 68px);
  margin-bottom: 24px;
}

.page-hero p {
  align-items: center;
  display: flex;
  gap: 13px;
  justify-content: center;
  margin: 0;
}

.page-hero strong {
  font-weight: 400;
}

.about-intro {
  background:
    url("./images/service-bg.webp?v=427d63affc1d") center / 1200px auto no-repeat,
    #fff;
  padding: 88px 0;
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 450px 1fr;
}

.about-image {
  position: relative;
}

.about-image > img {
  aspect-ratio: 0.75;
  border-radius: 8px;
  height: 610px;
  object-fit: cover;
  width: 100%;
}

.about-rating {
  align-items: center;
  background: #fff;
  border-radius: 10px;
  bottom: 50px;
  box-shadow: var(--shadow);
  display: flex;
  left: 26px;
  overflow: hidden;
  position: absolute;
}

.about-rating .google-g {
  margin: 13px 16px;
}

.about-rating strong {
  margin-right: 30px;
}

.about-rating b {
  align-items: center;
  align-self: stretch;
  background: var(--ink);
  color: #fff;
  display: flex;
  font-size: 30px;
  padding: 0 18px;
}

.about-rating > span:last-child {
  align-items: center;
  align-self: stretch;
  background: var(--ink);
  color: var(--lime);
  display: flex;
  padding-right: 20px;
}

.about-copy h2 {
  font-size: clamp(46px, 4vw, 60px);
  margin-bottom: 24px;
}

.about-copy > p:not(.eyebrow) {
  color: #5e686d;
}

.about-services {
  background:
    linear-gradient(rgba(25, 53, 61, 0.98), rgba(25, 53, 61, 0.98)),
    url("./images/why-choose-image-1.webp?v=427d63affc1d") right bottom / 540px auto
      no-repeat;
  color: #fff;
  padding: 76px 0 64px;
}

.about-services > .wrap > h2 {
  font-size: 50px;
  margin-bottom: 42px;
  text-align: center;
}

.service-carousel-dark .service-track {
  grid-auto-columns: calc((100% - 56px) / 3);
}

.about-contact-line {
  color: rgba(255, 255, 255, 0.54);
  margin: 54px 0 0;
  text-align: center;
}

.about-contact-line a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-left: 20px;
  text-transform: uppercase;
}

.about-process {
  background: var(--lime);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 0;
  position: relative;
}

.about-process::after {
  background: url("./images/shapre-lawnshaper.png?v=427d63affc1d") center bottom / 100%
    auto no-repeat;
  bottom: 0;
  content: "";
  height: 170px;
  left: 0;
  position: absolute;
  right: 0;
}

.about-process > .wrap > h2 {
  font-size: 52px;
  margin-bottom: 45px;
  text-align: center;
}

.outline-title {
  color: transparent;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 700;
  left: 50%;
  line-height: 1;
  margin: 0;
  opacity: 0.14;
  position: absolute;
  top: 34px;
  transform: translateX(-50%);
  -webkit-text-stroke: 1px #fff;
  white-space: nowrap;
}

.about-process-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 165px;
  position: relative;
  z-index: 1;
}

.about-process-grid article {
  text-align: center;
}

.step-number {
  display: block;
  font-size: 48px;
  opacity: 0.12;
  text-align: left;
}

.step-icon {
  align-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  font-size: 42px;
  height: 124px;
  justify-content: center;
  margin: -20px auto 30px;
  width: 124px;
}

.about-process-grid h3 {
  font-size: 25px;
}

.about-process-grid p {
  margin-bottom: 0;
}

.contact-section {
  padding: 82px 0;
}

.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 350px 1fr;
}

.contact-details {
  display: grid;
  gap: 22px;
}

.contact-details article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(28, 55, 64, 0.03);
}

.contact-details article {
  align-content: center;
  display: grid;
  min-height: 186px;
  padding: 28px 33px;
}

.contact-details b {
  color: var(--lime);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}

.contact-details span {
  margin-bottom: 4px;
}

.contact-details a,
.contact-details strong {
  font-size: 17px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-panel {
  padding: 34px;
}

.contact-panel h2 {
  font-size: clamp(40px, 4vw, 56px);
  margin-bottom: 10px;
}

.contact-panel h2 span {
  color: var(--lime);
}

.contact-panel > p {
  color: #687277;
  margin-bottom: 26px;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background: #fff;
  border: 1px solid #dfe2dc;
  border-radius: 9px;
  min-height: 48px;
  padding: 10px 14px;
  width: 100%;
}

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

.contact-form .button {
  justify-self: start;
}

.services-page-section {
  padding: 80px 0 96px;
}

.services-page-title {
  margin: 0 auto 40px;
  max-width: 700px;
  text-align: center;
}

.services-page-title h2 {
  color: var(--lime);
  font-size: 50px;
  margin-bottom: 18px;
}

.service-carousel-light .service-track {
  grid-auto-columns: calc((100% - 56px) / 3);
}

.booking-space {
  min-height: 180px;
  padding: 65px 0 30px;
}

.booking-space p {
  color: #738084;
  margin: 0 auto;
  max-width: 620px;
  text-align: center;
}

.service-content-space {
  padding: 90px 0;
}

.service-detail-grid {
  align-items: center;
  display: grid;
  gap: clamp(48px, 6vw, 86px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-detail-image {
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.service-detail-image::after {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  content: "";
  inset: 15px;
  pointer-events: none;
  position: absolute;
}

.service-detail-image img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-detail-copy h2 {
  font-size: clamp(40px, 4vw, 58px);
  margin-bottom: 28px;
}

.service-detail-copy > p:not(.eyebrow) {
  color: #627075;
  margin-bottom: 18px;
}

.service-benefits {
  display: grid;
  gap: 13px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 28px 0 34px;
  padding: 0;
}

.service-benefits li {
  font-weight: 700;
  padding-left: 24px;
  position: relative;
}

.service-benefits li::before {
  color: var(--lime);
  content: "✤";
  left: 0;
  position: absolute;
  top: 0;
}

.service-pagination {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 90px;
  padding: 35px 0;
}

.service-pagination a {
  align-items: center;
  display: flex;
  gap: 18px;
}

.service-pagination a:last-child {
  justify-content: flex-end;
  text-align: right;
}

.service-pagination img {
  border-radius: 50%;
  height: 76px;
  object-fit: cover;
  width: 76px;
}

.service-pagination strong,
.service-pagination small {
  display: block;
}

.service-pagination small {
  color: var(--lime);
  margin-top: 7px;
}

.service-dots {
  color: var(--lime);
  font-size: 34px;
}

.related-heading h2 {
  font-size: 30px;
  margin: 35px 0 28px;
}

.related-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.not-found {
  min-height: 420px;
  padding: 90px 0;
  text-align: center;
}

.not-found h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.footer-callout {
  align-items: center;
  background: url("./images/footer-3-before-min.webp?v=427d63affc1d") center / cover
    no-repeat;
  color: #fff;
  display: flex;
  min-height: 430px;
  text-align: center;
}

.footer-callout .wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.footer-callout h2 {
  font-size: clamp(42px, 3.7vw, 52px);
  margin: 0 auto 24px;
  max-width: 850px;
}

.footer-callout a {
  font-size: 18px;
  font-weight: 750;
  margin: 3px 0;
}

.callout-rule {
  background: var(--lime);
  display: block;
  height: 4px;
  margin: 19px auto 12px;
  width: 90px;
}

.footer-callout .book-visit {
  font-size: 13px;
  text-transform: uppercase;
}

.footer-nav {
  background: #fff;
}

.footer-nav .header-inner {
  border-left: 4px solid #1689ff;
}

.footer-main {
  background: var(--ink);
  color: #fff;
  padding: 52px 0 44px;
}

.footer-grid {
  display: grid;
  gap: 170px;
  grid-template-columns: 1.25fr 0.75fr;
}

.footer-grid h2 {
  font-size: 21px;
  margin-bottom: 20px;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 640px;
}

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

.footer-grid li {
  margin-bottom: 14px;
}

.footer-grid li a {
  color: rgba(255, 255, 255, 0.54);
  transition: color 160ms ease;
}

.footer-grid li a:hover {
  color: var(--lime-bright);
}

.footer-bottom {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.58);
  padding: 24px 0;
}

.footer-bottom .wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 4px 0;
}

.footer-bottom a:hover {
  color: #fff;
}

.facebook {
  align-items: center;
  background: #fff;
  border-radius: 5px;
  color: var(--ink);
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  margin-left: 12px;
  width: 40px;
}

.cookie-notice {
  align-items: center;
  background: rgba(27, 53, 61, 0.96);
  bottom: 22px;
  color: #fff;
  display: flex;
  gap: 18px;
  left: 50%;
  max-width: calc(100% - 40px);
  padding: 13px 18px;
  position: fixed;
  transform: translateX(-50%);
  z-index: 200;
}

.cookie-notice p {
  margin: 0;
}

.cookie-notice button {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  padding: 3px 10px;
}

.scroll-top {
  background: transparent;
  border: 0;
  bottom: 28px;
  color: var(--lime);
  cursor: pointer;
  font-size: 26px;
  position: fixed;
  right: 40px;
  z-index: 150;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  :root {
    --wrap: min(100% - 48px, 1060px);
  }

  .header-inner {
    gap: 24px;
    grid-template-columns: 225px 1fr auto;
    padding-inline: 24px;
  }

  .site-logo,
  .site-logo img {
    width: 220px;
  }

  .desktop-nav,
  .footer-nav nav {
    gap: 25px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .button {
    min-width: 118px;
    padding-inline: 15px;
  }

  .service-track {
    grid-auto-columns: calc((100% - 56px) / 3);
  }

  .process-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 960px) {
  :root {
    --wrap: min(100% - 44px, 760px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 88px;
  }

  .desktop-nav,
  .site-header .header-actions,
  .footer-nav nav,
  .footer-nav .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu.open {
    display: block;
  }

  .hero-grid {
    gap: 35px;
    grid-template-columns: 1fr 340px;
  }

  .home-hero-title h1 {
    font-size: 48px;
  }

  .service-track,
  .service-carousel-dark .service-track,
  .service-carousel-light .service-track {
    grid-auto-columns: calc((100% - 28px) / 2);
  }

  .ratings-top {
    align-items: flex-start;
    gap: 30px;
  }

  .google-rating {
    min-width: 390px;
  }

  .rating-cards {
    gap: 22px;
  }

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

  .testimonial-track {
    grid-auto-columns: calc((100% - 28px) / 2);
  }

  .about-grid {
    gap: 45px;
    grid-template-columns: 330px 1fr;
  }

  .about-image > img {
    height: 500px;
  }

  .about-process-grid {
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 280px 1fr;
  }

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

  .footer-grid {
    gap: 70px;
  }
}

@media (max-width: 720px) {
  :root {
    --wrap: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .header-inner {
    padding-inline: 22px;
  }

  .site-logo,
  .site-logo img {
    width: 200px;
  }

  .home-hero {
    min-height: 840px;
  }

  .home-hero-image {
    object-position: 48% center;
  }

  .hero-grid {
    align-content: start;
    gap: 30px;
    grid-template-columns: 1fr;
    min-height: 840px;
    padding: 54px 0 20px;
  }

  .home-hero-title {
    border-left: 0;
    padding-left: 0;
  }

  .home-hero-title h1 {
    font-size: clamp(35px, 10.2vw, 50px);
    max-width: 530px;
  }

  .callback-card {
    width: 100%;
  }

  .callback-card form {
    padding: 28px;
  }

  .section-heading {
    align-items: flex-start;
    display: grid;
    gap: 15px;
  }

  .section-heading h2 {
    font-size: 40px;
  }

  .service-track,
  .service-carousel-dark .service-track,
  .service-carousel-light .service-track {
    grid-auto-columns: 84%;
    overflow-x: auto;
  }

  .service-card-body {
    padding: 30px;
  }

  .service-card.image-top img {
    aspect-ratio: 16 / 9;
    height: 190px;
    object-fit: cover;
  }

  .carousel-mobile-guide {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 22px;
    padding: 10px 13px;
  }

  .carousel-mobile-guide strong {
    font-size: 13px;
    white-space: nowrap;
  }

  .carousel-mobile-guide > span {
    font-size: 12px;
    opacity: 0.82;
    text-align: right;
  }

  .service-carousel-light .carousel-mobile-guide {
    background: var(--cream);
    border-color: var(--line);
  }

  .carousel-buttons {
    justify-content: space-between;
    margin-top: 14px;
  }

  .carousel-buttons button {
    border: 2px solid var(--lime-text);
    border-radius: 999px;
    font-size: 18px;
    gap: 8px;
    min-width: 128px;
    padding: 0 17px;
    width: auto;
  }

  .carousel-button-label {
    display: inline;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
  }

  .ratings-top {
    display: grid;
  }

  .ratings-top h2 {
    font-size: 45px;
  }

  .google-rating {
    min-width: 0;
    width: 100%;
  }

  .google-rating .google-g {
    margin: 14px 10px;
  }

  .rating-score {
    margin-left: auto;
    min-width: 145px;
    padding-inline: 14px;
  }

  .rating-score strong {
    font-size: 26px;
  }

  .rating-cards {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 60px;
  }

  .project-collage {
    gap: 14px;
    grid-template-columns: 0.58fr 1fr;
    grid-template-rows: 350px auto;
  }

  .project-small {
    height: 220px !important;
  }

  .project-collage blockquote {
    gap: 10px;
  }

  .project-collage blockquote span {
    font-size: 17px;
  }

  .process-panel h2 {
    font-size: 43px;
  }

  .process-panel summary {
    gap: 10px;
    grid-template-columns: auto 1fr auto;
  }

  .process-panel summary em {
    padding: 8px 10px;
  }

  .process-panel summary b {
    display: none;
  }

  .testimonials-title {
    text-align: left;
  }

  .testimonials-title h2 {
    font-size: 39px;
    text-align: left;
  }

  .testimonial-track {
    grid-auto-columns: 90%;
  }

  .page-hero {
    min-height: 285px;
  }

  .page-hero h1 {
    font-size: 47px;
  }

  .about-intro {
    padding: 65px 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 500px;
  }

  .about-copy h2 {
    font-size: 44px;
  }

  .about-process-grid {
    grid-template-columns: 1fr;
    padding-bottom: 150px;
  }

  .about-process::after {
    height: 120px;
    background-size: auto 120px;
  }

  .outline-title {
    font-size: 60px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 28px 22px;
  }

  .contact-panel h2 {
    font-size: 40px;
  }

  .service-content-space {
    padding: 70px 0;
  }

  .service-detail-grid {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .service-detail-image,
  .service-detail-image img {
    height: clamp(190px, 58vw, 230px);
  }

  .service-detail-image img {
    aspect-ratio: auto;
  }

  .service-detail-copy h2 {
    font-size: 42px;
  }

  .service-pagination {
    gap: 15px;
    margin-top: 65px;
  }

  .service-pagination img {
    height: 52px;
    width: 52px;
  }

  .service-pagination strong {
    font-size: 13px;
  }

  .service-pagination small {
    font-size: 11px;
  }

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

  .footer-callout {
    min-height: 400px;
  }

  .footer-callout h2 {
    font-size: 39px;
  }

  .footer-callout a {
    font-size: 15px;
  }

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

  .footer-nav .header-inner {
    justify-items: start;
  }

  .footer-bottom .wrap {
    align-items: flex-start;
    display: grid;
    gap: 18px;
  }

  .cookie-notice {
    align-items: flex-start;
    bottom: 12px;
    display: grid;
    font-size: 12px;
    gap: 10px;
    width: calc(100% - 24px);
  }

  .cookie-notice button {
    justify-self: start;
  }

  .scroll-top {
    bottom: 18px;
    right: 16px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    padding-inline: 24px;
  }

  .site-logo,
  .site-logo img {
    width: 198px;
  }

  .menu-toggle {
    height: 40px;
    width: 40px;
  }

  .home-hero {
    min-height: 856px;
  }

  .hero-grid {
    min-height: 856px;
    padding-top: 54px;
  }

  .home-hero-title h1 {
    font-size: 34px;
  }

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

  .callback-card h2 {
    font-size: 24px;
  }

  .callback-card form {
    gap: 16px;
    padding: 28px 30px 32px;
  }

  .home-services {
    padding-top: 48px;
  }

  .service-track,
  .service-carousel-dark .service-track,
  .service-carousel-light .service-track {
    grid-auto-columns: 84%;
  }

  .project-collage {
    grid-template-rows: 300px auto;
  }

  .project-small {
    height: 185px !important;
  }

  .service-pagination {
    grid-template-columns: 1fr 22px 1fr;
  }

  .service-pagination img {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
