﻿/***** BEGIN RESET *****/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}
td {
  vertical-align: top;
}

/* Make HTML 5 elements display block-level for consistent styling */
header,
nav,
article,
footer,
address {
  display: block;
}

/*-------- COLORS --------*/

/* Highlight Styles */
::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

/*-------- BODY STYLES --------*/

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--black);

  --light-black-bg: var(--light-black);

  --colour-primary: var(--yellow);
  --colour-primary-hover: var(--light-yellow-1);
  --colour-secondary: var(--light-pink-1);
  --colour-secondary-hover: var(--light-pink-2);

  --nav-menu-lv1: var(--body-m-bold);
  --nav-menu-lv2: var(--body-s-reg);
  --nav-menu-lv3: var(--body-xs-reg);

  --page-edge: var(--spacing-4);

  --section-gap-xl: var(--spacing-7);
  --section-gap-lg: var(--spacing-6);
  --section-gap-md: var(--spacing-5);
  --section-gap-sm: var(--spacing-4);

  --page-h1: var(--heading-h1);

  --section-label: var(--body-xs-bold);
  --section-display: var(--heading-h2);

  --section-main-heading: var(--heading-h3);
  --section-main-text: var(--body-s-reg);

  --section-secondary-heading: var(--heading-h4);
  --section-secondary-text: var(--body-xs-reg);

  --section-tertiary-heading: var(--body-l-bold);
  --section-tertiary-text: var(--body-xxs-reg);

  --section-quatenary-heading: var(--body-m-bold);
  --section-quatenary-text: var(--body-xxxs-reg);
}

p {
  font: var(--section-main-text);
  color: var(--white);
}

main {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap-lg);
  flex: 1;
}

footer {
  margin-top: auto;
  flex-shrink: 0;
}

/***** Global text link style *****/
a:link,
a:visited,
a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* ============== Global Components ============== */
.flex-wrap-h {
  display: flex;
  gap: var(--spacing-4);
  padding: 0 var(--page-edge);
  width: 100%;
}

.flex-wrap-v {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  padding: 0 var(--page-edge);
  width: 100%;
}

.uppercase {
  text-transform: uppercase;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.linear-gradient-btm {
  mask-image: linear-gradient(
    to top,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 2%,
    rgba(0, 0, 0, 0.2) 6%,
    rgba(0, 0, 0, 0.45) 12%,
    rgba(0, 0, 0, 0.75) 18%,
    rgba(0, 0, 0, 0.95) 24%,
    black 30%,
    black 100%
  );
}

.linear-gradient-left {
  mask-image: linear-gradient(
    to left,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 2%,
    rgba(0, 0, 0, 0.2) 6%,
    rgba(0, 0, 0, 0.45) 12%,
    rgba(0, 0, 0, 0.75) 18%,
    rgba(0, 0, 0, 0.95) 24%,
    black 30%,
    black 100%
  );
}

.subpage-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-5);
  /* padding-bottom: calc(var(--spacing-12) * 1.2); */
  z-index: 10;
  width: calc(80% + 5rem);

  h1 {
    font: var(--page-h1);
    color: var(--white);
  }

  p {
    font: var(--body-m-reg);
    text-align: center;
  }

  span {
    display: block;
  }

  .main-btn {
    width: max-content;
  }
}

.subpage-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--light-black-bg);
  padding: var(--spacing-6) var(--page-edge);
  gap: var(--spacing-4);

  h2,
  h3 {
    font: var(--section-tertiary-heading);
    font-family: var(--font-family-display);
    color: var(--white);
  }

  p {
    width: 50%;
    text-align: center;
  }
}

.quote-heading {
  display: flex;
  position: relative;
  /* justify-content: center; */
  width: 100%;

  .fa-quote-right {
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--colour-secondary);
  }

  h2,
  h3 {
    font: var(--section-secondary-heading);
    color: var(--colour-secondary);
    padding-left: var(--spacing-10);
  }
}

.grid-wrap {
  display: grid;
  grid-template-columns: var(--grid-ratio);
  gap: var(--spacing-6);
}

.contact {
  display: flex;
  gap: var(--spacing-4);
  width: 100%;

  p {
    font: var(--body-xs-bold);
    color: var(--colour-secondary);
    width: 10%;
  }

  a {
    font: var(--section-tertiary-heading);
    font-family: var(--font-family-display);
    color: var(--white);
    transition: color 0.2s ease;

    &:hover {
      color: var(--yellow);
    }
  }
}

