@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  --primary: #666666;
  --black: #000000;
  --black-200: #131313;
  --yellow-100: #ffe375;
  --white: #ffffff;
  --white-400: #f2f1eb;
  --gray-300: #e5ecec;
  --gray-400: #f3f5f7;
  --secondary-700: #011c26;
  --font-Outfit: "Outfit", serif;
  --weight-Regular: 400;
  --weight-Medium: 500;
  --weight-SemiBold: 600;
  --weight-Bold: 700;
  --container-width-xl: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-Outfit);
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.captured-surface {
  min-height: 100vh;
  background: var(--white);
}

.max-screen-xl {
  width: min(100% - 2rem, var(--container-width-xl));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--white);
  width: 100%;
}

.site-header .bottom-head {
  padding: 0.5rem 0;
}

.site-header .content {
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.site-logo {
  flex: 0 0 auto;
  max-width: 220px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  margin-left: auto;
  font-weight: var(--weight-Bold);
  color: var(--black-200);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
}

.site-nav a:hover {
  color: #6b5a13;
  transform: translateY(-1px);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: 1.125rem;
  font-weight: var(--weight-Bold);
  white-space: nowrap;
  margin-left: .6rem;
}

.phone-link::before {
  content: "☎";
  display: inline-block;
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(1px);
}

.nav-btn {
  flex: 0 0 auto;
}

.nav-btn a,
.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  min-height: 58px;
  padding: 0.85rem 1.8rem;
  border: 2px solid var(--black-200);
  background: var(--black-200);
  color: var(--white);
  font-weight: var(--weight-Bold);
  line-height: 1;
  text-align: center;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}

.nav-btn a:hover,
.site-btn:hover {
  background: var(--yellow-100);
  color: var(--black-200);
  transform: translateY(-2px);
}

.site-btn.primary-btn {
  background: var(--yellow-100);
  border-color: var(--yellow-100);
  color: var(--black-200);
}

.site-btn.primary-btn:hover {
  background: var(--white);
  border-color: var(--white);
}

.site-btn.secondary-btn {
  background: var(--white);
  border-color: var(--white);
  color: var(--black-200);
}

.site-btn.secondary-btn:hover {
  background: var(--yellow-100);
  border-color: var(--yellow-100);
}

.mobile-toggle {
  display: none;
  width: 54px;
  height: 48px;
  border: 0;
  background: var(--black-200);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-toggle span::before {
  transform: translateY(-8px);
}

.mobile-toggle span::after {
  transform: translateY(5px);
}

.mobile-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span::before {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span::after {
  transform: translateY(-3px) rotate(90deg);
}

.mobile-nav {
  display: none;
}

.mobile-close,
.mobile-overlay {
  display: none;
}

#hero-slider .item,
.hero-wrapper .bgc-layer {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  min-height: calc(100vh - 10px);
  display: flex;
  align-items: center;
}

.hero-wrapper .bgc-layer {
  min-height: 590px;
  padding: 5rem 0;
}

#hero-slider .item::before,
.hero-wrapper .bgc-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(5deg, rgba(0,0,0,1) 5%, rgba(0,0,0,0.10) 100%);
}

.hero-wrapper .bgc-layer::before {
  background: linear-gradient(0deg, rgba(0,0,0,.84) 18%, rgba(0,0,0,.18) 100%);
}

#hero-slider .slider-content,
.hero-wrapper .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding-top: 3rem;
}

#hero-slider h5,
.hero-wrapper h5 {
  margin: 0 0 1rem;
  color: var(--yellow-100);
  font-size: clamp(2.1rem, 3vw, 2.625rem);
  line-height: 1.05;
  font-weight: var(--weight-Bold);
}

#hero-slider h1,
.hero-wrapper h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5.4vw, 4.65rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-wrapper h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 1rem;
}

#hero-slider p,
.hero-wrapper p {
  margin: 1rem auto 0;
  max-width: 980px;
  color: var(--white);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  font-weight: var(--weight-SemiBold);
}

.btn-wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.section {
  padding: 5.8rem 0;
}

.section.cream {
  background: var(--white-400);
}

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

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 5rem;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1fr);
}

.split-copy {
  max-width: 680px;
}

.split-copy p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #333;
}

.section.dark .split-copy p {
  color: rgba(255,255,255,.78);
}

.image-frame {
  position: relative;
  min-height: 420px;
  background: var(--black-200);
  overflow: hidden;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,227,117,.55);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.block-title {
  position: relative;
  margin-bottom: 2rem;
}

