@charset "UTF-8";
nav {
  box-shadow: var(--box-shadow);
}
nav ul {
  list-style-type: none;
  padding: 0;
}
nav ul ul {
  padding-left: 1rem;
  font-size: smaller;
}
nav a {
  font-weight: normal;
  color: var(--nav-link-color);
}
nav a.active {
  font-weight: bold;
  color: var(--nav-link-active-color);
}

@media (max-width: 768px) {
  html:has(body.sticky-mobile-nav) {
    scroll-padding-top: 5rem;
  }
  body.sticky-mobile-nav {
    padding-top: 5rem;
  }
  body.sticky-mobile-nav nav {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg-color);
    padding: 0.5rem;
    height: 3rem;
  }
  body.sticky-mobile-nav nav .toggle {
    display: none;
  }
  body.sticky-mobile-nav nav .toggle:checked ~ ul {
    right: 0;
  }
  body.sticky-mobile-nav nav .toggle:checked ~ .toggle-label span {
    background: transparent;
  }
  body.sticky-mobile-nav nav .toggle:checked ~ .toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }
  body.sticky-mobile-nav nav .toggle:checked ~ .toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }
  body.sticky-mobile-nav nav .toggle-label {
    display: block !important;
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 1000;
    height: 24px;
    width: 30px;
    cursor: pointer;
  }
  body.sticky-mobile-nav nav .toggle-label span,
  body.sticky-mobile-nav nav .toggle-label span::before,
  body.sticky-mobile-nav nav .toggle-label span::after {
    display: block;
    background: var(--nav-text-color);
    height: 2px;
    width: 30px;
    position: absolute;
    transition: all 0.3s ease;
  }
  body.sticky-mobile-nav nav .toggle-label span {
    top: 11px;
  }
  body.sticky-mobile-nav nav .toggle-label span::before, body.sticky-mobile-nav nav .toggle-label span::after {
    content: "";
  }
  body.sticky-mobile-nav nav .toggle-label span::before {
    top: -8px;
  }
  body.sticky-mobile-nav nav .toggle-label span::after {
    top: 8px;
  }
  body.sticky-mobile-nav nav > ul {
    position: fixed;
    background: var(--nav-bg-color);
    top: 0;
    right: -100%; /* Start off-screen */
    bottom: 0;
    width: 70%;
    overflow-x: scroll;
    max-width: 300px;
    flex-direction: column;
    padding: 4rem 1rem 1rem 1rem;
    transition: right 0.3s ease-in-out;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  body.sticky-mobile-nav nav > ul .toggle-label {
    display: block;
  }
  body.sticky-mobile-nav nav > ul li {
    text-align: right;
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  body.sticky-mobile-nav nav > ul li ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 1rem;
  }
}
@media (min-width: 769px) {
  .toggle-label {
    display: none !important;
  }
  body.left-nav nav {
    align-items: start;
    margin-bottom: 1rem;
  }
  body.left-nav nav ul {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  body.left-nav nav ul,
  body.left-nav nav ul li {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  body.left-nav nav ul li ul {
    padding-left: 1rem;
    font-size: 1rem;
  }
  body.horizontal-nav nav {
    margin-bottom: 1rem;
    justify-content: center;
  }
  body.horizontal-nav nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 0 2rem;
    flex-wrap: wrap;
  }
  body.horizontal-nav nav ul li {
    text-align: left;
    position: relative;
    /* Nav Dropdown */
  }
  body.horizontal-nav nav ul li:hover ul {
    display: block;
  }
  body.horizontal-nav nav ul li ul {
    background: var(--nav-bg-color);
    border: var(--nav-border);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: none;
    height: auto;
    left: -2px;
    padding: 0.5rem 1rem;
    position: absolute;
    top: 1.7rem;
    white-space: nowrap;
    width: auto;
    z-index: 1;
    box-shadow: none;
  }
  body.horizontal-nav nav ul li ul::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.5rem;
    height: 0.5rem;
  }
  body.horizontal-nav nav ul li ul li,
  body.horizontal-nav nav ul li ul li a {
    display: block;
  }
}
:root {
  --color-bg: #efefef;
  --color-bg-secondary: var(--color-bg);
  --color-text: #111111;
  --color-link: var(--color-text);
  --font-family-heading: system-ui, sans-serif;
  --font-family-body: system-ui, sans-serif;
  --line-height: 1.5;
  --link-decoration: underline;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
  --border-radius: 3px;
  --border: 2px solid var(--color-text);
  --box-shadow: none;
  --width-content: 1300px;
  --width-card: 285px;
  --width-card-medium: 460px;
  --width-card-wide: 800px;
  --header-bg-color: var(--color-bg-secondary);
  --header-text-color: var(--color-text);
  --header-border: var(--border);
  --nav-bg-color: var(--color-bg-secondary);
  --nav-text-color: var(--color-text);
  --nav-link-color: var(--color-link);
  --nav-link-active-color: var(--color-text);
  --nav-border: var(--border);
  --main-bg-color: var(--color-bg-secondary);
  --main-text-color: var(--color-text);
  --main-heading-color: var(--color-text);
  --main-border: var(--border);
  --form-bg-color: var(--color-bg);
  --form-text-color: var(--color-text);
  --form-border: var(--border);
  --form-input-bg-color: var(--color-bg);
  --form-input-text-color: var(--color-text);
  --form-input-border: var(--border);
  --form-button-bg-color: var(--color-bg);
  --form-button-text-color: var(--color-link);
  --form-button-border: 2px solid var(--color-link);
  --form-button-hover-bg-color: var(--color-bg);
  --form-button-hover-text-color: var(--color-link);
  --form-button-hover-border: var(--form-button-border);
}