/* ============ Splide Overrides ============*/
.splide {
  visibility: visible !important;
  width: 100% !important;
  position: relative;
  overflow: hidden;

  .splide__track {
    max-width: 100dvw;
    width: 100%;

    .splide__list {
      display: flex;
      gap: 0;
      min-height: 300px;
      max-height: 40dvh;

      .splide__slide {
        display: flex;
        max-width: 100%;
      }
    }
  }
}

.splide .splide__arrows {
  /* display: flex;
  position: absolute;
  right: var(--page-edge);
  top: 50%;
  transform: translateY(-50%); */
  pointer-events: none;
  gap: var(--spacing-2);
  z-index: 20;

  .splide__arrow {
    /* position: static;
    transform: none; */
    width: var(--spacing-7);
    height: var(--spacing-7);
    border-radius: var(--border-radius-l);
    border: none;
    opacity: 1;
    background-color: var(--light-black-bg);
    border: 1px solid var(--grey);
    color: var(--white);
    pointer-events: auto;
    cursor: pointer;

    &:hover {
      /* background-color: var(--colour-primary-hover); */
      border-color: var(--colour-primary);
      box-shadow: 0 0 5px var(--colour-primary);
    }

    /* .splide__arrow--prev {
      left: auto;
    }

    .splide__arrow--next {
      right: auto;
    } */
  }
}

.splide .splide__arrow svg {
  fill: currentColor;
}

.splide .splide__arrow:disabled,
.splide .splide__arrow.is-disabled {
  color: var(--grey);
  cursor: auto !important;

  &:hover {
    border-color: var(--grey);
    box-shadow: none;
  }
}

.splide.is-not-overflow .splide__arrows {
  display: none;
}

.splide__pagination {
  display: none !important;
}

/* ------------------ Hero ------------------ */
/* ============== Global Hero ==============*/
.hero {
  --hero-img: url(/siteart/hero-img.webp);
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: flex-end;
  padding: var(--spacing-12) var(--page-edge);
  background-image: var(--hero-img);
  background-color: var(--black);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
  height: clamp(50dvh, calc(80dvh - 2.5rem), 100dvh);
  /* height: clamp(50vh, calc(80vh - 2.5rem), 80vh); */
  max-height: 700px;
}

/* hero overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* ============================================ */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
  padding-bottom: calc(var(--spacing-8) * 1.2);
  z-index: 10;
  width: calc(40% + 5rem);

  h1 {
    font: var(--page-h1);
    color: var(--white);
  }

  span {
    display: block;
  }

  h2 {
    font: var(--section-main-heading);
    color: var(--colour-secondary);
  }
}

.hero-right {
  display: flex;
  flex-direction: column;
  width: 30%;
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: flex-start;
  gap: var(--spacing-4);
  padding-bottom: calc(var(--spacing-8) * 1.2);

  z-index: 10;

  p {
    font: var(--body-m-reg);
  }
}

/* ------------------ Home-Service (defualt.htm) & Service Page - Cards (service.htm) ------------------ */

.home-service-top {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-5);
  width: 100%;

  .home-service-top-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);

    h2 {
      font: var(--section-main-heading);
      color: var(--white);
    }

    .main-btn {
      width: max-content;
    }
  }

  .home-service-top-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    padding-left: var(--spacing-3);
    width: 30%;
    height: fit-content;
    border-left: 10px solid var(--white);

    p {
      font: var(--section-main-text);
      color: var(--white);

      &:first-child {
        --section-main-text: var(--body-s-bold);
        color: var(--colour-secondary);
      }
    }
  }
}

.home-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  min-height: 300px;
  gap: var(--spacing-5);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-2);
  background-color: var(--light-black-bg);
  border-radius: var(--border-radius-s);
  color: var(--white);
  padding: var(--spacing-3);

  .card-top {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
  }

  span {
    font: var(--section-display);
  }

  h2,
  h3 {
    font: var(--section-tertiary-heading);
  }

  p {
    min-height: 3rem;
    font: var(--section-secondary-text);
  }
}

/* ------------------ Home - About (default.htm) ------------------ */
.home-about {
  padding-top: var(--section-gap-sm);
  padding-bottom: var(--section-gap-sm);
}