.block-title h4 {
  margin: 0 0 1.2rem;
  color: var(--black-200);
  font-size: 1rem;
  line-height: 1;
  font-weight: var(--weight-Bold);
}

.block-title h4 > span {
  display: inline-block;
  min-width: 142px;
  padding: 0.38rem 1.55rem;
  background: linear-gradient(90deg, var(--yellow-100), rgba(255,227,117,.15));
  color: var(--black-200);
}

.block-title h1,
.block-title h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.2vw, 4.6rem);
  line-height: 1.05;
  color: var(--black-200);
  font-weight: 900;
}

.block-title h1.small,
.block-title h2.small {
  font-size: clamp(2.1rem, 3vw, 3rem);
}

.block-title.text-center {
  text-align: center;
}

.section.dark .block-title h1,
.section.dark .block-title h2,
.section.dark .block-title h4 {
  color: var(--white);
}

.accordion-section {
  background: var(--white-400);
  position: relative;
  overflow: hidden;
}

.accordion-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(255,255,255,.8) 72% 74%, transparent 74%),
    linear-gradient(45deg, transparent 0 78%, rgba(255,255,255,.6) 78% 80%, transparent 80%);
  background-size: 420px 280px;
}

.accordion-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.accordion-controls {
  display: flex;
  gap: .75rem;
}

.accordion-controls button {
  width: 56px;
  height: 56px;
  border: 0;
  background: var(--yellow-100);
  color: var(--black-200);
  font-size: 2rem;
  font-weight: var(--weight-Bold);
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease;
}

.accordion-controls button:hover {
  transform: translateY(-2px);
  background: var(--black-200);
  color: var(--yellow-100);
}

.accordion-slider {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 28px;
  min-height: 640px;
}

.accordion-slider .as-panel {
  position: relative;
  flex: .42 1 0;
  min-width: 96px;
  border: 1px solid #c8c8c8;
  background: var(--black-200);
  overflow: hidden;
  cursor: pointer;
  transition: flex .45s ease, border-color .25s ease, background-color .25s ease;
}

.accordion-slider .as-panel.as-opened {
  flex: 2.3 1 0;
  border-color: var(--yellow-100);
}

.accordion-slider .panel-image {
  display: none;
}

.accordion-slider .as-opened .panel-image {
  display: block;
  width: calc(100% - 48px);
  margin: 24px 24px 0;
  height: 270px;
  object-fit: cover;
}

.accordion-slider .as-panel::before {
  content: "→";
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  color: var(--black-200);
  font-size: 2rem;
  font-weight: var(--weight-Bold);
}

.accordion-slider .as-panel.as-opened::before {
  content: "←";
  top: 24px;
  left: 24px;
  right: auto;
  bottom: auto;
  background: var(--yellow-100);
}

.accordion-slider .as-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  z-index: 1;
  transition: opacity .25s ease;
}

.accordion-slider .as-panel.as-opened::after {
  opacity: 0;
}

.accordion-slider .closed-title {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(520px, calc(100vh - 250px));
  max-width: 520px;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  color: var(--black-200);
  font-size: 1.52rem;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.accordion-slider .as-opened .closed-title {
  display: none;
}

.accordion-slider .text {
  display: none;
  padding: 2rem 2rem 2.4rem;
  color: var(--white);
}

.accordion-slider .as-opened .text {
  display: block;
}

.accordion-slider .panel-title {
  margin: .3rem 0 1rem;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: var(--weight-Bold);
}

.accordion-slider p {
  margin: 0 0 1.3rem;
  color: rgba(255,255,255,.86);
  font-weight: var(--weight-SemiBold);
}

.accordion-slider .panel-link {
  display: inline-block;
  color: var(--yellow-100);
  border-bottom: 1px solid var(--yellow-100);
  font-weight: var(--weight-Bold);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.grid-item {
  position: relative;
  min-height: 430px;
  background: #252525;
  border: 1px solid #3b3b3b;
  color: var(--white);
  overflow: hidden;
  transition: transform .32s ease, border-color .32s ease;
}

.grid-item:hover {
  transform: translateY(-6px);
  border-color: var(--yellow-100);
}

.grid-img {
  height: 185px;
  overflow: hidden;
}

.grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.grid-item:hover .grid-img img {
  transform: scale(1.055);
}

.grid-text {
  padding: 1.4rem 2rem 5.1rem;
}

.grid-text h3 {
  margin: 0 0 .85rem;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.15;
}

.grid-text p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .96rem;
  line-height: 1.75;
}

.grid-link {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  color: var(--yellow-100);
  font-weight: var(--weight-Bold);
}

.grid-link span {
  border-bottom: 1px solid var(--yellow-100);
  padding-bottom: 7px;
}

.link-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.link-tile {
  min-height: 185px;
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid #d8d8d8;
  transition: background-color .25s ease, transform .25s ease, border-color .25s ease;
}

.link-tile:hover {
  transform: translateY(-4px);
  background: var(--yellow-100);
  border-color: var(--black-200);
}

.link-tile h3 {
  margin: 0 0 .85rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.link-tile p {
  margin: 0;
  line-height: 1.6;
  color: #353535;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 4.5rem;
  align-items: start;
}

.detail-article {
  max-width: 860px;
}

.detail-article h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.9rem, 2.4vw, 2.65rem);
  line-height: 1.12;
}

