@font-face {
  font-family: "avenirnextcondensedregular";
  src: url("../fonts/avenirnextcondensedregular.woff2") format("woff2"),
       url("../fonts/avenirnextcondensedregular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "avenirnextcondenseddemibold";
  src: url("../fonts/avenirnextcondenseddemibold.woff2") format("woff2"),
       url("../fonts/avenirnextcondenseddemibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "avenirnextcondensedbold";
  src: url("../fonts/avenirnextcondensedbold.woff2") format("woff2"),
       url("../fonts/avenirnextcondensedbold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "avenirnextcondenseddemibolditalic";
  src: url("../fonts/avenirnextcondenseddemibolditalic.woff2") format("woff2"),
       url("../fonts/avenirnextcondenseddemibolditalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #f7f7f7;
  --ink: #333333;
  --muted: #7c7c7c;
  --accent: #f05e17;
  --dark: #2e2e2e;
  --footer: #202020;
  --font-body: avenirnextcondensedregular, "Arial Narrow", Helvetica, sans-serif;
  --font-heading: avenirnextcondenseddemibold, "Arial Narrow", sans-serif;
  --font-bold: avenirnextcondensedbold, "Arial Narrow", sans-serif;
  --container: 1170px;
  --radius: 3px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: #d44f10; }
:where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.container.narrow { width: min(100% - 2rem, 820px); }
.center { text-align: center; }

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-accent {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
}
.btn-accent:hover { background: #d44f10; border-color: #d44f10; color: #fff !important; }
.btn-outline {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff !important; }
.btn-lg { padding: 1rem 1.8rem; font-size: 16px; }

/* Header — matches source header-6 */
.site-header-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}

.mobile-call-bar {
  display: none;
}

.site-header {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.site-header.is-scrolled .header-main-bar,
.site-header-sticky.is-scrolled .header-main-bar {
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}

.header-logo-bar {
  background: #404543;
  color: #fff;
  overflow: visible;
}
.header-logo-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 90px;
  height: 90px;
  position: relative;
  overflow: visible;
}
.site-logo {
  position: relative;
  z-index: 5;
  align-self: flex-start;
}
.site-logo img {
  width: 202px;
  max-width: none;
  height: auto;
  display: block;
  position: relative;
  top: 35px;
}
.logo-bar-brand {
  font-family: avenirnextcondenseddemibolditalic, var(--font-heading);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}
.logo-bar-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  text-align: right;
  padding-top: 0.2rem;
}
.logo-bar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff !important;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: background .2s ease, transform .2s ease;
}
.logo-bar-social:hover {
  background: #fff !important;
  color: var(--accent) !important;
  transform: scale(1.06);
}
.logo-bar-address {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.header-main-bar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}
.header-main-inner {
  display: flex;
  justify-content: flex-end;
  min-height: 60px;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.nav-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  width: auto;
  max-width: 100%;
  gap: 0.15rem;
}
.primary-nav .menu {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav .menu > li { position: relative; }
.primary-nav .nav-cluster > .menu > li > a {
  display: block;
  padding: 1.05rem 0.45rem;
  margin: 0 4px;
  color: #333;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.primary-nav .nav-cluster > .menu > li > a:hover,
.primary-nav .nav-cluster > .menu > .current-menu-item > a { color: var(--accent); }
.primary-nav .nav-cluster > .menu > .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 0.4rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}

/* Services megamenu — anchored to the right like the source */
.primary-nav .nav-cluster > .menu > .menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  transform: none;
  width: min(860px, 92vw);
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  list-style: none;
  margin: 0;
  padding: 1.4rem 1.6rem;
  z-index: 30;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.15rem 1.5rem;
}
.primary-nav .nav-cluster > .menu > .menu-item-has-children:hover > .sub-menu,
.primary-nav .nav-cluster > .menu > .menu-item-has-children:focus-within > .sub-menu {
  display: grid;
}
.primary-nav .sub-menu a {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 18px;
  line-height: 30px;
  padding: 0.15rem 0;
  color: #000;
  font-family: var(--font-body);
  font-weight: 400;
}
.primary-nav .sub-menu a::before {
  content: "›";
  color: var(--accent);
  font-size: 1.15em;
  line-height: 30px;
  flex-shrink: 0;
}
.primary-nav .sub-menu a:hover { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.25rem;
  list-style: none;
  margin: 0 0 0 0.35rem;
  padding: 0;
}
.header-btn a {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0.55rem 1.05rem;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-btn a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 35px;
  z-index: -1;
}
.header-btn.call a { color: var(--accent) !important; }
.header-btn.call a::before {
  border: 1px solid var(--accent);
  background: transparent;
}
.header-btn.quote a { color: #fff !important; }
.header-btn.quote a::before {
  background: var(--accent);
  border: 1px solid var(--accent);
}
.header-btn.call a:hover::before { background: rgba(240,94,23,.08); }
.header-btn.quote a:hover::before { background: #d44f10; border-color: #d44f10; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  justify-self: end;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

/* Hero */
.hero-slider {
  position: relative;
  height: min(68vh, 620px);
  min-height: 360px;
  overflow: hidden;
  background: #111;
}
.hero-slider .slides { height: 100%; }
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slider .slide.is-active { opacity: 1; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.slider-btn:hover { background: var(--accent); }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.55); cursor: pointer; padding: 0;
}
.slider-dots button.is-active { background: var(--accent); }

/* Bands */
.band { padding: 5rem 0; }
.border-sec {
  border-top: 10px solid var(--accent);
}
.intro-band,
.team-band {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto;
}
.intro-band.curve-bg,
.team-band.curve-bg {
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right center;
  background-size: 520px auto, min(560px, 48vw) auto;
  padding: 100px 0;
}
.team-band.border-sec {
  border-top: 10px solid var(--accent);
  border-bottom: 10px solid var(--accent);
}
@media (max-width: 860px) {
  .intro-band.curve-bg,
  .team-band.curve-bg {
    background-size: 280px auto, min(320px, 55vw) auto;
    background-position: 0 0, right bottom;
    padding: 3rem 0 3.5rem;
  }
  .intro-title,
  .intro-copy p {
    font-size: 22px;
  }
}
.intro-title {
  font-family: avenirnextcondenseddemibolditalic, var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--accent);
  margin: 0 0 1.25rem;
}
.intro-copy p {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--ink);
}
.intro-copy p:last-child { margin-bottom: 0; }
.section-title {
  font-family: var(--font-bold);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--dark);
}
.section-title.left {
  text-align: left;
  font-family: avenirnextcondensedbold, var(--font-bold);
  color: var(--accent);
  font-size: 28px;
  font-weight: 400;
}
.section-title.light { color: #fff; }
.cta-wrap { margin-top: 1.75rem; }
.nas-btn1 {
  border-radius: 4px;
  font-size: 15px;
  padding: 0.95rem 1.6rem;
}

.trust-band { background: #e5e5e3; }
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.offer-label {
  color: var(--accent);
  font-weight: 700;
}
.check-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.check-list li {
  position: relative;
  list-style: none;
  padding: 0 0 0 45px;
  margin: 0 0 15px;
  min-height: 30px;
  line-height: 1.35;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--list-icon) center / contain no-repeat;
}

.services-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 330px 0 80px;
  color: #fff;
}
.services-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.services-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
}
.service-carousel {
  background: var(--accent);
  padding: 30px 30px 22px;
  min-height: 220px;
}
.service-carousel-track {
  position: relative;
  min-height: 140px;
}
.service-slide {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  color: #fff !important;
  text-decoration: none !important;
  min-height: 140px;
  background: transparent;
  border: 0;
  padding: 0;
}
.service-slide.is-active {
  display: flex;
}
.service-slide-title {
  margin: 0;
  font-family: avenirnextcondensedbold, var(--font-bold);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff !important;
}
.service-slide-blurb {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #fff !important;
  max-width: 36ch;
}
.service-slide:hover .service-slide-title,
.service-slide:hover .service-slide-blurb {
  color: #fff !important;
}