/* MVP.css v1.17.2 - https://github.com/andybrewer/mvp */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family-body);
  line-height: var(--line-height);
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}

footer,
header,
main {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 3rem 1rem;
}

hr {
  background-color: var(--color-bg-secondary);
  border: none;
  height: 1px;
  margin: 4rem 0;
  width: 100%;
}

img,
.image-wrapper {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}

/* Headers */
article header,
div header,
main header {
  padding-top: 0;
}

/* Typography */
code,
samp {
  background-color: var(--color-bg-secondary);
  border-radius: var(--border-radius);
  color: var(--color-text);
  display: inline-block;
  margin: 0 0.1rem;
  padding: 0 0.5rem;
}

details {
  margin: 1.3rem 0;
}
details summary {
  font-weight: bold;
  cursor: pointer;
}

mark {
  padding: 0.1rem;
}

ol li,
ul li {
  padding: 0.2rem 0;
}

p {
  margin: 0.75rem 0;
  padding: 0;
  width: 100%;
}

pre {
  margin: 1rem 0;
  max-width: var(--width-card-wide);
  padding: 1rem 0;
}
pre code,
pre samp {
  display: block;
  max-width: var(--width-card-wide);
  padding: 0.5rem 2rem;
  white-space: pre-wrap;
}

sup {
  font-size: xx-small;
  font-weight: bold;
  margin: 0.2rem;
  padding: 0.2rem 0.3rem;
  position: relative;
  top: -2px;
}

a {
  color: var(--color-link);
  text-decoration: var(--link-decoration);
  text-decoration-style: var(--link-decoration-style);
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: var(--link-decoration-hover);
}

button,
.button,
input[type=submit] {
  border-radius: var(--border-radius);
  font-family: var(--font-family-body);
  background-color: var(--form-button-bg-color);
  border: var(--form-button-border);
  color: var(--form-button-text-color);
  line-height: var(--line-height);
  display: inline-block;
  font-size: medium;
  font-weight: bold;
  margin: 0.5rem 0;
  width: fit-content;
  padding: 1rem 2rem;
  text-decoration: none;
  cursor: pointer;
}
button:hover, button:active,
.button:hover,
.button:active,
input[type=submit]:hover,
input[type=submit]:active {
  background-color: var(--form-button-hover-bg-color);
  border: var(--form-button-hover-border);
  color: var(--form-button-hover-text-color);
}
button:disabled,
.button:disabled,
input[type=submit]:disabled {
  background: var(--color-bg-secondary);
  border-color: var(--color-bg-secondary);
  cursor: not-allowed;
}

figure {
  margin: 0;
  padding: 0;
}
figure img {
  max-width: 100%;
}

form {
  border: var(--form-border);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  display: block;
  max-width: var(--width-card-wide);
  min-width: var(--width-card);
  padding: 1.5rem;
  text-align: var(--justify-normal);
  background: var(--form-bg-color);
  color: var(--form-text-color);
}
form header {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
}

input,
label,
select,
textarea {
  display: block;
  font-size: inherit;
  max-width: var(--width-card-wide);
}

input[type=checkbox],
input[type=radio] {
  display: inline-block;
}
input[type=checkbox] + label,
input[type=checkbox] + label,
input[type=radio] + label,
input[type=radio] + label {
  display: inline-block;
  font-weight: normal;
  position: relative;
  top: 1px;
}

input[type=range] {
  padding: 0.4rem 0;
}

input,
select,
textarea {
  border-radius: var(--border-radius);
  font-family: var(--font-family-body);
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  background-color: var(--form-input-bg-color);
  color: var(--form-input-text-color);
  border: var(--form-input-border);
}

input[type=text],
input[type=password],
input[type=email],
textarea {
  width: calc(100% - 1.6rem);
}

input[readonly],
textarea[readonly] {
  background-color: var(--color-bg-secondary);
}

label {
  font-weight: bold;
  margin-bottom: 0.2rem;
}

dialog {
  max-width: 90%;
  max-height: 85dvh;
  margin: auto;
  padding-block: 0;
  padding-inline: 20px;
  border: var(--border);
  border-radius: var(--border-radius);
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
  scrollbar-color: transparent transparent;
  animation: bottom-to-top 0.25s ease-in-out forwards;
}
@media (min-width: 650px) {
  dialog {
    max-width: 39rem;
  }
}
dialog hr {
  margin-block: 1rem;
}
dialog::-webkit-scrollbar {
  width: 0;
  display: none;
}
dialog::-webkit-scrollbar-track {
  background: transparent;
}
dialog::-webkit-scrollbar-thumb {
  background-color: transparent;
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

@keyframes bottom-to-top {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
table {
  border: var(--border);
  border-radius: var(--border-radius);
  border-spacing: 0;
  margin: 1rem auto;
  max-width: 100%;
  overflow-x: auto;
  padding: 0;
  white-space: nowrap;
}
table td,
table th,
table tr {
  padding: 0.4rem 0.8rem;
  text-align: var(--justify-important);
}
table thead {
  background-color: var(--color-bg);
  border-collapse: collapse;
  border-radius: var(--border-radius);
  margin: 0;
  padding: 0;
}
table thead tr:first-child th:first-child {
  border-top-left-radius: var(--border-radius);
}
table thead tr:first-child th:last-child {
  border-top-right-radius: var(--border-radius);
}
table thead th:first-child,
table tr td:first-child {
  text-align: var(--justify-normal);
}
table tr:nth-child(even) {
  background-color: var(--color-accent);
}

blockquote {
  display: block;
  font-size: x-large;
  line-height: var(--line-height);
  margin: 1rem auto;
  max-width: var(--width-card-medium);
  padding: 1.5rem 1rem;
  text-align: var(--justify-important);
}
blockquote footer {
  display: block;
  font-size: small;
  line-height: var(--line-height);
  padding: 1.5rem 0;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-scrollbar) transparent;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-scrollbar);
  border-radius: 10px;
}