.home-about-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  width: 50%;

  h2 {
    font: var(--section-display);
    color: var(--white);
    line-height: 1;
    display: flex;
    width: 60%;
  }

  p {
    font: var(--section-main-text);
    color: var(--white);
  }

  .img-wrap {
    display: flex;
    width: 100%;
    height: auto;
    max-height: 200px;
    margin-left: calc(var(--page-edge) * -1);
    border-top-right-radius: var(--border-radius-s);
    border-bottom-right-radius: var(--border-radius-s);
    overflow: hidden;
  }
}

.home-about-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  gap: var(--spacing-4);

  .main-btn {
    width: max-content;
  }
}

/* ------------------ Home - Quick Links (default.htm) ------------------ */
.home-quick-links {
  justify-content: space-between;
  padding-left: 0;
  padding-top: var(--section-gap-sm);
  padding-bottom: var(--section-gap-sm);
}

/* Reversed HTML structure */
.home-ql-left {
  display: flex;
  order: 1;

  .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--spacing-3);
    padding-bottom: 0;
    padding-right: 0;
    background-color: var(--light-black-bg);
    border-radius: var(--border-radius-s);
    width: 100%;
    transition: var(--transition);
    margin: var(--spacing-2) 0;

    h3 {
      font: var(--section-tertiary-heading);
      color: var(--white);
    }

    &:hover {
      box-shadow: 0 0 10px var(--colour-primary);
      transform: translateY(-0.2rem);
    }
  }

  .img-wrap {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-s);
    overflow: hidden;
    align-items: flex-end;

    img {
      position: absolute;
      width: 70%;
      right: -1rem;
      bottom: -2rem;
      opacity: 0.8;
      object-fit: contain;
    }
  }
}

.home-ql-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-4);
  order: 2;

  h2 {
    font: var(--section-display);
    color: var(--white);
    text-align: right;
    line-height: 1;
  }

  .main-btn {
    width: max-content;
  }
}

/* ------------------ Footer (footer.htm) ------------------ */
.footer {
  padding-top: var(--section-gap-xl);
  padding-bottom: var(--section-gap-xl);
  justify-content: space-between;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-5);
  width: 80%;

  .footer-nav-links {
    display: flex;
    /* gap: var(--spacing-4); */

    li {
      display: flex;
      align-items: center;
      margin: 0;
      padding: 0 var(--spacing-3);

      &:not(:last-child) {
        border-right: 1px solid var(--white);
        height: fit-content;
      }

      &:first-child {
        padding-left: 0;
      }

      a {
        font: var(--nav-menu-lv1);
        transition: color 0.2s ease;

        &:hover {
          color: var(--yellow);
        }
      }
    }
  }

  a {
    color: var(--white);
  }

  .footer-left-bottom {
    display: flex;
    gap: var(--spacing-4);
    /* width: 70%; */

    p {
      font: var(--section-secondary-text);
    }

    .img-wrap {
      display: flex;
      width: 100%;
      max-width: 200px;
      height: auto;
      border-radius: var(--border-radius-s);

      img {
        object-fit: contain;
      }
    }

    .social {
      padding: 0;
    }

    .flex-wrap-v {
      width: 50%;
    }
  }
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: var(--spacing-5);
  width: 50%;
  gap: var(--spacing-4);
  border-left: 10px solid var(--light-black-bg);
}

.mobile-active {
  display: none;
}

/* ------------------ Services (services.htm) ------------------ */

#services-page {
  .hero {
    justify-content: center;
    align-items: center;
    padding-bottom: var(--spacing-12);
    gap: var(--spacing-4);
  }

  .service-card {
    flex-direction: row;
    justify-content: space-between;
    padding: var(--spacing-5);
    align-items: flex-start;
    gap: var(--spacing-4);

    h2 {
      font: var(--section-main-heading);
    }
  }

  .quote-heading {
    --section-secondary-heading: var(--section-tertiary-heading);

    .fa-quote-right {
      font-size: 2rem;
      top: -20%;
    }

    h3 {
      font-family: var(--font-family-display);
    }
  }

  .service-content {
    gap: var(--spacing-10);
  }

  .grid-wrap {
    --grid-ratio: minmax(0, 5.5fr) minmax(0, 4.5fr);

    .flex-wrap-v {
      width: auto;
      gap: var(--spacing-2);
      align-self: flex-start;
      padding: 0;

      ul {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-1);
        padding-left: var(--spacing-2);
      }

      li {
        font: var(--section-main-text);
        list-style-type: disc;
      }

      p {
        font: var(--section-quatenary-heading);
        min-height: 0;
      }
    }

    .service-quote {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: var(--spacing-4);
      padding-bottom: var(--spacing-4);

      .img-wrap {
        display: flex;
        width: 100%;
        height: auto;
        max-height: 250px;
        border-top-left-radius: var(--border-radius-s);
        border-top-right-radius: var(--border-radius-s);
        overflow: hidden;
      }
    }

    &:last-child {
      --grid-ratio: minmax(0, 4.5fr) minmax(0, 5.5fr);
    }
  }
}