.book-band {
  background: var(--dark);
  color: #ddd;
}

/* Inner pages */
.page-titlebar {
  width: 100%;
  background-size: cover;
  background-position: center;
  min-height: 260px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}
.page-titlebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.page-titlebar-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  padding: 3.5rem 0;
}
.page-titlebar h1 {
  margin: 0;
  font-family: avenirnextcondensedbold, var(--font-bold);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
}
.page-tagline {
  margin: 0.75rem 0 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,255,255,.92);
}
.page-content {
  padding-bottom: 4.5rem;
}
.page-content .page-article > :not(.accent-bar):not(.about-split-band):not(.testimonial-band):not(.service-wide-image) {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.page-article > *:first-child { margin-top: 0; }
.page-section {
  padding-top: 2.5rem;
}
.page-section--intro {
  padding-top: 2.5rem;
}
.page-heading,
.page-article h2,
.page-article h3 {
  font-family: avenirnextcondensedbold, var(--font-bold);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--accent);
  margin: 0 0 1rem;
  text-transform: none;
  letter-spacing: 0;
}
.page-article p {
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 1rem;
  color: var(--ink);
}
.page-article p:last-child { margin-bottom: 0; }

.accent-bar {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 1.6rem 1.5rem;
  font-family: avenirnextcondenseddemibold, var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  width: 100%;
}
.about-split-band {
  width: 100%;
  background: #dcdddb;
  padding: 3rem 0;
  margin: 2.5rem 0;
}
.about-split-band .container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.about-split-band .split-page {
  gap: 3rem;
  align-items: center;
}
.split-media img {
  width: 100%;
  height: auto;
  display: block;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin: 2rem 0;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.service-cards .service-card {
  background: #fff;
  border: 1px solid #ececec;
  padding: 1.25rem;
}
.service-cards .service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.service-cards .service-card a.read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.services-wrap {
  background: var(--surface);
  background-image: none;
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
}
.split-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.split-page .check-list {
  margin-top: 0.5rem;
}

/* Service pages */
.service-article .page-section--intro {
  padding-top: 2.5rem;
}
.service-article > .service-split:first-child {
  padding-top: 2.5rem;
}
.service-article .service-split {
  padding: 2rem 0;
}
.service-article .split-page {
  align-items: center;
  gap: 3rem;
}
.service-article .service-list-label {
  margin: 0 0 0.35rem;
  font-size: 18px;
  color: var(--ink);
}
.service-article .service-list-label strong {
  font-family: avenirnextcondensedbold, var(--font-bold);
  font-weight: 400;
  color: var(--accent);
  font-size: 28px;
}
.service-article .split-media img {
  width: 100%;
  height: auto;
  display: block;
}
.service-wide-image {
  width: 100%;
  margin-top: 0.5rem;
}
.service-wide-image img {
  width: 100%;
  height: auto;
  display: block;
}
.services-index .services-wrap {
  width: 100%;
  margin-top: 2rem;
  padding: 2.5rem 0;
  background: transparent;
}
.services-index .services-wrap > h3 {
  font-family: avenirnextcondensedbold, var(--font-bold);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  margin: 0 0 1.25rem;
}
.services-index .service-cards .service-card h3 {
  font-family: avenirnextcondensedbold, var(--font-bold);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--accent);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 3rem;
}
.contact-page {
  padding-top: 3.25rem;
}
.contact-page > h2:first-child {
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.contact-page > h3 {
  margin-top: 2.75rem;
  margin-bottom: 1.25rem;
}
.contact-page > p + h3 {
  margin-top: 2.75rem;
}
.contact-page .contact-cards + h3 {
  margin-top: 3rem;
}
.contact-card {
  background: var(--surface);
  text-align: center;
  padding: 2rem 1.25rem;
}
.contact-card img { width: 64px; height: 64px; margin: 0 auto 1rem; }
.contact-card h3 {
  font-family: var(--font-bold);
  text-transform: uppercase;
  font-size: 1.2rem;
}
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.nas-turnstile-wrap {
  display: flex;
  justify-content: flex-start;
  min-height: 65px;
}
.form-note {
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
}
.form-note.ok { background: #e8f7e8; color: #1f5d1f; }
.form-note.err { background: #fdeaea; color: #8a1f1f; }

/* Floating contact popup */
.nas-float-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.52rem 2.16rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.nas-float-btn:hover {
  background: #d44f10;
  transform: translateY(-2px);
}
.nas-popup {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.nas-popup.is-open {
  display: flex;
}
.nas-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.nas-popup-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: #fff;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}
.nas-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
.nas-popup-panel h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-bold);
  font-size: 1.6rem;
  color: var(--accent);
  text-transform: uppercase;
}
.nas-popup-intro {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.nas-popup-form {
  max-width: none;
  margin: 0;
}
.nas-popup-form .field-label {
  display: block;
}
.nas-popup-form .req {
  color: var(--accent);
}
.nas-popup-feedback {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.nas-popup-feedback.is-ok {
  background: #e8f7e8;
  color: #1f5d1f;
}
.nas-popup-feedback.is-err {
  background: #fdeaea;
  color: #8a1f1f;
}
body.nas-popup-open {
  overflow: hidden;
}

.testimonial-band {
  width: 100%;
  background: var(--accent);
  padding: 3rem 0;
  margin-top: 2.5rem;
}
.testimonial-band .container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.testimonial-carousel {
  margin: 0;
}
.testimonial-carousel-track {
  display: grid;
  grid-template-areas: "stack";
}
.testimonial-slide {
  grid-area: stack;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.testimonial-slide--single {
  grid-template-columns: minmax(0, calc(50% - 0.625rem));
}
.testimonial {
  background: #fff;
  padding: 1.15rem 1.25rem 1rem;
  margin: 0;
  border: 0;
  border-radius: 5px;
  position: relative;
}
.testimonial > p {
  position: relative;
  margin: 0;
  padding: 0 2.5rem;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
  text-align: center;
}
.testimonial > p::before,
.testimonial > p::after {
  color: var(--accent);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
}
.testimonial > p::before {
  content: open-quote;
  left: 0;
  top: -0.15rem;
}
.testimonial > p::after {
  content: close-quote;
  right: 0;
  bottom: -0.35rem;
  line-height: 0;
}
.testimonial footer {
  margin: 0.85rem 0 0;
  padding: 0;
  text-align: center;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 16px;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: #cfcfcf;
  padding-top: 0;
}
.footer-top.border-sec {
  border-top: 10px solid var(--accent);
  border-bottom: 10px solid var(--accent);
  background: #dcdddb;
  color: #35383d;
}
.footer-carousel {
  width: 100%;
  padding: 2.5rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.footer-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: footer-carousel-scroll 35s linear infinite;
}
.footer-carousel-item {
  margin: 0;
  flex: 0 0 auto;
}
.footer-carousel-item img {
  display: block;
  width: auto;
  height: 110px;
  max-width: none;
  margin: 0 auto;
}
@keyframes footer-carousel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.footer-top .footer-grid {
  padding: 3.5rem 0 2.5rem;
}
.footer-top a { color: #35383d; }
.footer-top a:hover { color: var(--accent); }
.footer-top .footer-block h3 {
  color: var(--accent);
}
.site-footer .footer-bottom a { color: #fff; }
.site-footer a:hover { color: var(--accent); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
}
.footer-brand img { width: 200px; max-width: 100%; }
.footer-block h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}
.footer-top .footer-block h3 {
  color: var(--accent);
  font-size: 1.25rem;
  font-family: var(--font-heading);
  letter-spacing: 0;
  text-transform: none;
}
.footer-top .footer-block p {
  font-size: 1.25rem;
  color: #35383d;
}
.footer-block p {
  margin: 0 0 0.5rem;
}
.footer-block p:last-child { margin-bottom: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 980px) {
  .services-banner { padding: 180px 0 60px; }
  .services-banner-inner { grid-template-columns: minmax(260px, 420px) 1fr; }
  .about-split-band { padding: 2rem 0; }
  .page-heading,
  .page-article h2,
  .page-article h3 { font-size: 24px; }
  .page-article p { font-size: 17px; }
  .accent-bar { font-size: 22px; }
  .logo-bar-brand { white-space: normal; }
  .header-logo-inner { min-height: 96px; }
}

@media (max-width: 860px) {
  .mobile-call-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.65rem 1rem;
    background: var(--accent);
    color: #fff !important;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
  }
  .mobile-call-bar:hover,
  .mobile-call-bar:focus {
    background: #d44f10;
    color: #fff !important;
  }
  .mobile-call-bar__label {
    font-weight: 600;
  }
  .mobile-call-bar__phone {
    font-weight: 400;
    opacity: 0.95;
  }
  .mobile-call-bar__label::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 0.45rem;
    vertical-align: -2px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .header-logo-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 84px;
  }
  .logo-bar-brand { display: none; }
  .logo-bar-meta { display: none; }
  .site-logo img {
    width: 130px;
    top: 0;
  }
  .nav-toggle { display: block; }
  .header-main-bar { display: none; }
  .header-main-bar.is-open { display: block; position: relative; }
  .primary-nav {
    position: static;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 1px solid #eee;
    display: none;
  }
  .primary-nav.is-open {
    display: flex;
  }
  .nav-cluster,
  .primary-nav .menu,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    width: 100%;
  }
  .primary-nav .nav-cluster > .menu > li > a { padding: 0.75rem 0; margin: 0; font-size: 16px; }
  .primary-nav .nav-cluster > .menu > .menu-item-has-children > .sub-menu {
    position: static;
    display: block;
    right: auto;
    width: auto;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.5rem 0.75rem;
    grid-template-columns: 1fr;
  }
  .primary-nav .nav-cluster > .menu > .menu-item-has-children:hover > .sub-menu,
  .primary-nav .nav-cluster > .menu > .menu-item-has-children:focus-within > .sub-menu {
    display: block;
  }
  .primary-nav .sub-menu a { font-size: 16px; line-height: 1.5; }
  .header-actions { display: none; }
  .header-btn a { text-align: center; width: 100%; }
  .split,
  .split-page,
  .service-cards,
  .contact-cards,
  .footer-grid,
  .feature-list,
  .testimonial-slide,
  .testimonial-slide--single { grid-template-columns: 1fr; }
  .hero-slider { min-height: 280px; height: 48vh; }
  .services-banner { padding: 120px 0 48px; }
  .services-banner-inner { grid-template-columns: 1fr; }
  .service-carousel { max-width: 100%; }
  .page-titlebar {
    min-height: 180px;
  }
  .page-titlebar-inner {
    padding: 2rem 0;
  }
  .service-article .page-section--intro {
    padding-top: 1.5rem;
  }
  .service-article > .service-split:first-child {
    padding-top: 1.5rem;
  }
  .service-article .service-split {
    padding: 1.25rem 0;
  }
  .services-index .services-wrap {
    margin-top: 1rem;
    padding-top: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .footer-carousel-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .testimonial-slide { transition: none; }
  .hero-slider .slide { transition: none; }
  .service-card.is-active { animation: none; }
  .service-slide.is-active { animation: none; }
}