* {
  box-sizing: border-box;
}

body {
  padding: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
nav {
  font-family: var(--font-family-heading);
  font-weight: normal;
  line-height: var(--line-height);
  text-wrap: balance;
}
main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main nav {
  color: var(--main-heading-color);
}
.headings-centered main h1,
.headings-centered main h2,
.headings-centered main h3,
.headings-centered main h4,
.headings-centered main h5,
.headings-centered main h6,
.headings-centered main nav {
  text-align: center;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.2rem;
}

h4,
h5,
h6 {
  font-size: 1rem;
}

header {
  background: var(--header-bg-color);
  border-radius: var(--border-radius);
  border: var(--header-border);
  box-shadow: var(--box-shadow);
  color: var(--header-text-color);
  text-align: var(--justify-important);
  text-shadow: var(--header-text-shadow);
  width: var(--width-content);
  margin-top: 1rem;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  header .desktop-image {
    display: none;
  }
}
@media (min-width: 769px) {
  header .mobile-image {
    display: none;
  }
}
header h1 {
  z-index: 2;
  position: relative;
  font-family: var(--font-family-heading);
}
.header-centered header h1 {
  text-align: center;
}
.header-centered-dark header h1 {
  text-align: center;
  padding: 0.5rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  width: fit-content;
  margin: 0 auto;
  border: var(--header-border);
  border-color: var(--header-text-color);
}
header .banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
  max-width: none;
}
header .banner img {
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main {
  padding: 3rem 0 2rem; /* mobile only */
  width: var(--width-content);
  max-width: 100%;
}
main .content img,
main .content .image-wrapper {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 695px;
  height: auto;
  border-radius: var(--border-radius-small);
}
main .content img.fade-in {
  animation: 0.1s linear fade-in 0s 1;
}

img {
  background-size: cover !important;
  color: transparent;
  position: relative;
}

.image-wrapper {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center;
}

body > footer {
  background: var(--color-bg-secondary);
  border-radius: var(--border-radius);
  border: var(--border);
  width: var(--width-content);
  box-shadow: var(--box-shadow);
  max-width: 100%;
  margin-bottom: 1rem;
  text-align: center;
  padding: 1rem;
}
body > footer p {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
body > footer .socials {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
body > footer .socials li {
  padding: 0;
}
body > footer .socials li a img {
  width: 3rem;
  height: auto;
  filter: invert(99%) sepia(47%) saturate(588%) hue-rotate(9deg) brightness(108%) contrast(95%);
  transition: all 0.3s ease-in-out;
}
body > footer .socials li a:hover img {
  transform: scale(120%);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  filter: invert(99%) sepia(47%) saturate(588%) hue-rotate(9deg) brightness(108%) contrast(95%) drop-shadow(0px 0px 3px #fff);
}

article {
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 2rem;
  background: var(--main-bg-color);
  border: var(--main-border);
  color: var(--main-text-color);
  box-shadow: var(--box-shadow);
}

nav {
  border-radius: var(--border-radius);
  border: var(--nav-border);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 1rem;
  margin-bottom: 2rem;
  background: var(--nav-bg-color);
  flex-wrap: wrap;
  font-size: 1.2rem;
  color: var(--nav-text-color);
}
nav .toggle-label,
nav .toggle {
  display: none;
}
nav a {
  color: var(--nav-link-color);
}
nav a.active {
  color: var(--nav-link-active-color);
}

@media (min-width: 769px) {
  body.left-nav main {
    grid-template-columns: 10rem 1fr;
    grid-template-rows: 1fr min-content;
    grid-template-areas: "nav content" "nav right";
  }
}
@media (min-width: 769px) and (min-width: 1000px) {
  body.left-nav main {
    grid-template-columns: 13rem 1fr 16rem;
    grid-template-areas: "nav content right";
  }
}
@media (min-width: 769px) {
  body.horizontal-nav main {
    grid-template-columns: 1fr 16rem;
    grid-template-rows: min-content;
    grid-template-areas: "nav nav" "content right";
  }
  main {
    display: grid;
    gap: 0 1rem;
    min-height: 30rem;
    padding: 1rem 0 0;
  }
  main nav {
    border: var(--nav-border);
    grid-area: nav;
  }
  main .content {
    grid-area: content;
    margin: 0 0 1rem;
    padding-bottom: 2rem;
  }
  main .right {
    grid-area: right;
    margin: 0 0 1rem;
  }
  main .right h3 {
    text-align: center;
  }
  main .right ul {
    list-style-type: none;
    padding: 0;
  }
}
.contact-form {
  max-width: var(--width-card-medium);
  margin: 4rem auto 0;
  padding: 1rem;
  min-width: min-content;
}
.contact-form input[type=text],
.contact-form input[type=password],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
}

ul.items {
  display: flex;
  list-style-type: none;
  margin: 0 0 2rem;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
ul.items > * {
  width: 14rem;
  max-width: 100%;
}
ul.items h3,
ul.items p {
  margin-bottom: 0;
}
ul.items .image-link img {
  object-fit: cover;
}

a.image-link {
  display: block;
}

body.item .content {
  display: grid;
  gap: 4rem;
  grid-template-areas: "title" "gallery" "description" "contact";
}
body.item .content .title {
  grid-area: title;
}
body.item .content .title h1 {
  margin: 0;
  padding: 0;
}
body.item .content .gallery {
  grid-area: gallery;
}
body.item .content .description {
  grid-area: description;
}
body.item .content .contact {
  grid-area: contact;
}
body.item .content .contact .contact-form {
  margin-top: 0;
}
@media (min-width: 900px) {
  body.item.one-column .content {
    gap: 2rem;
    grid-template-areas: "title title" "gallery description" "contact description";
    grid-template-columns: 450px 1fr;
    grid-template-rows: min-content min-content 1fr;
  }
}
@media (min-width: 1100px) {
  body.item.two-columns .content {
    gap: 2rem;
    grid-template-areas: "title title" "gallery description" "contact description";
    grid-template-columns: 400px 1fr;
    grid-template-rows: min-content min-content 1fr;
  }
}

ul.image-gallery {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
ul.image-gallery li {
  width: calc((100% - 1rem) / 3);
  margin: 0;
  padding: 0;
}
@media (min-width: 769px) {
  ul.image-gallery li {
    width: calc((100% - 1.5rem) / 4);
  }
}
ul.image-gallery li a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-small);
  transition: all 0.3s ease-in;
}
ul.image-gallery li a img {
  object-fit: cover;
  transition: all 0.3s ease-in;
  border-radius: var(--border-radius-small);
}
ul.image-gallery li a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 3px rgba(0, 0, 0, 0.2);
}
ul.image-gallery li a:hover img {
  transform: scale(1.2);
}
ul.image-gallery li figcaption {
  font-weight: bold;
  color: var(--color-bg);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--border-radius-small);
}

ul.team {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.team li {
  margin: 2rem 0;
  padding: 0;
}
ul.team li::after {
  content: "";
  display: block;
  clear: both;
}
ul.team li.has-image {
  padding-left: 11rem;
  min-height: 10rem;
  position: relative;
}
ul.team li.has-image .image-link {
  position: absolute;
  width: 10rem;
  left: 0;
  top: 0;
}

ul.news-posts {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

dl dt {
  font-weight: bold;
}

body.team-member .content .image-wrapper {
  width: 50%;
  margin: 2rem auto;
}
body.item .current-image {
  margin-bottom: 1rem;
}
body.item .gallery-full-size-images {
  display: none;
}

.gallery-single-image {
  max-width: 100%;
  margin: 2rem 0;
}
.gallery-single-image figure {
  margin: 0;
}
.gallery-single-image img.full-size-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.gallery-single-image figcaption {
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

.gallery-navigation {
  margin: 2rem 0;
}
.gallery-navigation a {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 3px;
}
.gallery-navigation a:hover {
  text-decoration: underline;
}

.stripe-button {
  width: 288px;
  margin: 0 auto;
}

.etsy-button {
  margin: 2rem 0;
}
.etsy-button .button {
  margin: 0 auto;
}

.map-embed {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border: var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin: 2rem 0;
}
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@font-face {
  font-family: "Fjalla One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/fjalla-one-latin-400-normal.woff2") format("woff2"), url("/assets/fonts/fjalla-one-latin-400-normal.woff") format("woff");
}
:root {
  --color-bg: #ffffff;
  --color-text: #444444;
  --color-link: #ec2023;
  --color-link-hover: #333;
  --border-radius: 5px;
  --border: 0px solid #58648c;
  --box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  --width-content: 1300px;
  --font-family-body:
    ui-rounded, "Hiragino Maru Gothic ProN", Quicksand, Comfortaa, Manjari,
    "Arial Rounded MT", "Arial Rounded MT Bold", Calibri, source-sans-pro,
    sans-serif;
  --font-family-heading:
    "Fjalla One", ui-rounded, "Hiragino Maru Gothic ProN", Quicksand, Comfortaa,
    Manjari, "Arial Rounded MT", "Arial Rounded MT Bold", Calibri,
    source-sans-pro, sans-serif;
  --link-decoration: underline;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
  --header-text-color: #ec2023;
  --nav-bg-color: #ec2023;
  --nav-link-color: #ffffff;
  --nav-link-active-color: #f5c211;
  --main-heading-color: #ec2023;
  --form-border: 1px solid #ec2023;
  --form-input-bg-color: #e0e0e0;
  --form-button-bg-color: #ec2023;
  --form-button-text-color: #ffffff;
  --form-button-border: 0px solid #ec2023;
  --form-button-hover-bg-color: #241f31;
  --form-button-hover-text-color: #ffffff;
  --form-button-hover-border: 0px solid #241f31;
}

@media (min-width: 769px) {
  body {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1005%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/rect%3e%3cpath d='M277.92 432.51L342.87 470.01L342.87 545.01L277.92 582.51L212.96 545.01L212.96 470.01zM472.78 320.01L537.73 357.51L537.73 432.51L472.78 470.01L407.82 432.51L407.82 357.51zM537.73 -17.49L602.68 20.01L602.68 95.01L537.73 132.51L472.78 95.01L472.78 20.01zM602.68 320.01L667.64 357.51L667.64 432.51L602.68 470.01L537.73 432.51L537.73 357.51zM667.64 -17.49L732.59 20.01L732.59 95.01L667.64 132.51L602.68 95.01L602.68 20.01zM797.54 207.51L862.5 245.01L862.5 320.01L797.54 357.51L732.59 320.01L732.59 245.01zM862.5 545.01L927.45 582.51L927.45 657.51L862.5 695.01L797.54 657.51L797.54 582.51zM992.41 95.01L1057.36 132.51L1057.36 207.51L992.41 245.01L927.45 207.51L927.45 132.51zM1122.31 545.01L1187.27 582.51L1187.27 657.51L1122.31 695.01L1057.36 657.51L1057.36 582.51zM1252.22 545.01L1317.17 582.51L1317.17 657.51L1252.22 695.01L1187.27 657.51L1187.27 582.51zM1382.13 545.01L1447.08 582.51L1447.08 657.51L1382.13 695.01L1317.17 657.51L1317.17 582.51zM1512.04 320.01L1576.99 357.51L1576.99 432.51L1512.04 470.01L1447.08 432.51L1447.08 357.51zM1447.08 432.51L1512.04 470.01L1512.04 545.01L1447.08 582.51L1382.13 545.01L1382.13 470.01zM1512.04 545.01L1576.99 582.51L1576.99 657.51L1512.04 695.01L1447.08 657.51L1447.08 582.51z' stroke='rgba(226%2c 241%2c 255%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M270.42 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM335.37 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM335.37 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM270.42 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM205.46 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM205.46 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM465.28 320.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM530.23 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM530.23 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM465.28 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM400.32 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM400.32 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM530.23 -17.49 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM595.18 20.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM595.18 95.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM530.23 132.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM465.28 95.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM465.28 20.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM595.18 320.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM660.14 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM660.14 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM595.18 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM660.14 -17.49 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM725.09 20.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM725.09 95.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM660.14 132.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM790.04 207.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM855 245.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM855 320.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM790.04 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM725.09 320.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM725.09 245.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM855 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM919.95 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM919.95 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM855 695.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM790.04 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM790.04 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM984.91 95.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1049.86 132.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1049.86 207.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM984.91 245.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM919.95 207.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM919.95 132.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1114.81 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1179.77 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1179.77 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1114.81 695.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1049.86 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1049.86 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1244.72 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1309.67 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1309.67 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1244.72 695.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1374.63 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1439.58 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1439.58 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1374.63 695.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1504.54 320.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1569.49 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1569.49 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1504.54 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1439.58 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1439.58 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1504.54 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1374.63 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1569.49 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1569.49 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1504.54 695.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0z' fill='rgba(226%2c 241%2c 255%2c 1)'%3e%3c/path%3e%3cpath d='M135.91 -29.31L179.21 -4.31L179.21 45.69L135.91 70.69L92.6 45.69L92.6 -4.31zM179.21 195.69L222.51 220.69L222.51 270.69L179.21 295.69L135.91 270.69L135.91 220.69zM135.91 420.69L179.21 445.69L179.21 495.69L135.91 520.69L92.6 495.69L92.6 445.69zM179.21 495.69L222.51 520.69L222.51 570.69L179.21 595.69L135.91 570.69L135.91 520.69zM265.81 45.69L309.12 70.69L309.12 120.69L265.81 145.69L222.51 120.69L222.51 70.69zM265.81 195.69L309.12 220.69L309.12 270.69L265.81 295.69L222.51 270.69L222.51 220.69zM309.12 -29.31L352.42 -4.31L352.42 45.69L309.12 70.69L265.81 45.69L265.81 -4.31zM352.42 45.69L395.72 70.69L395.72 120.69L352.42 145.69L309.12 120.69L309.12 70.69zM309.12 120.69L352.42 145.69L352.42 195.69L309.12 220.69L265.81 195.69L265.81 145.69zM352.42 495.69L395.72 520.69L395.72 570.69L352.42 595.69L309.12 570.69L309.12 520.69zM439.02 45.69L482.33 70.69L482.33 120.69L439.02 145.69L395.72 120.69L395.72 70.69zM482.33 120.69L525.63 145.69L525.63 195.69L482.33 220.69L439.02 195.69L439.02 145.69zM482.33 270.69L525.63 295.69L525.63 345.69L482.33 370.69L439.02 345.69L439.02 295.69zM568.93 -29.31L612.23 -4.31L612.23 45.69L568.93 70.69L525.63 45.69L525.63 -4.31zM568.93 270.69L612.23 295.69L612.23 345.69L568.93 370.69L525.63 345.69L525.63 295.69zM568.93 420.69L612.23 445.69L612.23 495.69L568.93 520.69L525.63 495.69L525.63 445.69zM612.23 495.69L655.53 520.69L655.53 570.69L612.23 595.69L568.93 570.69L568.93 520.69zM655.53 -29.31L698.84 -4.31L698.84 45.69L655.53 70.69L612.23 45.69L612.23 -4.31zM698.84 195.69L742.14 220.69L742.14 270.69L698.84 295.69L655.53 270.69L655.53 220.69zM655.53 270.69L698.84 295.69L698.84 345.69L655.53 370.69L612.23 345.69L612.23 295.69zM742.14 120.69L785.44 145.69L785.44 195.69L742.14 220.69L698.84 195.69L698.84 145.69zM785.44 195.69L828.75 220.69L828.75 270.69L785.44 295.69L742.14 270.69L742.14 220.69zM785.44 345.69L828.75 370.69L828.75 420.69L785.44 445.69L742.14 420.69L742.14 370.69zM742.14 420.69L785.44 445.69L785.44 495.69L742.14 520.69L698.84 495.69L698.84 445.69zM828.75 -29.31L872.05 -4.31L872.05 45.69L828.75 70.69L785.44 45.69L785.44 -4.31zM915.35 -29.31L958.65 -4.31L958.65 45.69L915.35 70.69L872.05 45.69L872.05 -4.31zM958.65 195.69L1001.96 220.69L1001.96 270.69L958.65 295.69L915.35 270.69L915.35 220.69zM915.35 270.69L958.65 295.69L958.65 345.69L915.35 370.69L872.05 345.69L872.05 295.69zM958.65 345.69L1001.96 370.69L1001.96 420.69L958.65 445.69L915.35 420.69L915.35 370.69zM1045.26 45.69L1088.56 70.69L1088.56 120.69L1045.26 145.69L1001.96 120.69L1001.96 70.69zM1001.96 120.69L1045.26 145.69L1045.26 195.69L1001.96 220.69L958.65 195.69L958.65 145.69zM1001.96 420.69L1045.26 445.69L1045.26 495.69L1001.96 520.69L958.65 495.69L958.65 445.69zM1045.26 495.69L1088.56 520.69L1088.56 570.69L1045.26 595.69L1001.96 570.69L1001.96 520.69zM1088.56 -29.31L1131.86 -4.31L1131.86 45.69L1088.56 70.69L1045.26 45.69L1045.26 -4.31zM1131.86 45.69L1175.16 70.69L1175.16 120.69L1131.86 145.69L1088.56 120.69L1088.56 70.69zM1088.56 270.69L1131.86 295.69L1131.86 345.69L1088.56 370.69L1045.26 345.69L1045.26 295.69zM1088.56 420.69L1131.86 445.69L1131.86 495.69L1088.56 520.69L1045.26 495.69L1045.26 445.69zM1131.86 495.69L1175.16 520.69L1175.16 570.69L1131.86 595.69L1088.56 570.69L1088.56 520.69zM1175.16 -29.31L1218.47 -4.31L1218.47 45.69L1175.16 70.69L1131.86 45.69L1131.86 -4.31zM1218.47 195.69L1261.77 220.69L1261.77 270.69L1218.47 295.69L1175.16 270.69L1175.16 220.69zM1218.47 345.69L1261.77 370.69L1261.77 420.69L1218.47 445.69L1175.16 420.69L1175.16 370.69zM1218.47 495.69L1261.77 520.69L1261.77 570.69L1218.47 595.69L1175.16 570.69L1175.16 520.69zM1261.77 120.69L1305.07 145.69L1305.07 195.69L1261.77 220.69L1218.47 195.69L1218.47 145.69zM1305.07 195.69L1348.38 220.69L1348.38 270.69L1305.07 295.69L1261.77 270.69L1261.77 220.69zM1261.77 420.69L1305.07 445.69L1305.07 495.69L1261.77 520.69L1218.47 495.69L1218.47 445.69zM1391.68 45.69L1434.98 70.69L1434.98 120.69L1391.68 145.69L1348.38 120.69L1348.38 70.69zM1348.38 120.69L1391.68 145.69L1391.68 195.69L1348.38 220.69L1305.07 195.69L1305.07 145.69zM1391.68 345.69L1434.98 370.69L1434.98 420.69L1391.68 445.69L1348.38 420.69L1348.38 370.69zM1434.98 -29.31L1478.28 -4.31L1478.28 45.69L1434.98 70.69L1391.68 45.69L1391.68 -4.31zM1434.98 270.69L1478.28 295.69L1478.28 345.69L1434.98 370.69L1391.68 345.69L1391.68 295.69zM1434.98 420.69L1478.28 445.69L1478.28 495.69L1434.98 520.69L1391.68 495.69L1391.68 445.69z' stroke='rgba(240%2c 247%2c 255%2c 0.93)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1005'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
    background-attachment: fixed;
    background-size: cover;
  }
  body.horizontal-nav main {
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    grid-template-areas: "nav" "content";
  }
}
/* body_classes: header-centered */
header {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
header img {
  display: block;
  margin: 0 auto 2rem;
  max-width: 150px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: 400;
}

nav {
  font-family: var(--font-family-heading);
  font-weight: 400;
}
nav a {
  text-decoration: none;
}
nav a:hover {
  text-decoration: none;
}
nav {
  /* 3-column layout for Service Areas dropdown - only on hover */
}
@media (min-width: 769px) {
  body.horizontal-nav nav ul li:hover ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    white-space: normal;
    padding: 1rem;
    gap: 0.5rem;
    position: absolute;
    right: 0;
    left: auto;
    width: 380px;
  }
  body.horizontal-nav nav ul li:hover ul li {
    display: block;
  }
}

.centered {
  text-align: center;
}

.home-banner {
  margin-bottom: 2rem;
}
.home-banner .special-offer {
  background: var(--color-link);
  color: var(--nav-link-color);
  padding: 1rem;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .home-banner .special-offer {
    flex-direction: column;
    text-align: center;
  }
}
.home-banner .special-offer p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}
.home-banner .special-offer a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
  text-decoration: none;
  border-radius: var(--border-radius);
  white-space: nowrap;
  font-family: var(--font-family-heading);
}
.home-banner .special-offer a:hover {
  background: var(--nav-link-active-color);
  color: #000000;
  border: 2px solid #000000;
}
.home-banner .home-banner-inner {
  width: 100%;
  max-width: var(--width-content);
  aspect-ratio: 3;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  overflow: hidden;
  position: relative;
}
.home-banner .home-banner-inner .swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-banner .home-banner-inner .image-wrapper,
.home-banner .home-banner-inner img {
  width: 100%;
  max-width: var(--width-content);
  height: 100%;
  object-fit: cover;
}
.home-banner .swiper-pagination-bullet-active {
  background: var(--color-link);
}

.featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .featured {
    grid-template-columns: 1fr;
  }
}
.featured article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding: 0.5rem;
  background: var(--color-bg);
  border-radius: var(--border-radius);
}
.featured article a:has(img) {
  text-decoration: none;
}
.featured article a:has(img):hover {
  text-decoration: none;
}
.featured article img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
}
.featured article h2 {
  margin: 0 0 1rem 0;
  color: var(--color-link);
  text-align: center;
}
.featured article p {
  margin: 0 0 1rem 0;
}
.featured article p + a {
  align-self: end;
  justify-self: center;
}