/* ------------------ About (about.htm) ------------------ */
#about-page {
  .hero {
    justify-content: center;
    align-items: center;
    padding-bottom: var(--spacing-12);
    gap: var(--spacing-4);
  }

  .about-content {
    gap: var(--section-gap-lg);
    align-items: center;
    justify-content: center;
  }

  .about-page-top {
    justify-content: space-between;
    padding: 0;

    h2 {
      font: var(--section-main-heading);
      color: var(--white);
      width: 30%;
    }

    p {
      width: 60%;
    }
  }

  .quote-heading {
    --section-secondary-heading: var(--section-display);

    align-items: center;
    justify-content: center;
    padding: var(--spacing-6) 0;

    .fa-quote-right {
      font-size: 3.5rem;
      left: calc(15% - 4rem);
    }
  }

  .grid-wrap {
    --grid-ratio: repeat(2, minmax(400px, 1fr));

    gap: var(--spacing-2);
    margin-left: calc(var(--page-edge) * -1.5);

    .grid-item {
      display: flex;
      position: relative;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-color: var(--light-black-bg);
      padding: var(--spacing-4);
      overflow: hidden;
      border-radius: var(--border-radius-s);

      span {
        display: block;
        position: absolute;
        color: var(--grey);
        left: -0.2rem;
        top: 50%;
        transform: translateY(-50%);
        font: var(--heading-h1);
      }

      h3 {
        font: var(--section-tertiary-heading);
        color: var(--white);
        z-index: 5;
      }
    }
  }

  .about-page-bottom {
    justify-content: space-between;
    padding: 0;
    gap: var(--spacing-6);

    .main-btn {
      width: max-content;
    }

    .about-text {
      display: flex;
      flex-direction: column;
      gap: var(--spacing-5);
      justify-content: center;

      .about-text-top {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-3);
      }

      h2 {
        font: var(--section-main-heading);
        color: var(--white);
      }
    }
  }
}

/* ------------------ Contact (contact.htm) ------------------ */

.contact-page {
  gap: var(--spacing-6);
  padding-top: var(--section-gap-lg);
  padding-bottom: var(--section-gap-lg);
  border-bottom: 5px solid var(--light-black-bg);

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
  }

  .contact {
    flex-direction: column;
    gap: var(--spacing-1);
  }
}

.contact-page-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-5);

  h1 {
    font: var(--page-h1);
    color: var(--white);
  }

  .contact-page-map {
    display: flex;
    position: relative;
    overflow: hidden;
    width: var(100% + var(--spacing-3));
    min-height: 13rem;
    border-radius: var(--border-radius-s);

    iframe {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
  }
}

.contact-page-right {
  display: flex;
  flex-direction: column;
  width: 100%;

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    width: 100%;
    flex: 1;
    min-height: 0;

    input,
    textarea {
      border: none;
      font: var(--section-main-text);
      background-color: var(--light-black-bg);
      color: var(--white);

      &:focus {
        outline: none;
        border: none;
        background-color: var(--light-black-bg);
      }
    }

    textarea {
      flex: 1;
      min-height: 20dvh;
      padding: 0;
    }

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active,
    input:autofill {
      -webkit-box-shadow: 0 0 0 1000px var(--light-black-bg) inset !important;
      box-shadow: 0 0 0 1000px var(--light-black-bg) inset !important;
      -webkit-text-fill-color: var(--white) !important;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: var(--spacing-1);
      background-color: var(--light-black-bg);
      padding: var(--spacing-2) var(--spacing-3);
      border-radius: var(--border-radius-s);
      flex-grow: 1;
    }
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder,
  .contact-form label {
    color: var(--light-grey);
    font: var(--section-label);
  }

  .contact-form .form-group:focus-within {
    outline: none;
    border-color: var(--colour-primary);
    box-shadow: 0 0 0.25rem var(--colour-primary);
  }

  .contact-form button {
    margin: 0;
  }
}

