:root {
  --teal: #009d9d;
  --teal-dark: #007878;
  --teal-pale: #e8f7f6;
  --charcoal: #212121;
  --slate: #4d4d4d;
  --grey: #818181;
  --line: #d9e1e1;
  --off-white: #f5f8f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(25, 46, 46, 0.12);
  --radius: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal);
}

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

h1,
h2,
h3 {
  margin: 0 0 0.65em;
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.13;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

p {
  margin: 0 0 1.25rem;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  background: var(--teal);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 23px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: 160ms ease;
}

.button:hover {
  border-color: var(--teal-dark);
  color: var(--white);
  background: var(--teal-dark);
  transform: translateY(-2px);
}

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

.button--ghost:hover {
  border-color: var(--white);
  color: var(--charcoal);
  background: var(--white);
}

.button--dark {
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.topbar {
  color: var(--white);
  background: var(--charcoal);
  font-size: 0.85rem;
}

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

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.topbar__links {
  display: flex;
  gap: 22px;
}

.navbar {
  display: grid;
  min-height: 84px;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.site-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 12px 11px;
  border-radius: 8px;
  color: var(--charcoal);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  isolation: isolate;
}

.hero--interior {
  min-height: 510px;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 27, 27, 0.91) 0%, rgba(15, 27, 27, 0.64) 48%, rgba(15, 27, 27, 0.2) 100%);
  content: "";
}

.hero__content {
  padding-block: 90px 74px;
}

.hero .eyebrow {
  color: #89e2dd;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 29px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.trust-strip {
  color: var(--white);
  background: var(--teal-dark);
}

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

.trust-item {
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 1.06rem;
}

.trust-item span {
  opacity: 0.8;
  font-size: 0.8rem;
}

.section {
  padding-block: clamp(70px, 9vw, 118px);
}

.section--soft {
  background: var(--off-white);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: 650px;
  color: var(--slate);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  min-height: 460px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.split__media::after {
  position: absolute;
  right: -14px;
  bottom: -14px;
  z-index: -1;
  width: 42%;
  height: 42%;
  border-radius: var(--radius);
  background: var(--teal);
  content: "";
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

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

.feature-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 17px;
  height: 10px;
  border-bottom: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
  content: "";
  transform: rotate(-45deg);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(25, 46, 46, 0.07);
  transition: 180ms ease;
}

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

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

.service-card__body {
  padding: 28px;
}

.service-card__body p {
  color: var(--slate);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

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

.number-card {
  min-height: 260px;
  padding: 38px;
  background: var(--white);
}

.number-card__number {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

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

.proof-card {
  display: grid;
  min-height: 290px;
  align-content: start;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(25, 46, 46, 0.06);
}

.proof-card__logo {
  display: flex;
  height: 100px;
  align-items: center;
  margin-bottom: 25px;
}

.proof-card__logo img {
  max-width: 190px;
  max-height: 95px;
  object-fit: contain;
}

.proof-card p {
  color: var(--slate);
}

.review-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  overflow: hidden;
  border-radius: 26px;
  color: var(--white);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.review-panel__aside {
  display: grid;
  align-content: center;
  padding: clamp(35px, 6vw, 65px);
  background: var(--teal-dark);
}

.review-panel__aside strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1;
}

.review-panel__body {
  padding: clamp(35px, 7vw, 75px);
}

.review-panel__stars {
  margin-bottom: 20px;
  color: #f5c84b;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
}

.review-panel blockquote {
  margin: 0 0 22px;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.55;
}

.review-panel cite {
  color: #a9e2df;
  font-style: normal;
  font-weight: 800;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 9px 15px;
  border: 1px solid #b7d4d2;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  font-size: 0.9rem;
  font-weight: 800;
}

.assurance-note {
  margin-top: 25px;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  color: var(--slate);
  background: var(--off-white);
  font-size: 0.9rem;
}

.quote-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 80px);
  border-radius: 26px;
  color: var(--white);
  background: var(--charcoal);
}

.quote-panel::after {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 310px;
  height: 310px;
  border: 55px solid rgba(0, 157, 157, 0.32);
  border-radius: 50%;
  content: "";
}

.quote-panel__content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 23px 0;
  border: 0;
  color: var(--charcoal);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  color: var(--teal);
  font-size: 1.65rem;
  content: "+";
}

.faq-item button[aria-expanded="true"]::after {
  content: "\2212";
}

.faq-answer {
  max-width: 760px;
  padding: 0 45px 22px 0;
  color: var(--slate);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-grid figure {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(5) {
  grid-column: span 8;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(35px, 7vw, 80px);
}

.contact-details {
  display: grid;
  gap: 17px;
  margin-top: 30px;
}

.contact-detail {
  padding: 20px;
  border-left: 4px solid var(--teal);
  background: var(--off-white);
}

.contact-detail strong,
.contact-detail span,
.contact-detail a {
  display: block;
}

.contact-detail a {
  color: var(--charcoal);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--off-white);
}

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

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #aebcbc;
  border-radius: 7px;
  background: var(--white);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 157, 157, 0.18);
}

.form-note {
  grid-column: 1 / -1;
  color: var(--slate);
  font-size: 0.82rem;
}

.site-footer {
  color: #d9e1e1;
  background: #171c1c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr;
  gap: 48px;
  padding-block: 70px;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 23px;
  padding: 10px;
  border-radius: 10px;
  background: var(--white);
}

.footer-column h3 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}

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

.footer-column li + li {
  margin-top: 8px;
}

.footer-column a {
  color: #d9e1e1;
  text-decoration: none;
}

.footer-column a:hover {
  color: #82ddd8;
}

.footer-bottom {
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1020px) {
  .navbar {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .navbar > .button {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 118px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 25px 20px 100px;
    background: var(--white);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 200ms ease;
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav > ul {
    display: grid;
    align-items: stretch;
    justify-content: stretch;
  }

  .site-nav a {
    padding: 15px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.08rem;
  }

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner > span,
  .topbar__links a:last-child {
    display: none;
  }

  .navbar {
    min-height: 72px;
  }

  .brand img {
    width: 185px;
  }

  .site-nav {
    top: 106px;
  }

  .hero,
  .hero--interior {
    min-height: 590px;
  }

  .hero__content {
    padding-block: 80px 55px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(15, 27, 27, 0.95) 0%, rgba(15, 27, 27, 0.73) 72%, rgba(15, 27, 27, 0.34) 100%);
  }

  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

  .split--reverse .split__media {
    order: 0;
  }

  .split__media img {
    min-height: 310px;
  }

  .card-grid,
  .number-grid,
  .proof-grid,
  .review-panel {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(5) {
    grid-column: span 1;
  }

  .gallery-grid figure:first-child {
    grid-column: 1 / -1;
  }

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

  .form-field--wide {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.14);
  }

  .mobile-actions a {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--teal-dark);
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    background: var(--charcoal);
  }
}

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