.detail-article h2:first-child {
  margin-top: 0;
}

.detail-article p {
  margin: 0 0 1.25rem;
  font-size: 1.06rem;
  line-height: 1.85;
  color: #252525;
}

.faq-block {
  margin-top: 3rem;
}

.faq-block details {
  border-top: 1px solid #d8d8d8;
  padding: 1.1rem 0;
}

.faq-block details:last-child {
  border-bottom: 1px solid #d8d8d8;
}

.faq-block summary {
  cursor: pointer;
  font-weight: var(--weight-Bold);
  font-size: 1.08rem;
}

.faq-block details p {
  margin: .8rem 0 0;
}

.side-panel {
  position: sticky;
  top: 24px;
  padding: 2rem;
  background: var(--black-200);
  color: var(--white);
  border-top: 6px solid var(--yellow-100);
}

.side-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
  color: var(--white);
}

.side-panel p {
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

.side-panel a {
  display: block;
  padding: .72rem 0;
  border-top: 1px solid rgba(255,255,255,.14);
  color: var(--yellow-100);
  font-weight: var(--weight-Bold);
}

.contact-card {
  width: min(100% - 2rem, 1160px);
  margin: 0 auto;
  background: var(--white);
  border: 24px solid var(--white);
}

.contact-card > img {
  width: 100%;
  max-height: 710px;
  object-fit: cover;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
  padding: 2rem 2.2rem;
  background: var(--yellow-100);
  text-align: center;
  color: var(--black-200);
}

.contact-strip a,
.info-block a,
.footer-contact-card a,
.side-panel p {
  white-space: nowrap;
  overflow-wrap: normal;
}

.contact-strip strong {
  display: block;
  margin-bottom: .3rem;
  font-size: 1.1rem;
}

.contact-icon {
  width: 39px;
  height: 39px;
  border: 2px solid var(--black-200);
  border-radius: 50%;
  margin: 0 auto .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.contact-wrapper {
  background-image: url("/assets/hero-reno-roof.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 19, 19, .9);
}

.contact-wrapper > .max-screen-xl {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 2rem;
  align-items: stretch;
}

.form-block,
.info-block {
  padding: 2rem;
}

.form-block {
  background: var(--white);
}

.info-block {
  background: var(--yellow-100);
  color: var(--black-200);
  font-weight: var(--weight-Bold);
}

.form-block label {
  display: block;
  margin-bottom: .85rem;
  font-weight: var(--weight-Bold);
}

.form-block input,
.form-block textarea,
.form-block select,
.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  padding: .95rem 1rem;
  background: #f8f8f8;
  color: var(--black-200);
  font-weight: var(--weight-Medium);
}

.form-block select,
.lead-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--black-200) 50%),
    linear-gradient(135deg, var(--black-200) 50%, transparent 50%);
  background-position:
    calc(100% - 23px) 50%,
    calc(100% - 15px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.form-block textarea,
.lead-form textarea {
  min-height: 132px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form .site-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.2rem;
  margin: .85rem 0 0;
  font-weight: var(--weight-Bold);
}

.form-status.success {
  color: #0b6b2d;
}

.form-status.error {
  color: #a51d1d;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.05fr);
  gap: 2.25rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-page-form {
  position: sticky;
  top: 24px;
  border-top: 8px solid var(--yellow-100);
}

.contact-map,
.contact-mini-map,
.footer-map {
  overflow: hidden;
  background: var(--white);
}

.contact-map iframe,
.contact-mini-map iframe,
.footer-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

.contact-map iframe {
  min-height: 280px;
}

.contact-mini-map {
  margin-top: 1.4rem;
}

.contact-mini-map iframe {
  min-height: 220px;
}

.site-breadcrumbs {
  margin: 0 0 1.25rem;
  color: #4a4a4a;
  font-size: .88rem;
  font-weight: var(--weight-Bold);
}

.site-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-breadcrumbs li + li::before {
  content: "/";
  margin-right: .55rem;
  opacity: .45;
}

.site-breadcrumbs a {
  border-bottom: 1px solid currentColor;
}

.site-footer {
  background: var(--black-200);
  color: var(--white);
}

.footer-top {
  padding: 4.5rem 0 3.5rem;
}

.footer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2.2rem;
  align-items: start;
}

.footer-logo img {
  width: 250px;
  margin-bottom: 1.5rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.65;
}

.site-footer h4 {
  margin: 0 0 1.6rem;
  color: var(--white);
  font-size: 1.18rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

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

.site-footer li {
  margin: 0 0 .8rem;
}

.site-footer a:hover {
  color: var(--yellow-100);
}

.site-footer a[href^="tel:"],
.site-footer a[href^="mailto:"] {
  display: block;
}

.footer-contact-card {
  padding: 1.35rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
}

.footer-contact-card > a {
  font-size: clamp(.9rem, 1vw, 1.05rem);
  font-weight: var(--weight-Bold);
  margin-bottom: .65rem;
}

.footer-map {
  margin-top: 1rem;
}

.footer-map iframe {
  min-height: 210px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.3rem 0;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

@media (min-width: 1024px) {
  .site-header .nav-btn a {
    display: inline-flex;
  }
}

@media (min-width: 1200px) {
  #hero-slider h1 {
    font-size: 4.9rem;
  }
}

@media (max-width: 1023px) {
  .site-header .content {
    min-height: 78px;
    gap: 1rem;
  }

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

  .site-nav,
  .nav-btn {
    display: none;
  }

  .phone-link {
    margin-left: auto;
    font-size: 1rem;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 60;
    inset: 0 auto 0 0;
    width: min(86vw, 370px);
    padding: 5.5rem 2rem 2rem;
    background: var(--black-200);
    color: var(--white);
    transform: translateX(-102%);
    transition: transform .32s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 46px;
    height: 46px;
    border: 0;
    background: var(--yellow-100);
    color: var(--black-200);
    font-size: 2rem;
    line-height: 1;
    font-weight: var(--weight-Bold);
    cursor: pointer;
  }

  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }

  .mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open .mobile-toggle {
    visibility: hidden;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
    font-size: 1.25rem;
    font-weight: var(--weight-Bold);
  }

  .mobile-nav .mobile-phone {
    color: var(--yellow-100);
  }

  #hero-slider .item {
    min-height: 880px;
    overflow: hidden;
  }

  #hero-slider .slider-content {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  #hero-slider h1,
  .hero-wrapper h1 {
    font-size: clamp(2.65rem, 11vw, 4.1rem);
  }

  .split-grid,
  .split-grid.reverse,
  .detail-layout,
  .contact-grid,
  .contact-page-grid,
  .footer-intro,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .link-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accordion-slider {
    flex-direction: column;
    min-height: auto;
  }

  .accordion-slider .as-panel,
  .accordion-slider .as-panel.as-opened {
    min-height: 112px;
    flex: 1 1 auto;
  }

  .accordion-slider .as-panel::before {
    width: 68px;
    height: 68px;
  }

  .accordion-slider .closed-title {
    left: 5.5rem;
    right: 1.5rem;
    bottom: 2.4rem;
    width: auto;
    transform: none;
  }

  .accordion-slider .as-opened .panel-image {
    width: calc(100% - 32px);
    margin: 16px 16px 0;
    height: 220px;
  }

  .side-panel {
    position: static;
  }

  .contact-page-form {
    position: static;
  }

  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .max-screen-xl {
    width: min(100% - 1.25rem, var(--container-width-xl));
  }

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

  .site-header .content {
    flex-wrap: nowrap;
  }

  .phone-link {
    font-size: 0.93rem;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  #hero-slider .item {
    min-height: 940px;
    background-position: 42% center;
  }

  #hero-slider .slider-content {
    text-align: center;
    transform: none;
  }

  .btn-wrap {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: .85rem;
  }

  .site-btn {
    min-width: min(100%, 168px);
  }

  .section {
    padding: 4rem 0;
  }

  .block-title h1,
  .block-title h2 {
    font-size: 2.4rem;
  }

  .service-grid,
  .link-matrix,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2.5rem;
  }
}

/* brand-logo sizing (added with brand logo + favicons) */
.brand-logo{height:40px;width:auto !important;max-width:300px;display:block}
.site-logo .brand-logo{height:42px}
.footer-logo .brand-logo,.brand-logo--footer{height:54px;width:auto !important;max-width:300px;margin-bottom:1.5rem}
@media (max-width:600px){.site-logo .brand-logo{height:36px}}