/* ----- Captcha Overrides ----- */
#captcha.include-captcha {
  display: none;
  flex-direction: column;
  color: var(--black) !important;
  align-items: flex-start !important;
  margin-top: var(--spacing-4) !important;

  .CaptchaPanel {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--spacing-2) !important;
    width: 100% !important;
    margin: 0 0 var(--spacing-2) 0 !important;
    text-align: left !important;
    padding: 0 !important;
  }
}

.CaptchaImagePanel,
.CaptchaMessagePanel,
.CaptchaWhatsThisPanel,
.CaptchaAnswerPanel {
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
}

#CaptchaImage {
  border-radius: var(--border-radius-s) !important;
  width: 50%;
  max-width: 200px;
}

#CaptchaAnswer {
  width: 100%;
  padding: var(--spacing-2) var(--spacing-3);
  border-radius: var(--border-radius-s);
  border: 1px solid var(--grey);
  font: var(--body-xs-reg);
  background-color: var(--light-black-bg);
  color: var(--white);

  &:focus {
    outline: none;
    border-color: var(--colour-primary);
    box-shadow: 0 0 0.25rem var(--colour-primary);
  }
}

.CaptchaMessagePanel,
.CaptchaWhatsThisPanel a {
  color: var(--colour-primary) !important;
  font: var(--body-xs-reg) !important;
}

.CaptchaWhatsThisPanel a {
  text-decoration: underline;
  text-underline-offset: 0.15rem;

  &:hover {
    color: var(--colour-primary-hover) !important;
  }
}

.captcha-button {
  display: none;
  width: 100%;
}

#submit-btn {
  width: 100% !important;
}

/* ------------------ Thank You (thankyou.htm) ------------------ */
#thank-you-page {
  .hero {
    justify-content: center;
    align-items: center;
    padding-bottom: var(--spacing-12);
    gap: var(--spacing-4);
  }
}

/* ------------------ Coming Soon (coming-soon.htm) ------------------ */

#coming-soon-page {
  .hero {
    justify-content: center;
    align-items: center;
    padding-bottom: var(--spacing-12);
    gap: var(--spacing-4);
  }
}
/*================ MEDIA QUERY ================*/
/* Screen height */
@media only screen and (max-height: 650px) {
  .hero {
    height: 600px;
  }
}

/* General  Media Queries */
@media only screen and (max-width: 1400px) {
  .home-service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 1300px) {
  .hero-right {
    width: 40%;
  }
}

@media only screen and (max-width: 1100px) {
  #services-page {
    .service-card {
      flex-direction: column;
    }

    .grid-wrap {
      gap: var(--spacing-4);
    }
  }

  #about-page {
    .grid-wrap {
      --grid-ratio: repeat(2, minmax(250px, 1fr));

      .grid-item h3 {
        font: var(--body-m-bold);
      }
    }
  }
}

@media only screen and (max-width: 1000px) {
  .hero-right {
    width: 50%;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-7);
    padding: var(--section-gap-xl) 0;

    .footer-left {
      order: 1;
      width: 100%;
      align-items: center;
      gap: var(--section-gap-xl);

      .footer-nav-links {
        li {
          padding: 0 var(--spacing-2);
        }
      }
    }

    .mobile-active {
      display: flex;
    }

    .desktop-active {
      display: none;
    }

    .mobile-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;

      .footer-left-bottom {
        order: 2;
        border-top: 10px solid var(--light-black-bg);
        flex-direction: column;
        text-align: center;
        padding: var(--page-edge);
        width: 100%;
        gap: var(--spacing-2);
        align-items: center;
        justify-content: center;

        .social {
          width: 100%;
          align-items: center;
          justify-content: center;
        }

        .flex-wrap-v {
          width: 70%;
          padding: 0;
        }
      }

      .mobile-active.footer-right {
        order: 1;
        width: 100%;
        border-left: none;
        gap: var(--spacing-1);
        padding: var(--page-edge);
        justify-content: center;
        align-items: center;
        border-top: 10px solid var(--light-black-bg);

        .contact {
          align-items: center;
          justify-content: center;
          flex-direction: column;
          gap: var(--spacing-1);

          p {
            width: 100%;
            text-align: center;
          }

          a {
            /* --section-tertiary-heading: var(--body-m-bold);
            font-family: var(--font-family-display); */
            width: 100%;
            text-align: center;
          }
        }
      }
    }
  }

  #about-page {
    .quote-heading {
      .fa-quote-right {
        font-size: 3rem;
        left: 0;
      }
    }
  }
}