.main-content {
  margin-bottom: 4rem;
}

.why-choose-us {
  margin-bottom: 4rem;
}
.why-choose-us ul {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 999px) {
  .why-choose-us ul {
    grid-template-columns: repeat(2, 200px);
  }
}
@media (max-width: 768px) {
  .why-choose-us ul {
    grid-template-columns: repeat(2, 180px);
    gap: 1rem;
  }
}
.why-choose-us li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
}
@media (max-width: 768px) {
  .why-choose-us li {
    height: 180px;
  }
}
.why-choose-us li img {
  width: 180px;
  height: 180px;
  color: var(--color-link);
}
@media (max-width: 768px) {
  .why-choose-us li img {
    width: 160px;
    height: 160px;
  }
}
.why-choose-us li h3 {
  margin-top: 1rem;
  color: var(--color-link);
  font-size: 0.9rem;
  text-align: center;
}

.button-primary, .read-more, .featured article p + a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-link);
  color: var(--nav-link-color);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: transform 0.2s ease, background 0.2s ease;
}
.button-primary:hover, .read-more:hover, .featured article p + a:hover {
  background: var(--form-button-hover-bg-color);
  color: var(--nav-link-color);
  text-decoration: none;
  transform: scale(1.05);
}

.read-more {
  display: block;
  text-align: center;
  margin: 2rem auto;
  max-width: max-content;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
body.item .reviews-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1000px) {
  body.item .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.reviews-grid li {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto auto;
  grid-template-areas: "review review" "name rating" "date date" "products products";
  gap: 1rem;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: min-content;
}
@media (max-width: 768px) {
  .reviews-grid li {
    grid-template-columns: 1fr;
    grid-template-areas: "review" "name" "rating" "date" "products";
  }
}
.reviews-grid li .review {
  grid-area: review;
  font-family: var(--font-family-body);
  font-style: normal;
}
.reviews-grid li .review p {
  display: inline;
  margin: 0;
}
.reviews-grid li .review p:first-child::before {
  content: "“";
  font-size: 2rem;
  line-height: 0;
  vertical-align: baseline;
  margin-right: 0.25rem;
  color: var(--color-link);
  display: inline;
}
.reviews-grid li .review p:last-child::after {
  content: "”";
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 0.25rem;
  color: var(--color-link);
  display: inline;
}
.reviews-grid li .name {
  grid-area: name;
  align-self: center;
  font-weight: bold;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .reviews-grid li .name {
    text-align: center;
  }
}
.reviews-grid li .rating {
  grid-area: rating;
  align-self: center;
  justify-self: end;
  font-size: 1.5rem;
  color: var(--nav-link-active-color);
  line-height: 1;
}
@media (max-width: 768px) {
  .reviews-grid li .rating {
    justify-self: center;
    text-align: center;
  }
}
.reviews-grid li .date {
  grid-area: date;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}
.reviews-grid li .products {
  grid-area: products;
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
}
.reviews-grid li .products a {
  color: #ccc;
}
.reviews-grid li .products a:hover {
  color: var(--color-link);
}

body > footer .socials li a img,
body > footer .socials li a:hover img {
  filter: invert(15%) sepia(100%) saturate(5294%) hue-rotate(352deg) brightness(99%) contrast(88%) !important;
}

body.home section {
  margin-bottom: 4rem;
}

.items a.image-link {
  aspect-ratio: 11/10;
  overflow: hidden;
  position: relative;
}
.items a.image-link .image-wrapper,
.items a.image-link .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.latest-news {
  text-align: center;
}
.latest-news .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}
.latest-news .items li {
  flex: 0 0 calc(25% - 0.75rem);
  max-width: calc(25% - 0.75rem);
}
@media (max-width: 999px) {
  .latest-news .items li {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
}
@media (max-width: 768px) {
  .latest-news .items li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Hide Service Areas submenu on mobile */
@media (max-width: 768px) {
  nav li:has(> a[href="/service-areas/"]) > ul {
    display: none !important;
  }
}
#theme-switcher-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--color-bg);
  color: var(--color-text);
  border: var(--border);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 0;
}
#theme-switcher-button:hover {
  transform: scale(1.1);
  border: var(--form-button-hover-border);
}
#theme-switcher-button:active {
  transform: scale(0.95);
}
@media (max-width: 768px) {
  #theme-switcher-button {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

html[data-theme="90s-computer"] {
  --width-content: 950px;
  --color-bg: #008080;
  --color-bg-secondary: #c0c0c0;
  --color-text: #000000;
  --color-link: #0000ff;
  --header-text-color: #ffffff;
  --border: 2px outset #c0c0c0;
  --border-radius: 0;
  --box-shadow: inset -1px -1px #000000, inset 1px 1px #ffffff;
  --form-button-border: 2px outset #c0c0c0;
  --form-button-hover-border: 2px inset #c0c0c0;
  --font-family-heading: "MS Sans Serif", "Chicago", sans-serif;
  --font-family-body: "MS Sans Serif", "Chicago", sans-serif;
  --line-height: 1.3;
  --link-decoration: underline;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
}

html[data-theme=floral] {
  --width-content: 1000px;
  --color-bg: #ffe0f0;
  --color-bg-secondary: #ffc0e0;
  --color-text: #d1006c;
  --color-link: #ff69b4;
  --header-text-color: #ff1493;
  --border: 3px solid #ffb6c1;
  --border-radius: 25px;
  --box-shadow: 5px 5px 15px rgba(255, 182, 193, 0.5);
  --form-button-border: 3px solid #ffb6c1;
  --form-button-hover-border: 3px solid #ff69b4;
  --font-family-heading: "Princess Sofia", "Brush Script MT", cursive;
  --font-family-body: Georgia, "Times New Roman", serif;
  --line-height: 1.6;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-decoration-style: wavy;
}

html[data-theme=hacker] {
  --color-bg: #000000;
  --color-bg-secondary: #0a0a0a;
  --color-text: #00ff00;
  --color-link: #00ff00;
  --header-text-color: #00ff00;
  --border: 2px solid #00ff00;
  --border-radius: 0;
  --box-shadow: 0 0 10px #00ff00;
  --form-button-border: 2px solid #00ff00;
  --form-button-hover-border: 2px solid #33ff33;
  --font-family-heading: "Share Tech Mono", "Lucida Console", "Courier New", monospace;
  --font-family-body: "Share Tech Mono", "Lucida Console", "Courier New", monospace;
  --line-height: 1.2;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
}

html[data-theme=monochrome] {
  --color-bg: #1a1a1a;
  --color-bg-secondary: #2a2a2a;
  --color-text: #e0e0e0;
  --color-link: #ffffff;
  --header-text-color: #ffffff;
  --border: 1px solid #808080;
  --border-radius: 2px;
  --box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  --form-button-border: 1px solid #808080;
  --form-button-hover-border: 1px solid #ffffff;
  --font-family-heading: system-ui, sans-serif;
  --font-family-body: system-ui, sans-serif;
  --line-height: 1.4;
  --link-decoration: underline;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
}

html[data-theme=neon] {
  --width-content: 1100px;
  --color-bg: #0a0a0a;
  --color-bg-secondary: #1a0a1a;
  --color-text: #ff00ff;
  --color-link: #00ffff;
  --header-text-color: #ffff00;
  --border: 2px solid #ff00ff;
  --border-radius: 12px;
  --box-shadow: 0 0 8px rgba(255, 0, 255, 0.5);
  --form-button-border: 2px solid #00ffff;
  --form-button-hover-border: 2px solid #ffff00;
  --font-family-heading: "Orbitron", Bahnschrift, "DIN Alternate", "Franklin Gothic Medium", sans-serif;
  --font-family-body: "Orbitron", Avenir, Montserrat, Corbel, sans-serif;
  --line-height: 1.5;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-decoration-style: double;
}

html[data-theme=ocean] {
  --color-bg: #001f3f;
  --color-bg-secondary: #002a55;
  --color-text: #7fdbff;
  --color-link: #39cccc;
  --header-text-color: #ffffff;
  --border: 2px solid #0074d9;
  --border-radius: 0;
  --box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4);
  --form-button-border: 2px solid #0074d9;
  --form-button-hover-border: 2px solid #39cccc;
  --font-family-heading: "Courier New", monospace;
  --font-family-body: "Courier New", monospace;
  --line-height: 1.8;
  --link-decoration: underline;
  --link-decoration-hover: none;
  --link-decoration-style: wavy;
}

