@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --ink: #081018;
  --orange: #ff7412;
  --white: #fff;
  --page: #f4f5f6;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  transition: background 0.3s ease;
}
button,
a {
  font: inherit;
}
.hero-slider {
  min-height: min(760px, 88vh);
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.site-header {
  align-items: center;
  background: #060d13;
  display: flex;
  height: 84px;
  justify-content: flex-start;
  left: 0;
  padding: 0 42px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}
.brand {
  display: block;
  text-decoration: none;
}
.brand-logo {
  display: block;
}
.brand-logo-light {
  display: none;
}
.site-header .brand-logo {
  height: 84px;
  object-fit: contain;
  object-position: center;
  width: 260px;
}
.main-nav {
  display: flex;
  gap: 42px;
  margin-left: 228px;
  margin-right: auto;
}
.main-nav a,
.footer-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.main-nav a {
  padding: 12px 0;
  position: relative;
}
.main-nav a::after {
  background: var(--orange);
  bottom: 3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  width: 100%;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
}
.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}
.phone-link {
  align-items: center;
  background: var(--orange);
  border-radius: 9px;
  color: #fff;
  display: grid;
  grid-template-columns: 30px 1fr;
  min-height: 58px;
  padding: 9px 17px;
  text-decoration: none;
  white-space: nowrap;
}
.phone-link span {
  font-size: 25px;
  grid-row: span 2;
  text-align: center;
}
.phone-link strong {
  font-size: 17px;
  line-height: 1.1;
}
.phone-link small {
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
}
.theme-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  display: flex;
  gap: 8px;
  min-height: 40px;
  padding: 8px 13px;
  transition: background 0.2s ease;
}
.theme-toggle:hover {
  background: var(--orange);
}
.theme-label {
  font-size: 11px;
  font-weight: 700;
}
.slides,
.slide {
  position: absolute;
  inset: 0;
}
.slide {
  align-items: center;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease,
    transform 6s ease;
  background-color: var(--ink);
  background-repeat: no-repeat;
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 10, 15, 0.9) 0%,
      rgba(4, 10, 15, 0.63) 38%,
      rgba(4, 10, 15, 0.08) 78%
    ),
    var(--slide-image);
  background-position: center;
  background-size: cover;
}
.slide-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.slide-content {
  margin: 0 auto;
  padding-top: 42px;
  width: min(1120px, calc(100% - 48px));
}
.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}
h1 span {
  color: var(--orange);
}
.slide-copy {
  color: #f0f3f4;
  font-size: 15px;
  line-height: 1.65;
  margin: 26px 0 30px;
  max-width: 390px;
}
.cta-button {
  align-items: center;
  background: var(--orange);
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 22px;
  padding: 16px 21px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.cta-button:hover {
  background: #ff8c39;
  transform: translateY(-2px);
}
.slider-arrow {
  align-items: center;
  background: rgba(8, 16, 24, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 22px;
  height: 48px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease;
  width: 48px;
  z-index: 2;
}
.slider-arrow:hover {
  background: var(--orange);
}
.slider-arrow-prev {
  left: 24px;
}
.slider-arrow-next {
  right: 24px;
}
.slider-controls {
  align-items: center;
  bottom: 30px;
  display: flex;
  gap: 24px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}
.slider-dots {
  display: flex;
  gap: 9px;
}
.dot {
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  height: 5px;
  padding: 0;
  transition:
    background 0.2s ease,
    width 0.2s ease;
  width: 24px;
}
.dot-active {
  background: var(--orange);
  width: 44px;
}
.slide-count {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.slide-count strong {
  color: #fff;
}
.service-strip {
  align-items: stretch;
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1200px;
  padding: 26px 0;
}
.service-strip > div {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  margin: 0 20px;
  min-width: 0;
}
.service-strip > div:last-child {
  border: 0;
}
.service-icon {
  align-items: center;
  color: var(--orange);
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  grid-row: 1 / span 2;
  height: 52px;
  justify-content: center;
  line-height: 1;
  min-width: 52px;
  text-align: center;
  text-shadow: 0 0 1px currentColor;
}
.service-strip strong,
.service-strip small {
  font-size: 12px;
}
.service-strip small {
  color: #d7dce0;
}
.content-section {
  margin: 0 auto;
  max-width: 1120px;
  padding: 70px 24px;
}
.about-section {
  align-items: center;
  background: var(--page);
  color: #101820;
  display: grid;
  gap: 58px;
  grid-template-columns: 1.05fr 1fr;
}
.about-photo {
  background: var(--section-image) center/cover;
  border-radius: 5px;
  height: 330px;
}
.about-copy {
  color: #48545b;
  font-size: 14px;
  line-height: 1.7;
}
.section-kicker {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 7px;
  text-transform: uppercase;
}
h2 {
  color: #101820;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.95;
  margin: 0 0 17px;
  text-transform: uppercase;
}
.about-copy ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.about-copy li {
  color: #26333b;
  font-size: 12px;
  font-weight: 700;
  margin: 7px 0;
}
.about-copy li::before {
  color: var(--orange);
  content: "\2713";
  font-size: 17px;
  font-weight: 800;
  margin-right: 10px;
}
.services-section {
  background: #eef0f1;
  max-width: none;
  padding-left: max(24px, calc((100% - 1072px) / 2));
  padding-right: max(24px, calc((100% - 1072px) / 2));
}
.section-heading {
  text-align: center;
}
.service-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 28px;
}
.service-cards article {
  background: #fff;
  border-radius: 4px;
  color: #18242b;
  overflow: hidden;
  padding-bottom: 18px;
}
.card-image {
  background: var(--section-image) center/cover;
  height: 130px;
}
.service-cards h3 {
  font-size: 14px;
  margin: 15px 16px 6px;
}
.service-cards p {
  color: #67727a;
  font-size: 11px;
  line-height: 1.5;
  margin: 0 16px 12px;
}
.service-cards a {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  margin: 0 16px;
  text-decoration: none;
}
.service-more {
  cursor: pointer;
}
.service-modal {
  align-items: center;
  display: none;
  inset: 0;
  justify-content: center;
  padding: 0;
  position: fixed;
  z-index: 20;
}
.service-modal.is-open {
  display: flex;
}
.service-modal-backdrop {
  background: rgba(4, 8, 11, 0.88);
  inset: 0;
  position: absolute;
}
.service-modal-content {
  background: #050607;
  color: #fff;
  height: 100vh;
  max-height: none;
  max-width: none;
  overflow: hidden;
  position: relative;
  width: 100vw;
  z-index: 1;
}
.service-modal-content > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.service-modal-copy {
  background: rgba(5, 6, 7, 0.86);
  bottom: 0;
  left: 0;
  max-height: 48%;
  overflow: auto;
  padding: clamp(24px, 4vw, 56px) max(24px, calc((100% - 1120px) / 2));
  position: absolute;
  right: 0;
}
.service-modal-copy h2 {
  color: #fff;
}
.service-modal-copy > p:not(.section-kicker) {
  color: #f1f3f3;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
}
.service-modal-close {
  background: #fff;
  border: 0;
  border-radius: 50%;
  color: #0a0b0c;
  cursor: pointer;
  font-size: 30px;
  height: 42px;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  z-index: 2;
}
body.modal-open {
  overflow: hidden;
}
.cookie-banner {
  align-items: center;
  background: #101820;
  bottom: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 18px;
  max-width: min(720px, calc(100% - 36px));
  padding: 18px 20px;
  position: fixed;
  right: 18px;
  z-index: 30;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}
.cookie-banner p {
  color: #d8dfe2;
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}
.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}
.cookie-button {
  border: 1px solid var(--orange);
  border-radius: 3px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  padding: 10px 14px;
}
.cookie-reject {
  background: transparent;
  color: #fff;
}
.cookie-accept {
  background: var(--orange);
  color: #111;
}
.analytics-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.analytics-summary strong {
  color: var(--orange);
  font-size: 18px;
}
@media (max-width: 600px) {
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
}
.reviews-section {
  background: var(--ink);
}
.reviews-section h2 {
  color: #fff;
}
.review-grid {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}
.review-hidden {
  display: none;
}
.review-grid.reviews-expanded .review-hidden {
  display: block;
}
.reviews-toggle {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
  cursor: pointer;
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin: 28px auto 0;
  padding: 11px 18px;
}
.reviews-toggle:hover {
  background: var(--orange);
  color: #111;
}
.review-grid blockquote {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 0 30px;
}
.review-grid blockquote:first-child {
  padding-left: 0;
}
.review-grid blockquote:last-child {
  border: 0;
}
.stars {
  color: var(--orange);
  letter-spacing: 4px;
}
.review-grid p {
  color: #e0e5e7;
  font-size: 13px;
  line-height: 1.6;
}
.review-grid cite {
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}
.public-form {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.public-form h3 {
  color: var(--text);
  margin: 0;
}
.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.review-form .form-row {
  grid-template-columns: 2fr 1fr;
}
.public-form input,
.public-form select,
.public-form textarea {
  background: var(--card);
  border: 1px solid rgba(128, 128, 128, 0.45);
  border-radius: 4px;
  color: var(--text);
  font: inherit;
  padding: 12px;
  width: 100%;
}
.public-form textarea {
  min-height: 100px;
  resize: vertical;
}
.form-status {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}
.request-section {
  background: var(--page);
  color: var(--text);
}
.request-section h2 {
  color: var(--text);
}
.contact-bar {
  align-items: center;
  background: var(--orange);
  color: #111b21;
  display: flex;
  gap: 45px;
  justify-content: space-between;
  padding: 21px max(24px, calc((100% - 1120px) / 2));
}
.contact-bar > div {
  align-items: center;
  display: flex;
  gap: 13px;
}
.contact-icon {
  font-size: 28px;
}
.contact-bar small,
.contact-bar strong,
.contact-bar em {
  display: block;
}
.contact-bar small {
  font-size: 10px;
  font-weight: 800;
}
.contact-bar strong {
  font-size: 21px;
}
.contact-bar em {
  font-size: 9px;
  font-style: normal;
}
.contact-bar > div a {
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.contact-bar .cta-button {
  background: #101820;
  white-space: nowrap;
}
.contact-bar .cta-button:hover {
  background: #263640;
}
.site-footer {
  background: #070e14;
  color: #84909a;
  padding: 30px 24px 20px;
}
.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a {
  align-items: center;
  border: 1px solid #65727b;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 12px;
  height: 25px;
  justify-content: center;
  text-decoration: none;
  width: 25px;
}
.site-footer .brand-logo {
  height: 220px;
  width: 310px;
}
.site-footer > p {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  margin: 25px auto 0;
  max-width: 1120px;
  padding-top: 18px;
  text-align: center;
}
.site-footer > p span {
  float: right;
}
body.light-theme {
  --ink: #f7f7f5;
  --page: #fff;
  --white: #101820;
}
body.light-theme .hero-slider {
  background: #e8e9e8;
}
body.light-theme .slide {
  background-image:
    linear-gradient(
      90deg,
      rgba(213, 221, 224, 0.96) 0%,
      rgba(213, 221, 224, 0.86) 35%,
      rgba(213, 221, 224, 0.22) 72%,
      rgba(213, 221, 224, 0) 100%
    ),
    var(--slide-image);
}
body.light-theme .slide-copy {
  color: #17252c;
  font-weight: 600;
}
body.light-theme .slider-arrow,
body.light-theme .theme-toggle {
  background: rgba(255, 255, 255, 0.72);
  border-color: #273039;
  color: #101820;
}
body.light-theme .service-strip {
  color: #101820;
}
body.light-theme .service-strip small {
  color: #526069;
}
body.light-theme .slide-count {
  color: #526069;
}
body.light-theme .slide-count strong {
  color: #101820;
}
@media (max-width: 850px) {
  .main-nav {
    gap: 12px;
    margin-right: 12px;
  }
  .phone-link {
    display: none;
  }
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (min-width: 701px) and (max-width: 1400px) {
  .site-header {
    height: 76px;
    padding-left: clamp(16px, 3vw, 32px);
    padding-right: clamp(16px, 3vw, 32px);
  }
  .site-header .brand-logo {
    height: 76px;
    width: clamp(175px, 20vw, 230px);
  }
  .main-nav {
    gap: clamp(12px, 2.4vw, 30px);
    margin-left: clamp(18px, 7vw, 100px);
  }
  .main-nav a {
    font-size: clamp(11px, 1.15vw, 14px);
  }
  .theme-toggle {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 701px) and (max-width: 1100px) {
  .main-nav {
    margin-left: 20px;
  }
  .phone-link {
    display: none;
  }
}
@media (max-width: 700px) {
  .hero-slider {
    min-height: 610px;
  }
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    top: 15px;
  }
  .site-header .brand-logo {
    height: 170px;
    width: 240px;
  }
  .menu-toggle {
    align-items: center;
    background: rgba(8, 16, 24, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 40px;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    width: 42px;
  }
  .menu-toggle span {
    background: #fff;
    height: 2px;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
    width: 19px;
  }
  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .main-nav {
    background: rgba(5, 10, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 5px;
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    margin: 0;
    max-height: 0;
    opacity: 0;
    order: 3;
    overflow: hidden;
    padding: 0 18px;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 0.25s ease,
      opacity 0.2s ease,
      transform 0.25s ease;
  }
  .menu-open .main-nav {
    max-height: 330px;
    opacity: 1;
    padding-bottom: 8px;
    padding-top: 8px;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav a {
    font-size: 11px;
    padding: 10px 0;
  }
  .main-nav a::after {
    bottom: 5px;
  }
  .header-actions {
    margin-left: 0;
  }
  .theme-toggle {
    height: 40px;
  }
  .slide {
    background-position: 63% center;
  }
  .slide-content {
    padding-top: 40px;
    width: calc(100% - 48px);
  }
  .eyebrow {
    font-size: 10px;
  }
  h1 {
    font-size: clamp(54px, 16vw, 80px);
  }
  .slide-copy {
    font-size: 13px;
    max-width: 290px;
  }
  .slider-arrow {
    height: 38px;
    width: 38px;
  }
  .slider-arrow-prev {
    left: 12px;
  }
  .slider-arrow-next {
    right: 12px;
  }
  .slider-controls {
    bottom: 20px;
  }
  .service-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 0;
    row-gap: 22px;
  }
  .service-strip > div:nth-child(2) {
    border-right: 0;
  }
  .service-strip > div:nth-child(3),
  .service-strip > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 18px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 45px;
    padding-top: 45px;
  }
  .about-photo {
    height: 250px;
  }
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }
  .review-grid {
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .service-modal {
    padding: 0;
  }
  .service-modal-content {
    height: 100vh;
  }
  .service-modal-content > img {
    height: 100%;
  }
  .review-grid blockquote,
  .review-grid blockquote:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 0;
    padding: 0 0 20px;
  }
  .review-grid blockquote:last-child {
    border-bottom: 0;
  }
  .contact-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
  }
  .site-footer > p span {
    float: none;
    display: block;
    margin-top: 8px;
  }
}

/* Theme surfaces stay readable without using glaring white panels. */
:root {
  --ink: #050a0f;
  --page: #0d151c;
  --surface: #121d25;
  --card: #18242c;
  --text: #edf1f2;
}
body {
  background: var(--page);
  color: var(--text);
}
.about-section,
.services-section {
  background: var(--page);
  color: var(--text);
}
.services-section {
  background: var(--surface);
}
.about-copy {
  color: #aebbc1;
}
.about-copy li {
  color: var(--text);
}
h2 {
  color: var(--text);
}
.service-cards article {
  background: var(--card);
  color: var(--text);
}
.service-cards p {
  color: #aab7bd;
}
.theme-toggle {
  background: rgba(0, 0, 0, 0.58);
}
body.light-theme {
  --ink: #0a0b0c;
  --page: #ffffff;
  --surface: #f1f1ef;
  --card: #ffffff;
  --white: #0a0b0c;
  --text: #08090a;
}
body.light-theme .brand-logo-dark {
  display: none;
}
body.light-theme .brand-logo-light {
  display: block;
}
body.light-theme .hero-slider {
  background: #f4f4f2;
}
body.light-theme .slide {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.84) 35%,
      rgba(255, 255, 255, 0.18) 72%,
      rgba(255, 255, 255, 0) 100%
    ),
    var(--slide-image);
}
body.light-theme .slide-copy {
  color: #17252c;
  font-weight: 600;
}
body.light-theme .main-nav a,
body.light-theme .brand,
body.light-theme .main-nav a {
  color: #08090a;
}
body.light-theme .site-header {
  background: #ffffff;
}
body.light-theme .main-nav {
  background: #ffffff;
  border-color: rgba(10, 11, 12, 0.18);
}
body.light-theme .service-strip {
  background: #ffffff;
  color: #0a0b0c;
}
body.light-theme .service-strip > div {
  border-right-color: rgba(10, 11, 12, 0.2);
}
body.light-theme .service-strip > div:nth-child(3),
body.light-theme .service-strip > div:nth-child(4) {
  border-top-color: rgba(10, 11, 12, 0.2);
}
body.light-theme .service-strip small {
  color: #303336;
}
body.light-theme .theme-toggle {
  background: #ffffff;
  border-color: #0a0b0c;
  color: #0a0b0c;
}
body.light-theme .about-copy {
  color: #202326;
}
body.light-theme .about-copy li {
  color: #0a0b0c;
}
body.light-theme .service-cards p {
  color: #303336;
}
body.light-theme .reviews-section {
  background: #0a0b0c;
}
body.light-theme .site-footer {
  background: #ffffff;
  color: #303336;
}
body.light-theme .footer-links a {
  color: #0a0b0c;
}
body.light-theme .social-links a {
  border-color: #0a0b0c;
  color: #0a0b0c;
}
body.light-theme .site-footer > p {
  border-top-color: rgba(10, 11, 12, 0.18);
}
body.light-theme .menu-toggle {
  background: #ffffff;
  border-color: #0a0b0c;
}
body.light-theme .menu-toggle span {
  background: #0a0b0c;
}
@media (max-width: 700px) {
  .site-header {
    height: 68px;
    padding: 0 16px;
    top: 0;
  }
  .site-header .brand-logo {
    height: 58px;
    width: 166px;
  }
}
@media (min-width: 1024px) {
  .slide-content {
    width: min(1320px, calc(100% - 72px));
  }
  .content-section {
    max-width: 1320px;
    padding-bottom: 52px;
    padding-top: 52px;
  }
  .services-section {
    padding-left: max(36px, calc((100% - 1260px) / 2));
    padding-right: max(36px, calc((100% - 1260px) / 2));
  }
  .service-strip {
    max-width: 1320px;
    padding-bottom: 22px;
    padding-top: 22px;
  }
  .service-strip > div {
    grid-template-columns: 64px minmax(0, 1fr);
    margin-left: 28px;
    margin-right: 28px;
  }
  .service-icon {
    font-size: 40px;
    height: 64px;
    min-width: 64px;
  }
  .about-section {
    gap: 72px;
  }
  .about-photo {
    height: 360px;
  }
  .service-cards {
    gap: 18px;
  }
  .card-image {
    height: 155px;
  }
  .contact-bar {
    padding-left: max(36px, calc((100% - 1320px) / 2));
    padding-right: max(36px, calc((100% - 1320px) / 2));
  }
  .footer-inner,
  .site-footer > p {
    max-width: 1320px;
  }
}

@media (min-width: 1600px) {
  .hero-slider {
    min-height: min(980px, 88vh);
  }
  .site-header {
    height: 104px;
    padding-left: max(42px, calc((100% - 2240px) / 2));
    padding-right: max(42px, calc((100% - 2240px) / 2));
  }
  .site-header .brand-logo {
    height: 104px;
    width: 320px;
  }
  .main-nav {
    gap: 54px;
    margin-left: 250px;
  }
  .main-nav a,
  .footer-links a {
    font-size: 16px;
  }
  .slide-content {
    width: min(2240px, calc(100% - 144px));
  }
  h1 {
    font-size: clamp(58px, 5vw, 150px);
  }
  .slide-copy {
    font-size: 18px;
    max-width: 500px;
  }
  .content-section {
    max-width: 2240px;
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .services-section {
    padding-left: max(36px, calc((100% - 2160px) / 2));
    padding-right: max(36px, calc((100% - 2160px) / 2));
  }
  .service-strip {
    max-width: 2240px;
    padding-bottom: 32px;
    padding-top: 32px;
  }
  .footer-inner,
  .site-footer > p {
    max-width: 2240px;
  }
}

@media (min-width: 701px) and (max-width: 1400px) {
  body {
    overflow-x: hidden;
  }
  .content-section {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
  }
  .services-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .service-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-strip {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
  .contact-bar {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-inner,
  .site-footer > p {
    max-width: none;
  }
}

@media (min-width: 701px) and (max-width: 850px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .site-footer .brand-logo {
    height: auto;
    max-width: 240px;
    width: 100%;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (min-width: 1401px) {
  .service-strip {
    max-width: none;
    padding-left: max(24px, calc((100% - 2240px) / 2));
    padding-right: max(24px, calc((100% - 2240px) / 2));
    width: 100%;
  }
}