@media only screen and (max-width: 950px) {
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-4);
    max-height: 800px;
    min-height: 650px;
    height: clamp(60dvh, 90vw, 100dvh);
    padding: var(--spacing-12) var(--page-edge);
    padding-bottom: calc(var(--spacing-12) * 3);

    .hero-left {
      width: 100%;
      padding-top: var(--spacing-6);
      padding-bottom: 0;

      h1 {
        justify-content: center;
      }
    }

    .hero-right {
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      padding: 0;
    }
  }

  .home-service {
    gap: var(--spacing-6);
  }

  .home-service-top {
    .home-service-top-left {
      span {
        display: block;
      }
    }

    .home-service-top-right {
      width: 50%;
      height: auto;
      justify-content: center;
    }
  }

  .subpage-bottom {
    p {
      width: 80%;
    }
  }
}

@media only screen and (max-width: 850px) {
  #about-page {
    .about-page-bottom {
      flex-direction: column;
      gap: var(--spacing-6);

      .about-text {
        order: 1;
        width: 100%;
      }
    }
  }
}

@media only screen and (max-width: 768px) {
  .home-about {
    flex-direction: column;
    gap: var(--spacing-6);

    .home-about-left {
      width: 100%;
      gap: var(--spacing-6);
    }

    .home-about-right {
      width: 100%;
    }
  }

  #services-page {
    .grid-wrap {
      --grid-ratio: minmax(0, 1fr) !important;

      .service-card {
        order: 2;
      }

      .service-quote {
        order: 1;
      }
    }
  }

  .contact-page {
    flex-direction: column;

    .contact-page-left {
      width: 100%;
    }

    .contact-page-right {
      width: 100%;
    }
  }
}

@media only screen and (max-width: 700px) {
  .home-service-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .home-about {
    flex-direction: column;
    .home-about-left {
      width: 100%;
    }

    .home-about-right {
      width: 100%;
    }
  }

  .home-quick-links {
    flex-direction: column;
    gap: var(--spacing-5);
    align-items: flex-start;
    text-align: left;

    .home-ql-right {
      order: 1;
      align-items: flex-start;
      padding-left: var(--page-edge);
    }
    .home-ql-left {
      order: 2;
    }
  }
}

@media only screen and (max-width: 500px) {
  .linear-gradient-btm {
    mask-image: linear-gradient(
      to top,
      transparent 0%,
      rgba(0, 0, 0, 0.25) 8%,
      rgba(0, 0, 0, 0.6) 14%,
      rgba(0, 0, 0, 0.9) 20%,
      black 26%,
      black 100%
    );
  }

  .hero {
    padding-bottom: calc(var(--spacing-10) * 3);
  }

  .home-service-top {
    flex-direction: column;

    .home-service-top-left {
      width: 100%;

      span {
        display: inline;
      }
    }

    .home-service-top-right {
      width: 100%;
    }
  }

  .footer-nav-links {
    flex-direction: column;
    gap: var(--spacing-2);
    align-items: center;
    justify-content: center;

    li {
      border-right: none !important;
      padding: 0;
    }
  }

  .footer-left-bottom {
    .flex-wrap-v {
      width: 100% !important;
    }
  }

  #about-page {
    .about-page-top {
      flex-direction: column;
      gap: var(--spacing-4);

      h2 {
        width: 100%;
      }

      p {
        width: 100%;
      }
    }

    .grid-wrap {
      --grid-ratio: repeat(2, minmax(180px, 1fr)) !important;
      overflow: hidden;
    }
  }
}

@media only screen and (max-width: 385px) {
  .hero {
    height: clamp(70dvh, 100vw, 100dvh);
  }

  .hero h1 {
    margin: var(--spacing-2) 0;
    line-height: 2.5rem;
  }
}