html[data-theme=old-mac] {
  --width-content: 900px;
  --color-bg: #dddddd;
  --color-bg-secondary: #eeeeee;
  --color-text: #000000;
  --color-link: #0000ee;
  --header-text-color: #000000;
  --border: 1px solid #000000;
  --border-radius: 4px;
  --box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  --form-button-border: 1px solid #000000;
  --form-button-hover-border: 2px solid #000000;
  --font-family-heading: Chicago, Charcoal, sans-serif;
  --font-family-body: Geneva, sans-serif;
  --line-height: 1.4;
  --link-decoration: underline;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
}

html[data-theme=rainbow] {
  --width-content: 1200px;
  --color-bg: #fff;
  --color-bg-secondary: #f0f0f0;
  --color-text: #333;
  --color-link: #ff00ff;
  --header-bg-color: #ff6b6b;
  --header-text-color: #ffffff;
  --header-border: 3px solid #ff4444;
  --nav-bg-color: #ffd93d;
  --nav-text-color: #333;
  --nav-link-color: #8b4513;
  --nav-link-active-color: #ff6b6b;
  --nav-border: 3px solid #ffb700;
  --main-bg-color: #6bcf7f;
  --main-text-color: #1a4d2e;
  --main-heading-color: #0d2818;
  --main-border: 3px solid #4a9d5f;
  --form-bg-color: #a8e6cf;
  --form-text-color: #333;
  --form-border: 3px solid #7fcdbb;
  --form-input-bg-color: #ffffff;
  --form-input-text-color: #333;
  --form-input-border: 2px solid #7fcdbb;
  --form-button-bg-color: #b19cd9;
  --form-button-text-color: #ffffff;
  --form-button-border: 3px solid #9370db;
  --form-button-hover-bg-color: #9370db;
  --form-button-hover-text-color: #ffffff;
  --form-button-hover-border: 3px solid #7b68ee;
  --border: 3px solid #ff6b6b;
  --border-radius: 15px;
  --box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  --font-family-heading: "Comic Sans MS", "Marker Felt", fantasy;
  --font-family-body: "Trebuchet MS", Verdana, sans-serif;
  --line-height: 1.6;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-decoration-style: wavy;
}

html[data-theme=sunset] {
  --color-bg: #3d1e6d;
  --color-bg-secondary: #4d2d7d;
  --color-text: #f4a261;
  --color-link: #e76f51;
  --header-text-color: #f4a261;
  --border: 3px solid #8843f2;
  --border-radius: 15px;
  --box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  --form-button-border: 3px solid #8843f2;
  --form-button-hover-border: 3px solid #e76f51;
  --font-family-heading: Impact, sans-serif;
  --font-family-body: Arial, sans-serif;
  --line-height: 1.5;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-decoration-style: double;
}

:root {
  --theme-list: "default,90s-computer,floral,hacker,monochrome,neon,ocean,old-mac,rainbow,sunset";
  --theme-default-name: "Default";
  --theme-90s-computer-name: "90s Computer";
  --theme-floral-name: "Floral";
  --theme-hacker-name: "Hacker";
  --theme-monochrome-name: "Monochrome";
  --theme-neon-name: "Neon";
  --theme-ocean-name: "Ocean";
  --theme-old-mac-name: "Old Mac";
  --theme-rainbow-name: "Rainbow";
  --theme-sunset-name: "Sunset";
}