@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Architects Daughter";
  src: url("/assets/fonts/architects-daughter.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #05112e;
  --navy-2: #05112e;
  --ink: #05112e;
  --muted: #647084;
  --orange: #d14300;
  --orange-dark: #a83200;
  --light-blue: #4abcff;
  --line: #e6e9ef;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --shadow: 0 22px 60px rgba(5, 17, 46, 0.16);
  --shadow-control: 0 8px 20px rgba(5, 17, 46, 0.14);
  --shadow-card: 0 6px 14px rgba(5, 17, 46, 0.07);
  --bg: #ffffff;
  --text: #05112e;
  --border: #e6e9ef;
  --primary: #d14300;
  --home-logo-carousel-height: 180px;
  --glass-bg: rgba(255, 255, 255, 0.16);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.42);
  --glass-shadow: 0 24px 70px rgba(5, 17, 46, 0.18);
  --header-height: 112px;
  --wg-image-radius: 0.5rem;
  --wg-image-gap: 25px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-round: 50%;
  --radius-pill: 999px;
  --control-size-sm: 34px;
  --control-size-md: 42px;
  --control-size-lg: 44px;
  --control-icon-size: 24px;
  --section-inline-padding: 32px;
  --section-padding-y: 80px;
  --section-heading-width: 760px;
  --section-heading-gap: 58px;
  --section-eyebrow-gap: 8px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  background: var(--paper);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 34px;
  width: 100%;
  height: var(--header-height);
  margin: 0;
  padding: 24px max(22px, calc((100vw - 1320px) / 2));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #05112e;
  transition: height 220ms ease, padding 220ms ease, background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.home-hero-page .site-header,
.has-featured-hero .site-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled {
  top: 0;
  height: 82px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 0;
  background: #05112e;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.home-hero-page .site-header.is-scrolled,
.has-featured-hero .site-header.is-scrolled {
  background: #05112e;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.brand img {
  width: 196px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 2.8vw, 42px);
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
}

.nav-panel-header {
  display: none;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item > a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
  opacity: 0.9;
}

.nav-dropdown-toggle {
  gap: 6px;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-item > a:hover,
.nav-dropdown-toggle:hover,
.nav-item.active > a,
.nav-item.active > .nav-dropdown-toggle {
  color: var(--orange);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 5;
  display: grid;
  min-width: 178px;
  padding: 18px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 17, 46, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.9;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-menu .nav-item {
  display: block;
  width: 100%;
}

.nav-dropdown-menu .nav-item > a,
.nav-dropdown-menu .nav-dropdown-toggle {
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-dropdown-menu .nav-dropdown-menu {
  position: static;
  max-height: 0;
  min-width: 0;
  margin: 0 6px;
  padding: 0 6px;
  border-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.nav-dropdown-menu .nav-item--has-dropdown.is-open > .nav-dropdown-menu {
  max-height: 180px;
  margin-bottom: 6px;
  padding-block: 4px;
}

.nav-item--has-dropdown:hover > .nav-dropdown-menu,
.nav-item--has-dropdown:focus-within > .nav-dropdown-menu,
.nav-item--has-dropdown.is-open > .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.header-phone {
  flex: 0 0 auto;
}

.btn-border {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-border:hover,
.btn-border:focus-visible {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: transparent;
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.nav-panel-close {
  display: none;
}

.section {
  width: min(1320px, calc(100% - var(--section-inline-padding)));
  margin: 0 auto;
  padding: var(--section-padding-y) 0;
}

.container {
  width: min(1320px, calc(100% - var(--section-inline-padding)));
  margin-right: auto;
  margin-left: auto;
}

.section-dark {
  position: relative;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.section-dark:not(.hero)::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18px;
  pointer-events: none;
  background:
    linear-gradient(rgba(5, 17, 46, 0.76), rgba(5, 17, 46, 0.76)),
    url("../img/global/windows-background-section.webp") center / cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
  opacity: 0.55;
  transform: none;
}

.section-heading {
  max-width: var(--section-heading-width);
  margin: 0 auto var(--section-heading-gap);
  text-align: center;
}

.eyebrow {
  margin: 0 0 var(--section-eyebrow-gap);
  color: var(--orange);
  font-family: "Architects Daughter", cursive;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  font-size: 66px;
}

h2 {
  font-size: clamp(26px, 3.8vw, 42px);
}

h3 {
  font-size: clamp(22px, 2.7vw, 34px);
}

p {
  font-size: 17px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border: 0;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-orange {
  color: #fff;
  background: var(--orange);
}

.btn.btn-border {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.btn.btn-border:hover,
.btn.btn-border:focus-visible {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.btn-orange:hover {
  background: var(--orange-dark);
}

.btn-navy {
  color: #fff;
  background: var(--navy);
}

.btn-white {
  color: var(--orange);
  background: #fff;
}

.centered {
  margin: 28px auto 0;
}

.text-link {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions .text-link {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  min-width: 0;
  max-width: 100%;
}

.placeholder-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--wg-image-radius);
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px),
    #1f314a;
}

.placeholder-img span {
  display: none;
}

.hero {
  --hero-action-spacing: 28px;
  min-height: calc(100svh - var(--home-logo-carousel-height));
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 50px;
}

.hero::after,
.section-dark::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 17, 46, 0.94), rgba(5, 17, 46, 0.72) 52%, rgba(5, 17, 46, 0.88));
}

.section-dark:not(.hero)::after {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(90deg, rgba(5, 17, 46, 0.78), rgba(5, 17, 46, 0.62) 52%, rgba(5, 17, 46, 0.78));
}

.hero::after {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(90deg, rgba(5, 17, 46, 0.94), rgba(5, 17, 46, 0.72) 52%, rgba(5, 17, 46, 0.88));
}

.section-dark > * {
  position: relative;
  z-index: 2;
}

.block.block-hero--featured {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 560px;
  margin: 0;
  padding: var(--header-height) 16px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(rgba(5, 17, 46, 0.82), rgba(5, 17, 46, 0.82)),
    var(--featured-hero-image, url("../img/global/windows-background.webp")) center / cover no-repeat;
}

.block.block-hero--featured .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(900px, 100%);
  text-align: center;
}

.block.block-hero--featured h1,
.block.block-hero--featured .lead {
  color: #fff;
  text-align: center;
}

.block-hero h1 {
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  line-height: 1.06;
}

.block.block-hero--featured .lead {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.block-hero--featured .actions {
  justify-content: center;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 100%;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
}

.hero > .hero-bg {
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(600px, 42vw, 720px);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  width: min(1320px, calc(100% - 32px));
  min-height: calc(100svh - var(--home-logo-carousel-height) - var(--header-height) - 100px);
  margin: 0 auto;
}

.hero-copy,
.hero-chat-column {
  min-width: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-right: 0;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.hero-copy {
  text-align: left;
}

.hero-copy h1 {
  margin-right: 0;
  margin-left: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: var(--hero-action-spacing);
  min-width: 0;
  max-width: 100%;
}

.quote-card,
.chatbot-card,
.lead-form {
  color: var(--ink);
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.quote-card,
.chatbot-card {
  padding: 28px;
  border-radius: 8px;
}

.quote-card h2,
.chatbot-card h2,
.lead-form h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.quote-kicker,
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

label {
  display: block;
  margin-bottom: 12px;
}

label span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d8dde6;
  border-radius: 3px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
}

.third-party-include {
  border: 1px dashed rgba(74, 188, 255, 0.75);
}

.third-party-include p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.include-wide {
  min-height: 190px;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border-radius: 6px;
  background: #fff;
}

.include-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: 100%;
}

.include-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(74, 188, 255, 0.28), rgba(5, 17, 46, 0.08));
}

.include-lines span:nth-child(even) {
  width: 76%;
}

.chatbot-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 540px;
  align-content: center;
  overflow: hidden;
}

.chatbot-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 0 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 36%);
  opacity: 0.55;
}

.chatbot-avatar {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--light-blue);
}

.chatbot-card--inline {
  --inline-chat-radius: 16px;
  padding: 0;
  align-content: stretch;
  height: var(--hero-chat-height, clamp(420px, 46vh, 500px));
  min-height: 0;
  border-radius: var(--inline-chat-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.006)),
    rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.chatbot-card--inline::before {
  opacity: 0.28;
}

.hero-chat-column {
  display: grid;
  grid-template-rows: minmax(0, auto) auto;
  align-content: stretch;
  gap: var(--hero-action-spacing);
  width: 100%;
}

.hero-chat-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-chat-cta > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 400;
}

.hero-chat-cta .btn {
  gap: 9px;
}

.hero-chat-cta__icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("/assets/img/global/call.svg") center / contain no-repeat;
  mask: url("/assets/img/global/call.svg") center / contain no-repeat;
}

#inline-chat-slot {
  position: relative;
  display: block;
  isolation: isolate;
  contain: layout paint;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--inline-chat-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

#inline-chat-slot.is-ready {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.006)),
    rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 22px 60px rgba(5, 17, 46, 0.24);
}

#inline-chat-slot chat-widget,
#inline-chat-slot chat-widget.wg-inline-mounted {
  position: absolute !important;
  inset: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  min-height: 100% !important;
  z-index: auto !important;
}

.lc_text-widget.lc_text-widget--mobile.lc_text-widget--active {
  left: 0;
  padding: 0 !important;
}

.logo-carousel {
  position: relative;
  z-index: 4;
  --logo-gap: clamp(30px, 4vw, 64px);
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--home-logo-carousel-height);
  min-height: 180px;
  margin: 0 auto;
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid rgba(5, 17, 46, 0.12);
  background:
    linear-gradient(90deg, #fff 0, rgba(255, 255, 255, 0.9) 8%, rgba(255, 255, 255, 0.7) 18%, rgba(255, 255, 255, 0.7) 82%, rgba(255, 255, 255, 0.9) 92%, #fff 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: clamp(92px, 12vw, 230px);
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0, rgba(255, 255, 255, 0.9) 36%, rgba(255, 255, 255, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0, rgba(255, 255, 255, 0.9) 36%, rgba(255, 255, 255, 0));
}

.logo-carousel__viewport {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 0;
  padding: 22px 0;
  box-sizing: border-box;
  background: transparent;
  box-shadow: none;
  cursor: grab;
  scrollbar-width: none;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 42px, #000 calc(100% - 42px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 42px, #000 calc(100% - 42px), transparent 100%);
}

.logo-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.logo-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.logo-carousel__track {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  height: 100%;
  min-width: max-content;
}

.logo-carousel__set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 100%;
  gap: var(--logo-gap);
}

.logo-carousel__slide {
  flex: 0 0 152px;
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px 18px;
  border: 1px solid rgba(5, 17, 46, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 22px rgba(5, 17, 46, 0.08);
}

.logo-carousel__slide img {
  max-width: 124px;
  max-height: 72px;
  width: 100%;
  height: 72px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.logo-fallback {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  width: 124px;
  min-height: 100px;
  color: var(--navy);
  text-align: center;
  line-height: 1.05;
}

.logo-fallback__main {
  display: block;
  font-weight: 900;
}

.logo-fallback__sub {
  display: block;
  max-width: 106px;
  color: #68748a;
  font-size: 10px;
  font-weight: 600;
}

.logo-fallback--nfrc::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #fff;
  background:
    radial-gradient(circle at center, #fff 0 28%, transparent 29%),
    conic-gradient(from -24deg, #f05b24 0 44%, #0288bd 44% 75%, #f05b24 75% 100%);
  box-shadow: 0 0 0 1px #dfe5ed;
}

.logo-fallback--nfrc .logo-fallback__main {
  margin-top: -47px;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.logo-fallback--nfrc .logo-fallback__sub {
  margin-top: 29px;
  color: #6d7789;
}

.logo-fallback--habitat {
  color: #1c56a4;
}

.logo-fallback--habitat::before {
  content: "";
  display: block;
  width: 62px;
  height: 42px;
  margin-bottom: 2px;
  background:
    radial-gradient(circle at 50% 58%, #1c56a4 0 7px, transparent 8px),
    radial-gradient(circle at 30% 62%, #1c56a4 0 5px, transparent 6px),
    radial-gradient(circle at 70% 62%, #1c56a4 0 5px, transparent 6px),
    linear-gradient(135deg, transparent 0 34%, #46a947 35% 48%, transparent 49%),
    linear-gradient(225deg, transparent 0 34%, #46a947 35% 48%, transparent 49%);
}

.logo-fallback--habitat .logo-fallback__main {
  max-width: 86px;
  font-size: 17px;
}

.logo-fallback--homeadvisor::before {
  content: "";
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 5px solid #aab2bf;
  background:
    radial-gradient(circle at center, #fff 0 46%, transparent 47%),
    conic-gradient(#8792a1 0 12%, #dfe4ea 12% 20%, #8792a1 20% 32%, #dfe4ea 32% 40%, #8792a1 40% 54%, #dfe4ea 54% 62%, #8792a1 62% 75%, #dfe4ea 75% 83%, #8792a1 83% 100%);
}

.logo-fallback--homeadvisor .logo-fallback__main {
  margin-top: -50px;
  color: #f05b24;
  font-size: 12px;
  letter-spacing: -0.02em;
}

.logo-fallback--homeadvisor .logo-fallback__sub {
  margin-top: 31px;
  color: #5c6675;
  font-size: 9px;
  text-transform: uppercase;
}

.logo-fallback--aama {
  width: 98px;
  min-height: 86px;
  border: 2px solid #262626;
  color: #262626;
  font-family: Arial, sans-serif;
}

.logo-fallback--aama .logo-fallback__main {
  font-size: 38px;
  letter-spacing: -0.08em;
}

.service-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--wg-image-radius);
  background: var(--navy);
  box-shadow: var(--glass-shadow);
}

.service-slider__viewport,
.results-carousel__viewport {
  overflow: hidden;
}

.service-slider__track,
.compare-grid {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.service-slide {
  position: relative;
  display: flex;
  flex: 0 0 100%;
  min-height: 560px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 54px) clamp(28px, 4vw, 54px) calc(clamp(20px, 3vw, 38px) + 76px);
  color: #fff;
}

.service-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 22%, rgba(5, 17, 46, 0.82)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
}

.service-slide__copy,
.service-slide__button {
  position: relative;
  z-index: 2;
}

.service-slide__copy {
  max-width: 640px;
}

.service-slide h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(56px, 8vw, 96px);
}

.service-slide p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.service-slide__button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  min-width: min(100%, 240px);
  min-height: 56px;
  padding: 5px;
  border-radius: 999px;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: color 120ms ease 170ms, border-color 220ms ease, background 220ms ease;
}

.service-slide__button::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: 42px;
  border-radius: 50%;
  background: var(--orange);
  transition: top 320ms cubic-bezier(0.22, 1, 0.36, 1), bottom 320ms cubic-bezier(0.22, 1, 0.36, 1), left 320ms cubic-bezier(0.22, 1, 0.36, 1), width 320ms cubic-bezier(0.22, 1, 0.36, 1), border-radius 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-slide__button::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15px;
  width: 24px;
  height: 24px;
  background: #fff;
  mask: url("/assets/img/global/chevron-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/img/global/chevron-right.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.service-slide__button span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0 18px 0 54px;
  white-space: nowrap;
}

.service-slide__button:hover,
.service-slide__button:focus-visible {
  color: #fff;
  border-color: var(--orange);
  background: #fff;
}

.service-slide__button:hover::before,
.service-slide__button:focus-visible::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 999px;
}

.service-slider__nav {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: clamp(22px, 5vw, 80px);
  min-height: 84px;
  padding: 14px 30px;
  border-top: 1px solid var(--glass-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.006)),
    rgba(255, 255, 255, 0.01);
  box-shadow: 0 -20px 54px rgba(5, 17, 46, 0.2);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.service-slider__nav::before,
.service-slider__nav::after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--carousel-marker-w, 0px);
  height: 3px;
  background: var(--orange);
  transform: translateX(var(--carousel-marker-x, 0px));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), width 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.service-slider__nav::before {
  top: 20px;
}

.service-slider__nav::after {
  bottom: 20px;
}

.service-slider__nav button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  border: 0;
  min-height: 44px;
  padding: 7px 0;
  color: #fff;
  background: transparent;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.service-slider__nav button[aria-current="true"] {
  color: #fff;
}

.service-slider__controls {
  position: absolute;
  z-index: 5;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 10px;
}

.service-slider__controls button {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
}

.service-slider__controls button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  background: currentColor;
  mask: url("/assets/img/global/chevron-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/img/global/chevron-right.svg") center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.service-slider__controls [data-carousel-prev]::before {
  mask-image: url("/assets/img/global/chevron-left.svg");
  -webkit-mask-image: url("/assets/img/global/chevron-left.svg");
}

.financing-band::after,
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 17, 46, 0.78));
}

.before-after-section {
  position: relative;
  width: 100%;
  padding: 86px max(16px, calc((100vw - 1320px) / 2));
  background: var(--navy);
}

.before-after-section::after {
  display: block;
}

.before-after-section .section-heading {
  color: #fff;
}

.compare-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: var(--wg-image-gap);
  width: 100%;
  margin: 0 auto;
}

.before-after-slider {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--wg-image-radius);
  background: #071735;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
  user-select: none;
}

.results-carousel {
  position: relative;
  width: min(648px, calc((100% - var(--wg-image-gap)) / 2));
  margin: 0 auto;
}

.results-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.results-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.results-carousel__controls button {
  --carousel-control-size: var(--control-size-md);
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.results-carousel__controls button,
.story-media-carousel__arrow,
.google-reviews-displayer__controls button,
.product-feature-carousel__controls button,
.bottom-reviews-carousel__controls button {
  display: grid;
  place-items: center;
  position: relative;
  width: var(--carousel-control-size, var(--control-size-md));
  height: var(--carousel-control-size, var(--control-size-md));
  padding: 0;
  border-radius: var(--radius-round);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
}

.results-carousel__controls button::before,
.story-media-carousel__arrow::before,
.google-reviews-displayer__controls button::before,
.product-feature-carousel__controls button::before,
.feature-card-carousel__controls button::before,
.bottom-reviews-carousel__controls button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--carousel-control-icon-size, var(--control-icon-size));
  height: var(--carousel-control-icon-size, var(--control-icon-size));
  background: currentColor;
  mask: url("/assets/img/global/chevron-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/img/global/chevron-right.svg") center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.results-carousel__controls [data-carousel-prev]::before,
.story-media-carousel__arrow--prev::before,
.google-reviews-displayer__controls [data-google-reviews-prev]::before,
.product-feature-carousel__controls [data-carousel-prev]::before,
.feature-card-carousel__controls [data-carousel-prev]::before,
.bottom-reviews-carousel__controls [data-carousel-prev]::before {
  mask-image: url("/assets/img/global/chevron-left.svg");
  -webkit-mask-image: url("/assets/img/global/chevron-left.svg");
}

.before-after-slider__image,
.before-after-slider__after {
  position: absolute;
  inset: 0;
}

.before-after-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-slider__after {
  clip-path: inset(0 0 0 var(--split));
  overflow: hidden;
}

.before-after-slider__after .before-after-slider__image {
  width: 100%;
}

.before-after-slider__label {
  position: absolute;
  z-index: 3;
  top: 14px;
  padding: 6px 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(5, 17, 46, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.before-after-slider__label--before {
  left: 14px;
}

.before-after-slider__label--after {
  right: 14px;
}

.before-after-slider__range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after-slider__handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}

.before-after-slider__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.story {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  gap: 48px;
}

.story--with-heading {
  display: block;
}

.story-heading {
  max-width: 1000px;
  margin: 0 auto var(--section-heading-gap);
  text-align: center;
}

.story-heading h2 {
  max-width: 920px;
  margin: 0 auto;
}

.story__body {
  display: grid;
  grid-template-columns: minmax(280px, 427px) 1fr;
  align-items: center;
  gap: clamp(42px, 5.5vw, 70px);
}

.story__body > *,
.story-media-carousel {
  min-width: 0;
}

.story-reverse {
  grid-template-columns: 1fr 380px;
}

.story-reverse .story-media {
  order: 2;
}

.story-media {
  min-height: 360px;
  color: rgba(255, 255, 255, 0.9);
}

.story-media-carousel {
  position: relative;
  width: 100%;
}

.story-media-carousel__viewport {
  overflow: hidden;
}

.story-media-carousel__track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.story-media-carousel__slide {
  flex: 0 0 100%;
  aspect-ratio: 3 / 4;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--wg-image-radius);
  background: #e9edf2;
}

.story-media-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media-carousel__arrow {
  --carousel-control-size: var(--control-size-md);
  position: absolute;
  z-index: 2;
  top: 50%;
  border: 0;
  color: #fff;
  background: rgba(5, 17, 46, 0.34);
  transform: translateY(-50%);
}

.story-media-carousel__arrow--prev {
  left: 16px;
}

.story-media-carousel__arrow--next {
  right: 16px;
}

.story-media-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
}

.story-media-carousel__dots button {
  --carousel-dot-size: 7px;
  --carousel-dot-color: rgba(5, 17, 46, 0.2);
  --carousel-dot-active-color: var(--ink);
}

.story-copy p:not(.eyebrow) {
  color: #313a48;
}

.story-copy .story-lead {
  color: #202532;
  font-weight: 800;
}

.story-embed-section {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 88px;
  padding-bottom: 88px;
  padding-right: 0;
  padding-left: 0;
}

.story-embed-section iframe {
  display: block;
  border: 0;
  border-radius: var(--wg-image-radius);
  background: #f5f7fb;
}

.story-embed-section + .reviews {
  padding-top: 32px;
}

.google-reviews-displayer {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(5, 17, 46, 0.08);
}

.google-reviews-displayer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.google-reviews-displayer__score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.google-reviews-displayer__source {
  flex-basis: 100%;
  color: var(--ink);
  font-size: 15px;
}

.google-reviews-displayer__score strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.google-reviews-displayer__stars,
.google-review-card__stars {
  color: #ffb000;
  letter-spacing: 0;
}

.google-reviews-displayer__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-reviews-displayer__link {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.google-reviews-displayer__controls {
  display: flex;
  gap: 8px;
}

.google-reviews-displayer__controls button {
  --carousel-control-size: 36px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.google-reviews-displayer__controls button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.google-reviews-displayer__status {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.google-reviews-displayer__status[hidden] {
  display: none;
}

.google-reviews-displayer__viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.google-reviews-displayer__viewport::-webkit-scrollbar {
  display: none;
}

.google-reviews-displayer__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.google-reviews-displayer__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 32px) / 3));
  gap: 16px;
}

.google-review-card {
  position: relative;
  min-height: 234px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(5, 17, 46, 0.06);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  overflow: hidden;
  text-align: left;
}

.google-review-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--orange);
}

.google-review-card__head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.google-review-card__avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: #1686d9;
  font-size: 18px;
  font-weight: 600;
  object-fit: cover;
}

.google-review-card__platform {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.google-review-card__name,
.google-review-card__meta {
  display: block;
}

.google-review-card__name {
  overflow: hidden;
  color: var(--ink);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review-card__meta {
  color: var(--muted);
  font-size: 12px;
}

.google-review-card__stars {
  margin-bottom: 8px;
  font-size: 17px;
}

.google-review-card p {
  display: -webkit-box;
  min-height: calc(1.42em * 4);
  margin: 0;
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.google-review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 8px;
}

.google-review-card__more,
.google-review-card__source {
  display: inline-flex;
  align-items: center;
  color: #9ca3af;
  font-size: 14px;
}

.google-review-card__source {
  margin-left: auto;
  color: var(--orange);
}

.google-review-card--empty {
  min-height: 150px;
  background: #fff;
}

.google-review-card--empty p {
  display: block;
  min-height: 0;
  margin-top: 12px;
}

.google-review-card.is-loading {
  background:
    linear-gradient(90deg, rgba(5, 17, 46, 0.05), rgba(74, 188, 255, 0.1), rgba(5, 17, 46, 0.05)),
    #fff;
  background-size: 220% 100%;
  animation: reviewLoading 1.2s ease-in-out infinite;
}

.google-review-card.is-loading .google-review-card__avatar,
.google-review-card.is-loading .google-review-card__name,
.google-review-card.is-loading .google-review-card__meta,
.google-review-card.is-loading p {
  border-radius: 999px;
  color: transparent;
  background: rgba(5, 17, 46, 0.08);
}

.google-review-card.is-loading .google-review-card__name {
  width: 120px;
  height: 12px;
}

.google-review-card.is-loading .google-review-card__meta {
  width: 86px;
  height: 10px;
  margin-top: 8px;
}

.google-review-card.is-loading p {
  height: 92px;
  border-radius: 8px;
}

.google-reviews-displayer--mini {
  margin-top: 18px;
  padding: 16px;
  box-shadow: none;
}

.google-reviews-displayer--mini .google-reviews-displayer__bar {
  align-items: flex-start;
}

.google-reviews-displayer--mini .google-reviews-displayer__track {
  grid-auto-columns: minmax(240px, 86%);
}

.google-reviews-displayer--mini .google-review-card {
  min-height: 220px;
}

@keyframes reviewLoading {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

.stars {
  color: #ffb000;
  font-size: 24px;
  letter-spacing: 0;
}

.financing-band {
  position: relative;
  min-height: 328px;
  overflow: hidden;
  color: #fff;
  background-position: center right;
  background-size: cover;
}

.financing-band::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 60%;
  background: var(--orange);
  clip-path: polygon(0 0, calc(100% - 52px) 0, 100% 50%, calc(100% - 52px) 100%, 0 100%);
}

.financing-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(5, 17, 46, 0.54) 56%, rgba(5, 17, 46, 0.38)),
    linear-gradient(180deg, rgba(5, 17, 46, 0.12), rgba(5, 17, 46, 0.32));
}

.financing-band__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 60%) 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 328px;
  padding: 44px 0;
}

.financing-band__copy {
  max-width: 760px;
}

.financing-band h2 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.08;
  text-transform: none;
}

.financing-band p {
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.25;
  font-weight: 500;
}

.financing-band__action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.financing-band .btn {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--wg-image-gap);
}

.gallery-grid > * {
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.gallery .btn.centered {
  display: flex;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(5, 17, 46, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.lightbox-modal img {
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  border-radius: var(--wg-image-radius);
  background: transparent;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 160ms ease;
  will-change: left, top, width, height, opacity;
}

.lightbox-modal.is-open {
  opacity: 1;
}

.lightbox-modal.is-open img {
  opacity: 1;
}

.lightbox-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 44px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.lightbox-modal__close span,
.lightbox-modal__close span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.lightbox-modal__close span {
  transform: rotate(45deg);
}

.lightbox-modal__close span::after {
  content: "";
  transform: rotate(90deg);
}

.lightbox-modal__nav {
  position: absolute;
  z-index: 1;
  top: 50%;
  display: grid;
  place-items: center;
  width: var(--control-size-md);
  height: var(--control-size-md);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 17, 46, 0.72);
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-modal__nav--prev {
  left: clamp(10px, 3vw, 40px);
}

.lightbox-modal__nav--next {
  right: clamp(10px, 3vw, 40px);
}

.lightbox-modal__nav::before {
  content: "";
  width: var(--control-icon-size);
  height: var(--control-icon-size);
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.lightbox-modal__nav--prev::before {
  mask-image: url("/assets/img/global/chevron-left.svg");
  -webkit-mask-image: url("/assets/img/global/chevron-left.svg");
}

.lightbox-modal__nav--next::before {
  mask-image: url("/assets/img/global/chevron-right.svg");
  -webkit-mask-image: url("/assets/img/global/chevron-right.svg");
}

.lightbox-modal__nav:hover,
.lightbox-modal__nav:focus-visible,
.lightbox-modal__close:hover,
.lightbox-modal__close:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.ratings {
  padding-top: 48px;
}

.rating-card {
  display: grid;
  place-items: center;
  min-height: 184px;
  padding: 22px 24px 28px;
  border: 1px solid rgba(5, 17, 46, 0.06);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(5, 17, 46, 0.14);
}

.rating-card span {
  margin-bottom: 10px;
  color: #1f2636;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.rating-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 50px;
  font-weight: 500;
  line-height: 0.95;
}

.rating-card img {
  width: min(100%, 180px);
  height: 56px;
  max-height: 56px;
  object-fit: contain;
}

.rating-card em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}

.why-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.82fr);
  align-items: start;
  gap: clamp(42px, 5vw, 72px);
  padding: 86px max(16px, calc((100vw - 1320px) / 2));
}

.why-contact::before {
  inset: -18px;
  background:
    linear-gradient(rgba(5, 17, 46, 0.76), rgba(5, 17, 46, 0.76)),
    url("../img/global/windows-background-section.webp") center / cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
  opacity: 0.55;
  transform: none;
}

.why-list,
.lead-form {
  position: relative;
  z-index: 2;
}

.why-list h2 {
  color: #fff;
  margin-bottom: 34px;
}

.why-value-grid {
  display: grid;
  gap: 20px;
}

.why-value-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.why-value-card img {
  justify-self: center;
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.why-value-card h3 {
  margin-bottom: 8px;
  color: var(--orange);
  font-family: "Architects Daughter", cursive;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: capitalize;
}

.why-value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.55;
}

.lead-form {
  padding: 28px;
  border-radius: 8px;
}

.why-contact .lead-form {
  width: 100%;
  max-width: 610px;
  min-height: 1040px;
  justify-self: end;
  padding: 20px 20px 34px;
  overflow: hidden;
  background: #fff;
}

.why-contact .lead-form iframe {
  display: block;
  width: 100%;
  min-height: 986px;
  height: 986px !important;
  border-radius: 6px;
  overflow: hidden;
}

.lead-form input,
.lead-form textarea {
  margin-bottom: 10px;
}

.styles-section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  margin: 0 auto;
}

.style-grid a {
  min-height: 380px;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 24px;
  padding: 54px 34px 36px;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.style-grid a:hover,
.style-grid a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(5, 17, 46, 0.18);
}

.style-grid img {
  width: min(96%, 390px);
  height: clamp(180px, 22vw, 285px);
  aspect-ratio: 4 / 3;
  max-height: 285px;
  object-fit: contain;
}

.style-grid h3 {
  color: var(--orange);
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.styles-section__cta {
  display: flex;
  width: max-content;
  margin: 38px auto 0;
}

.styles-carousel__controls,
.styles-carousel__dots {
  display: none;
}

@media (max-width: 640px) {
  .styles-carousel__viewport {
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
  }

  .styles-carousel__viewport.is-dragging {
    cursor: grabbing;
  }

  .styles-section .style-grid {
    display: flex;
    gap: 16px;
    transition: transform 320ms ease;
    will-change: transform;
  }

  .styles-section .style-grid a {
    flex: 0 0 calc((100% - 16px) / 2.25);
    min-height: 290px;
    padding: 30px 18px 24px;
  }

  .styles-section .style-grid img {
    height: 190px;
  }

  .styles-carousel__controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  .styles-carousel__controls button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--navy);
    background: #fff;
    box-shadow: var(--shadow-card);
    font-size: 28px;
  }

  .styles-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 4px;
  }

  .styles-carousel__dots button {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .styles-carousel__dots button::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cfd3dc;
  }

  .styles-carousel__dots button[aria-current="true"]::after {
    background: var(--navy);
  }
}

iframe[data-deferred-src] {
  background: #f3f5f8;
}

.deferred-chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 19;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: var(--shadow-control);
  cursor: pointer;
}

.deferred-chat-launcher:hover,
.deferred-chat-launcher:focus-visible {
  background: var(--orange-dark);
}

.deferred-chat-launcher.is-loading {
  opacity: 0.72;
}

@media (max-width: 480px) {
  .deferred-chat-launcher {
    right: 14px;
    bottom: 14px;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 78px);
  align-items: start;
  padding-top: 72px;
}

.process-steps__media {
  align-self: stretch;
  min-height: 780px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
}

.process-steps__content h2 {
  margin-bottom: var(--section-heading-gap);
  color: var(--navy);
  font-size: clamp(2.15rem, 4vw, 3rem);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.process-steps__content > .eyebrow {
  text-align: center;
}

.process-steps__list {
  position: relative;
  display: grid;
  gap: 54px;
  margin-bottom: 42px;
}

.process-steps__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13px;
  width: 2px;
  background: var(--orange);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.process-step span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0;
  font-weight: 800;
  line-height: 1;
}

.process-step h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.process-steps .btn {
  display: flex;
  width: max-content;
  margin: 0 auto;
  padding: 0 34px;
}

:root {
  --product-container-width: 1320px;
  --product-content-inset: 25px;
}

.window-product-series {
  width: min(var(--product-container-width), calc(100% - var(--section-inline-padding)));
}

.product-window-page .page-content {
  padding-top: 0;
}

.product-window-page .block-hero {
  width: min(var(--product-container-width), calc(100% - var(--section-inline-padding)));
  margin: 0 auto;
  padding-top: 88px;
  padding-bottom: 0;
  background: #fff;
}

.product-window-page .block-hero.block-hero--featured {
  width: 100%;
  margin: 0;
  padding: var(--header-height) 16px 0;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(rgba(5, 17, 46, 0.82), rgba(5, 17, 46, 0.82)),
    var(--featured-hero-image, url("../img/global/windows-background.webp")) center / cover no-repeat;
}

.product-window-page .block-hero.block-hero--featured .container {
  display: block;
  width: min(900px, 100%);
  padding-inline: var(--section-inline-padding);
  text-align: center;
}

.product-window-page .block-hero.block-hero--featured h1 {
  max-width: 900px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  line-height: 1.06;
}

.product-window-page .block-hero.block-hero--featured .lead {
  max-width: 900px;
  margin-inline: auto;
  color: #fff;
  text-align: center;
}

.product-window-page .block-hero .container {
  display: grid;
  grid-template-columns: 180px minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: center;
  width: 100%;
  padding-inline: 0;
}

.hero-product-logo {
  display: grid;
  place-items: center;
  justify-self: start;
  width: 180px;
  aspect-ratio: 1;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.hero-product-logo img {
  max-height: 88px;
  object-fit: contain;
}

.product-window-page .block-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.72rem, 2.65vw, 2.35rem);
  line-height: 1.18;
}

.hero-product-title,
.hero-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}

.hero-product-copy .lead {
  max-width: none;
  margin: 0;
  color: #2f2f35;
  font-size: 17px;
  line-height: 1.7;
}

.hero-product-copy .lead + .lead {
  margin-top: 20px;
}

.product-series-tabs {
  display: flex;
  margin-bottom: 52px;
  background: #f3f3f3;
}

.product-series-tab,
.window-options__tabs button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 64px;
  border: 0;
  color: #667086;
  background: transparent;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.product-series-tab.is-active,
.product-series-tab[aria-selected="true"],
.window-options__tabs button.is-active,
.window-options__tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--orange);
  font-weight: 700;
}

.product-series-tab.is-active::after,
.product-series-tab[aria-selected="true"]::after,
.window-options__tabs button.is-active::after,
.window-options__tabs button[aria-selected="true"]::after {
  content: none;
}

.product-series-panel[hidden],
.window-options__panel[hidden] {
  display: none;
}

.product-series-main {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding-inline: var(--product-content-inset);
}

.product-series-card,
.product-info-grid article,
.product-feature-card,
.window-option-card {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.product-series-card {
  display: grid;
  gap: 12px;
  padding: 0 24px 26px;
  text-align: center;
}

.product-series-card__head {
  margin: 0 -24px;
  padding: 24px 22px 18px;
  background: #e9e9e9;
}

.product-series-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-series-card__badge,
.product-series-card li::marker {
  color: var(--orange);
}

.product-series-card__badge {
  margin: 8px 0 0;
  color: #222;
  font-size: 16px;
}

.product-series-card img {
  justify-self: center;
  max-width: 180px;
  max-height: 260px;
  object-fit: contain;
}

.product-series-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.product-series-price strong {
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.product-series-price span {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.product-series-card > span {
  color: var(--muted);
  font-size: 13px;
}

.product-series-card ul,
.product-series-copy ul {
  margin: 0;
  padding-left: 20px;
  text-align: left;
}

.product-series-card li,
.product-series-copy li {
  margin-bottom: 8px;
}

.product-series-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(5, 17, 46, 0.18);
  list-style: none;
}

.product-series-card li::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  vertical-align: -3px;
}

.product-series-copy {
  display: flex;
  flex-direction: column;
  min-height: 680px;
}

.product-series-copy ul {
  font-size: 17px;
  line-height: 1.7;
}

.product-series-copy h3,
.product-info-grid h3,
.product-feature-carousel h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 24px;
  text-transform: uppercase;
}

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

.product-gallery a {
  display: block;
}

.product-gallery img {
  width: 150px;
  height: 120px;
  object-fit: cover;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
  padding-inline: var(--product-content-inset);
}

.product-info-grid article {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.product-info-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 34px;
  font-weight: 800;
}

.product-info-grid a {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
}

.product-feature-carousel {
  position: relative;
  margin-top: 36px;
  padding: 0 0 34px;
  overflow: visible;
}

.product-feature-carousel__viewport {
  margin: 0;
  padding: 18px var(--product-content-inset) 72px;
  overflow: hidden;
}

.product-feature-carousel[data-carousel-draggable="true"] .product-feature-carousel__viewport {
  cursor: grab;
  touch-action: pan-y;
}

.product-feature-carousel[data-carousel-draggable="true"] .product-feature-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.product-feature-carousel h3 {
  padding-inline: var(--product-content-inset);
}

.product-feature-carousel__track {
  display: flex;
  gap: 28px;
  transition: transform 420ms ease;
}

.product-feature-card {
  flex: 0 0 calc((100% - 84px) / 4);
  display: grid;
  grid-template-rows: minmax(0, 52%) minmax(0, 1fr);
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(5, 17, 46, 0.1);
}

.product-feature-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.product-feature-card p {
  margin: 0;
  padding: clamp(16px, 1.8vw, 24px) clamp(14px, 1.6vw, 22px);
  color: var(--muted);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.45;
  overflow: auto;
}

.product-feature-carousel__controls {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: calc(var(--product-content-inset) - 17px);
  left: calc(var(--product-content-inset) - 17px);
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.product-feature-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0;
}

.product-feature-carousel__dots button {
  --carousel-dot-size: 10px;
  --carousel-dot-color: #d7d7d7;
  --carousel-dot-active-color: #111;
}

.story-media-carousel__dots button,
.product-feature-carousel__dots button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.story-media-carousel__dots button::after,
.product-feature-carousel__dots button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--carousel-dot-size);
  height: var(--carousel-dot-size);
  border-radius: var(--radius-pill);
  background: var(--carousel-dot-color);
  transform: translate(-50%, -50%);
}

.story-media-carousel__dots button[aria-current="true"]::after,
.product-feature-carousel__dots button[aria-current="true"]::after {
  background: var(--carousel-dot-active-color);
}

.product-feature-carousel__controls button {
  --carousel-control-size: var(--control-size-sm);
  --carousel-control-icon-size: 22px;
  pointer-events: auto;
  border: 0;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow);
}

.window-options {
  margin-top: 36px;
  padding-inline: var(--product-content-inset);
}

.window-options__tabs {
  display: flex;
  border: 0;
  background: #eee;
}

.window-options__tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 68px;
  padding: 0 10px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  :root {
    --section-padding-y: 72px;
  }
}

.window-options__tabs .window-option-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.window-options__tabs .window-option-icon svg,
.product-info-icon svg {
  width: 22px;
  height: 22px;
}

.window-options__intro {
  max-width: 980px;
  margin: 24px auto 0;
  text-align: center;
}

.window-options__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px 48px;
  max-width: none;
  margin: 42px auto 0;
}

.window-option-card {
  display: grid;
  gap: 0;
  align-content: start;
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.window-option-card a {
  display: block;
}

.window-option-card img,
.window-option-card__swatch {
  width: 100%;
  height: 260px;
  padding: 42px;
  object-fit: contain;
  border: 0;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.window-option-card strong {
  display: block;
  margin-top: 30px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-cards {
  background: transparent;
}

.brand-cards__grid {
  display: grid;
  gap: 28px;
}

.brand-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--wg-image-radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.brand-card__logo {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(5, 17, 46, 0.08);
  border-radius: var(--wg-image-radius);
}

.brand-card__logo img {
  width: min(100%, 360px);
  height: 150px;
  max-width: min(100%, 360px);
  max-height: 150px;
  border-radius: var(--wg-image-radius);
  object-fit: contain;
}

.brand-card h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(1.25rem, 1.65vw, 1.75rem);
}

.brand-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--orange);
  text-transform: uppercase;
}

.brand-card__badge-icon {
  font-size: 19px;
  line-height: 1;
}

.brand-card__badge strong {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.brand-card p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.brand-resources {
  display: grid;
  gap: 34px;
  padding-block: var(--section-padding-y);
}

.brand-resources__intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.brand-resources__media {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 36px;
  background: #f3f5f8;
}

.brand-resources__media img {
  width: min(280px, 100%);
  max-height: 210px;
  object-fit: contain;
}

.brand-resources__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 54px);
}

.brand-resources__copy h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.brand-resources__copy p {
  max-width: 720px;
  margin: 0;
  color: #4f5b6d;
  font-size: 18px;
  line-height: 1.7;
}

.brand-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.brand-resource-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
}

.brand-resource-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #f4f6f8;
  color: var(--orange);
}

.brand-resource-card__icon svg {
  width: 22px;
  height: 22px;
}

.brand-resource-card__title {
  font-size: 17px;
  line-height: 1.35;
}

.brand-resource-card .btn {
  align-self: end;
  justify-self: start;
  margin-top: auto;
}

.video-section {
  padding: var(--section-padding-y) 0;
  background: var(--navy);
}

.video-section .section-heading {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.video-section .section-heading h2 {
  color: #fff;
}

.video-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.video-card {
  display: grid;
  gap: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.video-card iframe,
.video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  background: #000;
}

.video-card p {
  max-width: 440px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.video-thumb {
  min-height: 150px;
  cursor: pointer;
}

.video-thumb i {
  position: relative;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
}

.video-thumb i::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 18px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.service-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  margin: 0;
  background: #fff;
}

.map-placeholder {
  min-height: 560px;
  color: rgba(255, 255, 255, 0.9);
  background-color: #d7e6ee;
}

.site-footer {
  color: #fff;
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr 1fr 1.25fr;
  justify-items: start;
  gap: 46px;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0 36px;
  text-align: left;
}

.footer-brand {
  display: grid;
  justify-items: start;
}

.footer-brand img {
  width: 196px;
  height: auto;
  margin-left: -10px;
  margin-bottom: 24px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.6;
  text-align: left;
}

.footer-links {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
  text-align: left;
}

.footer-links a,
.footer-contact a,
.footer-contact strong,
.footer-contact address {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-links a {
  font-weight: 400;
  text-transform: capitalize;
}

.footer-links .active,
.footer-phone {
  color: #ff7a45;
}

.footer-contact {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 12px;
  text-align: left;
}

.footer-phone {
  font-size: 24px;
  font-weight: 800;
}

.footer-contact a:not(.footer-phone),
.footer-contact address {
  font-weight: 400;
}

.footer-contact address {
  margin: 0;
  font-style: normal;
}

.footer-social {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 54px;
}

@media (min-width: 901px) {
  .footer-main > :not(:first-child) {
    padding: 15px;
  }
}

.footer-social__label {
  flex: 0 0 auto;
  margin-right: 10px;
  text-align: left;
  color: var(--orange);
  font-family: "Architects Daughter", cursive;
  font-size: 26px;
  transform: rotate(-4deg);
}

.footer-social__item {
  display: inline-flex;
  line-height: 0;
  transition: transform 160ms ease;
}

.footer-social__icon {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.footer-social__icon--inactive {
  opacity: 0.45;
}

.footer-social__item:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 900px) {
  :root {
    --home-logo-carousel-height: 180px;
    --section-padding-y: 64px;
  }

  .results-carousel {
    width: 100%;
  }

  .site-header {
    right: 0;
    width: auto;
    max-width: 100vw;
    justify-content: space-between;
    height: var(--header-height);
    gap: 16px;
    padding: 24px 20px;
    overflow: visible;
  }

  .site-logo img,
  .brand img {
    width: min(196px, calc(100vw - 104px));
  }

  h1 {
    font-size: 54px;
  }

  .hero-actions .text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .menu-toggle {
    flex: 0 0 42px;
    display: block;
    margin-left: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-links {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    width: 100vw;
    height: 100svh;
    height: 100dvh;
    padding: 0 20px 32px;
    overflow-y: auto;
    background: #05112e;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 260ms ease, opacity 260ms ease;
    visibility: hidden;
  }

  .nav-links:not(.is-open) {
    width: 0;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }

  .nav-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 var(--header-height);
    height: var(--header-height);
    margin: 0 -20px 12px;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-panel-logo img {
    width: min(196px, calc(100vw - 104px));
    height: auto;
  }

  .nav-panel-close {
    position: relative;
    flex: 0 0 42px;
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    color: #fff;
    background: transparent;
    cursor: pointer;
  }

  .nav-panel-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transform-origin: center;
  }

  .nav-panel-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-panel-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-item {
    display: block;
    width: 100%;
  }

  .nav-item > a,
  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    max-height: 0;
    margin: 0 8px;
    padding: 0 6px;
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
    overflow: hidden;
    pointer-events: auto;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease, margin 220ms ease;
    visibility: visible;
  }

  .nav-item--has-dropdown:hover > .nav-dropdown-menu,
  .nav-item--has-dropdown:focus-within > .nav-dropdown-menu {
    max-height: 0;
    margin: 0 8px;
    padding-top: 0;
    padding-bottom: 0;
    transform: none;
  }

  .nav-item--has-dropdown.is-open > .nav-dropdown-menu {
    max-height: 560px;
    margin: 0 8px 8px;
    padding-top: 6px;
    padding-bottom: 6px;
    transform: none;
  }

  .nav-links.is-open {
    display: flex;
    width: 100vw;
    padding-right: 20px;
    padding-left: 20px;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .nav-item > a {
    padding: 14px;
  }

  .header-phone {
    display: none;
  }

  body.nav-open .site-header {
    background: #05112e;
  }

  .logo-carousel {
    --logo-gap: 30px;
    min-height: 112px;
    margin: 0 auto;
  }

  .logo-carousel__viewport {
    padding: 9px 0;
  }

  .hero-inner,
  .story,
  .story-reverse,
  .story__body,
  .why-contact,
  .process-steps,
  .brand-card,
  .brand-resources__intro,
  .service-map,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .tabbed-carousel__slide {
    flex-basis: calc((100% - 36px) / 3);
  }

  .tagged-post-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .footer-main {
    gap: 34px;
    width: min(640px, calc(100% - 32px));
    padding: 62px 0 36px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
  }

  .footer-brand p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .footer-contact {
    justify-items: center;
    text-align: center;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding-bottom: 54px;
  }

  .footer-social__label {
    flex-basis: 100%;
    margin-right: 0;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .story-reverse .story-media {
    order: 0;
  }

  .story-heading {
    margin-bottom: 34px;
  }

  .story-media-carousel {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .financing-band::before {
    width: 100%;
    background: rgba(254, 81, 6, 0.88);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), 50% 100%, 0 calc(100% - 42px));
  }

  .financing-band::after {
    background: rgba(5, 17, 46, 0.18);
  }

  .financing-band__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    width: min(640px, calc(100% - 32px));
    text-align: center;
  }

  .financing-band__copy {
    max-width: none;
  }

  .rating-card {
    min-height: 170px;
  }

  .style-grid {
    gap: 24px;
  }

  .style-grid a {
    min-height: 300px;
  }

  .process-steps__media {
    min-height: 360px;
  }

  .product-series-main,
  .product-info-grid {
    grid-template-columns: 1fr;
  }

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

  .product-window-page .block-hero .container {
    grid-template-columns: clamp(96px, 26vw, 150px) minmax(0, 1fr);
    justify-items: start;
    gap: 30px clamp(14px, 4vw, 24px);
    text-align: left;
  }

  .product-window-page .block-hero {
    padding-top: var(--section-padding-y);
    padding-bottom: 0;
  }

  .hero-product-logo {
    justify-self: start;
    width: clamp(96px, 26vw, 150px);
    padding: clamp(12px, 3vw, 18px);
  }

  .hero-product-logo img {
    max-height: clamp(52px, 14vw, 76px);
  }

  .hero-product-title,
  .hero-product-copy {
    align-items: flex-start;
    min-height: 0;
  }

  .product-window-page .block-hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-product-copy {
    grid-column: 1 / -1;
  }

  .product-series-tabs,
  .window-options__tabs {
    display: flex;
    grid-template-columns: none;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }

  .product-series-tab {
    flex: 1 0 0;
    min-width: 0;
    padding-inline: clamp(24px, 7vw, 44px);
    white-space: nowrap;
  }

  .product-series-tabs:has(> :nth-child(4)) .product-series-tab {
    flex: 0 0 calc((100vw - 42px) / 2.35);
  }

  .block-hero--featured {
    grid-template-columns: minmax(0, 1fr);
  }

  .block-hero--featured .container {
    min-width: 0;
    max-width: 100%;
  }

  .window-options__tabs button {
    flex: 1 0 0;
    width: auto;
    min-width: 0;
    padding-inline: clamp(18px, 5vw, 32px);
  }

  .window-options__tabs:has(> :nth-child(4)) button {
    flex: 0 0 calc((100vw - 42px) / 2.35);
  }

  .window-options__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
    gap: 32px 22px;
    width: 100%;
  }

  .window-option-card img,
  .window-option-card__swatch {
    aspect-ratio: 1;
    height: auto;
    padding: clamp(18px, 5vw, 32px);
  }

  .product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    width: 100%;
  }

  .product-gallery a,
  .product-gallery img {
    width: 100%;
  }

  .product-gallery img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .product-feature-card {
    flex-basis: calc((100% - 18px) / 2);
    grid-template-rows: minmax(0, 150px) auto;
    aspect-ratio: auto;
    min-height: 0;
    overflow: visible;
  }

  .product-feature-card p {
    padding: 18px 16px 20px;
    font-size: 16px;
    line-height: 1.5;
    overflow: visible;
  }

  .product-feature-carousel__controls {
    top: auto;
    right: var(--product-content-inset);
    bottom: 28px;
    left: var(--product-content-inset);
    transform: none;
  }

  .product-feature-carousel__controls button,
  .story-media-carousel__arrow,
  .bottom-reviews-carousel__controls button,
  .google-reviews-displayer__controls button {
    width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .bottom-reviews-carousel__controls {
    pointer-events: auto;
    position: static;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    transform: none;
  }

  .bottom-testimonials-grid {
    flex-wrap: nowrap;
    transition: transform 320ms ease;
    will-change: transform;
  }

  .testimonial-more,
  .testimonial-source-link {
    align-items: center;
    min-height: 40px;
  }

  .lang-switch {
    display: none;
  }

  .footer-links a,
  .footer-contact a,
  .footer-bottom a,
  .product-info-grid a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .footer-links a {
    min-height: 28px;
  }

  .compare-pair,
  .block-image-text .image-text-grid {
    grid-template-columns: 1fr;
  }

  .block-image-text .image-text-grid {
    direction: ltr;
  }

  .bottom-testimonials-grid .testimonial-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .why-contact .lead-form {
    justify-self: center;
    max-width: 640px;
    min-height: 1240px;
    overflow: visible;
  }

  .why-contact .lead-form iframe {
    min-height: 1180px;
    height: 1180px !important;
  }

  .value-props {
    padding: 64px 0;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compare-grid,
  .gallery-grid,
  .rating-grid,
  .style-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-reviews-displayer__track {
    grid-auto-columns: minmax(280px, calc((100% - 16px) / 2));
  }
}

/* Engine compatibility and Window Guardians homepage data bindings */
.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--orange);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand,
.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.site-logo img {
  width: 196px;
  height: auto;
}

.nav-links a[aria-current="page"] {
  color: var(--orange);
}

.lang-switch {
  position: relative;
}

.lang-switch-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  padding: 0 12px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.lang-switch-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 40;
  display: none;
  min-width: 160px;
  padding: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.lang-switch.open .lang-switch-menu {
  display: grid;
}

.lang-switch-option {
  padding: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.lang-switch-option.active,
.lang-switch-option:hover {
  color: var(--orange);
}

.wg-bg-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.badge:not(.logo-carousel__slide) img {
  max-width: 124px;
  max-height: 96px;
}

.compare-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--wg-image-gap);
}

.compare-grid {
  grid-template-columns: 1fr;
  max-width: none;
}

.value-props {
  padding: 74px 0 86px;
  background:
    linear-gradient(90deg, rgba(5, 17, 46, 0.96), rgba(5, 17, 46, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 104px),
    url("/assets/img/home/wg_homepage_banner.webp") center / cover no-repeat;
}

.value-props::after {
  display: none;
}

.value-props__inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.value-props__heading {
  margin-bottom: 34px;
}

.value-props__heading h2 {
  color: #fff;
}

.value-grid {
  display: grid;
  gap: 44px;
  max-width: 760px;
}

.value-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 36px;
}

.value-card img {
  justify-self: center;
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.value-card h3 {
  margin-bottom: 10px;
  color: var(--orange);
  font-family: "Architects Daughter", cursive;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: capitalize;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  line-height: 1.6;
}

.lead-form {
  min-height: 620px;
  padding: 0;
  overflow: hidden;
}

.lead-form iframe {
  display: block;
  width: 100%;
  min-height: 620px;
}

.ghl-reviews-widget {
  min-height: 190px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(74, 188, 255, 0.12), rgba(5, 17, 46, 0.04)),
    #fff;
}

.map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.service-proof {
  min-width: 0;
  padding: clamp(54px, 6vw, 92px) clamp(20px, 5vw, 78px);
  border: 0;
  text-align: center;
}

.service-proof > .eyebrow,
.service-proof > h2,
.service-proof > h3,
.service-proof > .stars {
  text-align: center;
}

.service-proof > h2 {
  max-width: 620px;
  margin: 0 auto 10px;
}

.service-proof > h3 {
  max-width: 620px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.bottom-reviews-carousel {
  position: relative;
  margin-top: 44px;
}

.bottom-reviews-carousel__viewport {
  overflow-x: hidden;
  overflow-y: visible;
}

.bottom-reviews-carousel__controls {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -20px;
  right: -20px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.bottom-reviews-carousel__controls button {
  --carousel-control-size: var(--control-size-sm);
  --carousel-control-icon-size: 22px;
  pointer-events: auto;
  border: 1px solid rgba(5, 17, 46, 0.12);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-control);
}

.page-content {
  min-height: 70vh;
}

body:not(.home-hero-page) .page-content {
  padding-top: var(--header-height);
}

body.has-featured-hero .site-header:not(.is-scrolled) {
  position: fixed;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.has-featured-hero .site-header.is-scrolled {
  background: #05112e;
}

body.has-featured-hero .page-content {
  padding-top: 0;
}

.block,
.legal-content,
.error-page {
  width: 100%;
  margin: 0;
  padding: var(--section-padding-y) 0;
}

.block .container,
.legal-content .container,
.error-page .container {
  width: min(1320px, calc(100% - var(--section-inline-padding)));
}

.block .lead,
.page-lead,
.hero-lead,
.section-lead,
.contact-brief-lead {
  max-width: 65ch;
  color: var(--muted);
  font-size: 17px;
}

.block-hero--split .container {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.block-hero--media-left .hero-media {
  order: 0;
}

.block-hero--media-left .hero-copy {
  order: 1;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  width: min(100%, 420px);
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.hero-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero-copy {
  min-width: 0;
}

.block-hero--split .hero-copy {
  align-self: center;
  color: var(--text);
}

.block-hero--split .hero-copy h1 {
  color: var(--navy);
}

.block-hero--split .hero-copy p:not(.eyebrow) {
  width: 100%;
  max-width: none;
  color: var(--muted);
}

.block-hero--split .hero-copy .actions {
  justify-content: flex-start;
}

.actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.card,
.column,
.timeline-item,
.faq-item,
.contact-quick-item,
.contact-brief,
.contact-form-wrap,
.error-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: #fff;
}

.columns,
.grid,
.timeline,
.faq-list,
.contact-shell,
.contact-main,
.contact-topic-list {
  display: grid;
  gap: 20px;
}

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

.contact-brief,
.contact-form-wrap {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-form-section {
  padding: 50px 0;
}

.contact-form-section .container {
  width: min(1140px, calc(100% - var(--section-inline-padding)));
}

body[data-page-slug="contact"] .contact-main {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: start;
}

body[data-page-slug="contact"] .contact-brief {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page-slug="contact"] .contact-form-wrap {
  border: 0;
  border-radius: 0;
  padding: clamp(24px, 4vw, 50px);
  background: #fff;
  box-shadow: 0 16px 45px rgba(5, 17, 46, 0.08);
}

.contact-brief__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
}

.contact-brief__eyebrow {
  margin: 0;
  color: var(--navy);
  font-family: inherit;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-promise {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  text-align: center;
  background: transparent;
}

.contact-promise img {
  width: min(86px, 100%);
  height: 62px;
  object-fit: contain;
}

.contact-promise strong {
  color: var(--orange);
  font-family: "Architects Daughter", cursive;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.12;
}

.contact-topic-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-topic-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-topic-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 0;
  color: #000;
  background: transparent;
}

.contact-topic-list__icon svg {
  width: 16px;
  height: 16px;
}

.contact-topic-list a {
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
}

.contact-form-wrap {
  min-height: 979px;
}

.contact-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 979px;
  overflow: hidden;
}

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

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: visible;
  box-shadow: var(--shadow-card);
}

.card__media {
  width: calc(100% + 40px);
  max-width: none;
  margin: -20px -20px 20px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.card__image {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card__image--portrait {
  height: 390px;
  object-fit: contain;
  object-position: center bottom;
  background: #f7f8fb;
}

.card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
}

.card__body > * {
  margin-top: 0;
  margin-bottom: 0;
}

.card-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.card .btn {
  align-self: center;
  margin-top: 20px;
}

.feature-card-carousel {
  --feature-card-carousel-gap: 22px;
  position: relative;
  margin-top: 30px;
}

.feature-card-carousel__viewport {
  overflow: hidden;
  padding: 18px 4px 30px;
  cursor: grab;
}

.feature-card-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.feature-card-carousel__track {
  display: flex;
  gap: var(--feature-card-carousel-gap);
  transition: transform 320ms ease;
  will-change: transform;
}

.feature-card-carousel .card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 0;
  padding: 0;
  box-shadow: var(--shadow-card);
}

.feature-card-carousel .card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding-block: 0;
  background: #f7f8fb;
}

.feature-card-carousel .card__image--portrait {
  height: 350px;
  background: transparent;
}

.feature-card-carousel .card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--feature-card-carousel-gap);
  padding: var(--feature-card-carousel-gap);
}

.feature-card-carousel .card__body > * {
  margin-top: 0;
  margin-bottom: 0;
}

.feature-card-carousel .card ul {
  margin-bottom: 0;
}

.feature-card-carousel .card .btn {
  margin-top: auto;
}

.feature-card-carousel__controls {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 2px;
}

.feature-card-carousel__controls button {
  display: grid;
  place-items: center;
  width: var(--control-size-md);
  height: var(--control-size-md);
  border: 1px solid rgba(5, 17, 46, 0.12);
  border-radius: var(--radius-round);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-control);
  cursor: pointer;
}

.feature-card-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.feature-card-carousel__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-round);
  background: rgba(5, 17, 46, 0.18);
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
}

.feature-card-carousel__dots button[aria-current="true"] {
  background: var(--orange);
}

.tabbed-carousel {
  display: grid;
  gap: 34px;
  max-width: 100%;
  min-width: 0;
  padding-block: var(--section-padding-y);
  overflow-x: clip;
}

.tabbed-carousel__tabs {
  display: flex;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  background: #eee;
}

.tabbed-carousel__tabs button {
  flex: 1 1 0;
  min-width: 180px;
  min-height: 64px;
  border: 0;
  color: #667086;
  background: transparent;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.tabbed-carousel__tabs button.is-active,
.tabbed-carousel__tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--orange);
}

.tabbed-carousel__panel {
  display: grid;
  gap: 28px;
  max-width: 100%;
  min-width: 0;
}

.tabbed-carousel__panel[hidden] {
  display: none;
}

.tabbed-carousel__copy {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.tabbed-carousel__copy h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.72rem, 2.65vw, 2.35rem);
  text-transform: uppercase;
}

.tabbed-carousel__copy p {
  margin: 0 0 12px;
  color: var(--muted);
}

.tabbed-carousel__carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-inline: calc(var(--control-size-md) + 14px);
}

.tabbed-carousel__viewport {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  cursor: grab;
}

.tabbed-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.tabbed-carousel__track {
  display: flex;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  transition: transform 320ms ease;
  will-change: transform;
}

.tabbed-carousel__slide {
  flex: 0 0 calc((100% - 72px) / 5);
  min-width: 0;
  margin: 0;
  padding: clamp(30px, 3vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.tabbed-carousel__slide img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.tabbed-carousel > .btn {
  justify-self: center;
}

.tabbed-carousel__controls {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.tabbed-carousel__controls button {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--control-size-md);
  height: var(--control-size-md);
  border: 1px solid rgba(5, 17, 46, 0.12);
  border-radius: var(--radius-round);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-control);
  cursor: pointer;
  pointer-events: auto;
}

.tabbed-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 100%;
  margin-top: 10px;
}

.tabbed-carousel__dots button {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.tabbed-carousel__dots button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: #d7d7d7;
  transform: translate(-50%, -50%);
}

.tabbed-carousel__dots button[aria-current="true"]::after {
  background: var(--ink);
}

.tagged-post-grid {
  padding-block: var(--section-padding-y);
}

.tagged-post-grid__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tagged-post-grid--grid .tagged-post-grid__items .card {
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.tagged-post-grid--grid .tagged-post-grid__items .card__media {
  width: 100%;
  margin: 0;
  border-radius: 5px 5px 0 0;
}

.tagged-post-grid--grid .tagged-post-grid__items .card__body {
  padding: 30px 32px 28px;
}

.tagged-post-grid--grid .tagged-post-grid__items .card-title {
  font-weight: 600;
}

.tagged-post-grid--grid .tagged-post-grid__items .card .btn {
  align-self: center;
  margin-top: auto;
}

.tagged-post-grid__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.tagged-post-grid__actions .btn.centered {
  margin: 0;
}

.tagged-post-grid__items .card__image {
  height: 100%;
  object-fit: cover;
  background: #f7f8fb;
}

.tagged-post-grid__items .card__media {
  aspect-ratio: 16 / 9;
  background: #f7f8fb;
}

.tagged-post-grid--list {
  width: 100%;
  padding-block: 0;
}

.tagged-post-grid--list .section-heading {
  align-items: flex-start;
  margin-bottom: 18px;
  text-align: left;
}

.tagged-post-grid--list .section-heading h2 {
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  line-height: 1.12;
}

.tagged-post-grid--list .tagged-post-grid__items {
  grid-template-columns: 1fr;
  gap: 18px;
}

.tagged-post-grid--list .card {
  padding: 16px;
}

.tagged-post-grid--list .card__media {
  width: calc(100% + 32px);
  margin: -16px -16px 0;
}

.tagged-post-grid--list .card__body {
  gap: 12px;
}

.blog-sidebar .tagged-post-grid--list .card__body {
  align-items: center;
  padding: 18px 8px 4px;
  text-align: center;
}

.blog-sidebar .tagged-post-grid--list .card-title {
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  -webkit-line-clamp: 4;
}

.tagged-post-grid__empty {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
}

.blog-layout {
  display: grid;
  grid-template-areas: "main";
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
}

.blog-layout--with-sidebar {
  grid-template-areas: "main sidebar";
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
}

.blog-main {
  display: grid;
  grid-area: main;
  gap: var(--section-heading-gap);
  min-width: 0;
}

.blog-sidebar {
  grid-area: sidebar;
  min-width: 0;
}

.blog-sidebar__inner {
  display: grid;
  gap: 24px;
}

.blog-sidebar-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

@media (min-width: 901px) and (min-height: 720px) {
  .blog-sidebar__inner {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }
}

.blog-post-page .block-hero {
  padding-block: calc(var(--section-padding-y) + 24px) var(--section-padding-y);
}

.blog-post-page {
  --blog-content-inset: clamp(18px, 2vw, 28px);
  --blog-featured-spacing: clamp(52px, 6vw, 76px);
}

.blog-featured {
  position: relative;
  width: min(1320px, calc(100% - var(--section-inline-padding)));
  margin: 0 auto;
  padding-block: var(--blog-featured-spacing);
}

.blog-featured::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.blog-featured .block-hero {
  box-sizing: border-box;
  width: 100%;
  padding: 0 var(--blog-content-inset);
}

.blog-featured .block-hero .container {
  width: 100%;
}

.blog-featured .block-hero--split .container {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.blog-featured .hero-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #f7f8fb;
  box-shadow: var(--shadow-card);
}

.blog-featured .hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.blog-featured .hero-copy h1 {
  margin-bottom: 0;
}

.blog-featured .breadcrumb {
  margin-top: 24px;
}

@media (max-width: 640px) {
  .blog-featured .hero-media {
    display: none;
  }

  .blog-featured .block-hero--split .container {
    grid-template-columns: 1fr;
  }
}

.blog-post-page .blog-layout {
  box-sizing: border-box;
  padding-top: var(--blog-featured-spacing);
  padding-inline: var(--blog-content-inset);
}

.blog-main .block,
.blog-main .section {
  width: 100%;
  margin: 0;
  padding-block: 0;
}

.blog-main .block .container {
  width: 100%;
}

.blog-main .block-hero--split .container {
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-main .block-hero--media-left .hero-copy {
  order: 0;
}

.blog-main .block-hero--media-left .hero-media {
  order: 1;
}

.blog-main .hero-media {
  width: 100%;
}

.blog-main .hero-media img {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f7f8fb;
}

.blog-article-section {
  padding-block: var(--section-padding-y);
}

.blog-article {
  max-width: 920px;
  margin: 0;
  padding-left: 0;
}

.blog-article p {
  color: var(--muted);
  line-height: 1.75;
}

.blog-article p + p {
  margin-top: 18px;
}

.blog-article__section {
  margin-top: 36px;
}

.blog-article__figure {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 44px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #f7f8fb;
  box-shadow: var(--shadow-card);
}

.blog-article__figure img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.blog-article h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.3vw, 2.4rem);
  line-height: 1.16;
  text-transform: uppercase;
}

.image-text-media--embed {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  background: var(--ink);
}

.image-text-media--embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.card__media--embed {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px 8px 0 0;
  background: var(--ink);
}

.card__media--embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.block-hero .breadcrumb {
  width: 100%;
  margin-top: clamp(18px, 2.4vw, 32px);
}

.block-hero .breadcrumb ol {
  justify-content: center;
}

.block-hero .breadcrumb li,
.block-hero .breadcrumb a {
  color: #fff;
}

@media (max-width: 900px) {
  .breadcrumb ol {
    justify-content: center;
  }
}

.breadcrumb li {
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #444;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item[open] summary {
  color: var(--orange);
}

.block-faq {
  width: min(980px, calc(100% - var(--section-inline-padding)));
  margin-right: auto;
  margin-left: auto;
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.block-faq .container {
  width: 100%;
  max-width: 100%;
}

.block-faq h2 {
  margin-bottom: var(--section-heading-gap);
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.block-faq h2::before {
  content: "FAQ's";
  display: block;
  margin-bottom: var(--section-eyebrow-gap);
  color: #111;
  font-family: "Architects Daughter", cursive;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.block-faq .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.block-faq .faq-column {
  display: flex;
  flex-direction: column;
}

.block-faq .faq-item {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.block-faq .faq-item[open] {
  border-bottom-color: transparent;
}

.block-faq .faq-item summary {
  height: 110px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  box-sizing: border-box;
  color: #333;
  font-size: 17px;
  line-height: 1.45;
  text-transform: capitalize;
  transition: color 180ms ease;
}

.block-faq .faq-item[open] summary {
  height: 110px;
  margin-bottom: 0;
}

.block-faq .faq-item summary:hover,
.block-faq .faq-item summary:hover::after,
.block-faq .faq-item[open] summary,
.block-faq .faq-item[open] summary::after {
  color: var(--orange);
}

.block-faq .faq-item p {
  max-height: 0;
  margin: 0;
  padding: 0 16px;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  color: #444;
  font-size: 17px;
  line-height: 1.7;
  transition: max-height 260ms ease, padding 260ms ease, opacity 180ms ease;
}

.block-faq .faq-item[open] p {
  max-height: calc(var(--faq-content-height, 480px) + 120px);
  padding: 22px 16px 56px;
  opacity: 1;
}

.block-faq .faq-item[open].is-closing p {
  max-height: 0;
  padding: 0 16px;
  opacity: 0;
}

@media (max-width: 640px) {
  :root {
    --section-inline-padding: 28px;
    --section-padding-y: 56px;
  }

  .service-slide {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: calc(clamp(20px, 4vw, 32px) + 132px);
  }

  .service-slide__button {
    align-self: flex-start;
    margin-top: 16px;
  }

  .service-slider__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    min-height: 0;
    padding: 16px 20px;
  }

  .service-slider__controls {
    top: 18px;
    right: 18px;
  }

  .service-slider__nav::before,
  .service-slider__nav::after {
    display: none;
  }

  .service-slider__nav button {
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 7px 4px;
    text-align: center;
    white-space: normal;
  }

  .service-slider__nav button[aria-current="true"]::before,
  .service-slider__nav button[aria-current="true"]::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    pointer-events: none;
  }

  .service-slider__nav button[aria-current="true"]::before {
    top: 0;
  }

  .service-slider__nav button[aria-current="true"]::after {
    bottom: 0;
  }

  .columns,
  .grid,
  .contact-main {
    grid-template-columns: 1fr;
  }

  body[data-page-slug="contact"] .contact-main {
    grid-template-columns: 1fr;
  }

  .block-faq .faq-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .block-faq .faq-item summary,
  .block-faq .faq-item[open] summary {
    height: auto;
    min-height: 88px;
  }
}

@media (max-width: 480px) {
  :root {
    --home-logo-carousel-height: 180px;
    --section-inline-padding: 24px;
    --section-padding-y: 50px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero {
    min-height: calc(100svh - var(--home-logo-carousel-height));
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 50px;
  }

  .hero-inner {
    min-height: calc(100svh - var(--home-logo-carousel-height) - var(--header-height) - 100px);
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .compare-grid,
  .gallery-grid,
  .rating-grid,
  .style-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    align-items: stretch;
    justify-content: center;
  }

  .hero-actions .btn,
  .block-hero .actions .btn {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    padding-right: 20px;
    padding-left: 20px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .hero-actions .text-link {
    display: inline-flex;
    align-items: center;
    justify-self: center;
    min-height: 44px;
    text-align: center;
  }

  .logo-carousel {
    --logo-gap: 26px;
    min-height: 180px;
    margin: 0 auto;
  }

  .logo-carousel__slide {
    flex-basis: 122px;
    min-height: 84px;
    padding: 10px 14px;
  }

  .logo-carousel__slide img {
    max-width: 96px;
    max-height: 60px;
  }

  .google-reviews-displayer {
    padding: 16px;
  }

  .google-reviews-displayer__bar,
  .google-reviews-displayer__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .google-reviews-displayer__track {
    grid-auto-columns: minmax(250px, 88%);
  }

  .google-reviews-displayer__score strong {
    font-size: 30px;
  }

  .before-after-slider,
  .story-media,
  .story-media-carousel__slide,
  .map-placeholder {
    min-height: 260px;
  }

  .feature-panel {
    min-height: 300px;
    padding: 24px;
  }

  .rating-grid,
  .style-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .block-faq .faq-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .process-step span {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .process-steps__media {
    min-height: 260px;
  }

  .product-feature-card {
    flex-basis: 100%;
    grid-template-rows: minmax(0, 170px) auto;
  }

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

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

  .brand-card {
    padding: 22px;
  }

  .brand-resources__grid {
    grid-template-columns: 1fr;
  }

  .tabbed-carousel__slide {
    flex-basis: 82%;
  }

  .tagged-post-grid__items {
    grid-template-columns: 1fr;
  }

  .bottom-testimonials-grid .testimonial-card {
    flex-basis: 100%;
  }

  .bottom-testimonials-grid {
    gap: 18px;
  }

  .value-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 20px;
  }

  .value-card img {
    width: 76px;
    height: 76px;
  }

  .value-card h3 {
    font-size: 23px;
  }

  .why-value-card {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 10px;
  }

  .why-value-card img {
    width: 110px;
    height: 110px;
  }

  .why-value-card h3 {
    font-size: 30px;
  }

  .lead-form,
  .lead-form iframe {
    min-height: 700px;
  }

  .why-contact .lead-form {
    min-height: 1420px;
    padding-bottom: 28px;
    overflow: visible;
  }

  .why-contact .lead-form iframe {
    min-height: 1360px;
    height: 1360px !important;
  }
}

@media (max-width: 360px) {
  :root {
    --section-inline-padding: 24px;
    --section-padding-y: 44px;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 2.35rem);
  }

  .btn,
  .service-slide__button,
  .nav-item > a,
  .nav-dropdown-toggle {
    font-size: 14px;
  }

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

  .window-option-card img,
  .window-option-card__swatch {
    padding: 18px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 32px;
  }

  .hero-inner {
    min-height: 0;
    align-items: start;
  }

  .chatbot-card--inline {
    height: clamp(300px, 78svh, 380px);
  }

  .block.block-hero--featured,
  .product-window-page .block-hero.block-hero--featured {
    min-height: auto;
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 36px;
  }

  .service-slide {
    min-height: 440px;
  }
}

body.legal-page .legal-content {
  padding-top: calc(var(--header-height) + var(--section-padding-y));
  padding-bottom: var(--section-padding-y);
}

body.legal-page .legal-content .container {
  width: min(1120px, calc(100% - var(--section-inline-padding)));
}

.legal-article {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  text-align: left;
}

.legal-article > h1,
.legal-article > h1 + p {
  text-align: center;
}

.legal-article > h1 {
  margin-bottom: 18px;
}

.legal-article > h1 + p {
  margin-bottom: var(--section-heading-gap);
}

.legal-article p,
.legal-article li {
  color: #313a48;
}

.block-image-text .image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.block-image-text--left .image-text-grid {
  direction: rtl;
}

.block-image-text--left .image-text-grid > * {
  direction: ltr;
}

.block-image-text .image-text-list {
  margin: 18px 0;
  padding-left: 20px;
}

.block-image-text .image-text-list li {
  margin-bottom: 8px;
}

.block-image-text .image-text-media img {
  width: 100%;
  height: auto;
  border-radius: var(--wg-image-radius);
}

.block-image-text .image-text-media--carousel {
  position: relative;
}

.image-text-media__viewport {
  position: relative;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.image-text-media__viewport.is-dragging {
  cursor: grabbing;
}

.image-text-media__track {
  display: flex;
  gap: var(--wg-image-gap);
  transition: transform 320ms ease;
  will-change: transform;
}

.image-text-media__slide {
  flex: 0 0 calc((100% - (var(--wg-image-gap) * 2)) / 3);
  min-width: 0;
  margin: 0;
}

.image-text-media__slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.image-text-media__controls {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.image-text-media__controls button {
  display: grid;
  place-items: center;
  width: var(--control-size-md);
  height: var(--control-size-md);
  border: 1px solid rgba(5, 17, 46, 0.12);
  border-radius: var(--radius-round);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-control);
  font-size: 0;
  line-height: 1;
  pointer-events: auto;
  cursor: pointer;
}

.image-text-media__controls button::before {
  content: "";
  width: var(--control-icon-size);
  height: var(--control-icon-size);
  background: currentColor;
  mask: url("/assets/img/global/chevron-right.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/img/global/chevron-right.svg") center / contain no-repeat;
}

.image-text-media__controls [data-carousel-prev]::before {
  mask-image: url("/assets/img/global/chevron-left.svg");
  -webkit-mask-image: url("/assets/img/global/chevron-left.svg");
}

.image-text-media__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.image-text-media__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-round);
  background: rgba(5, 17, 46, 0.18);
  cursor: pointer;
}

.image-text-media__dots button[aria-current="true"] {
  background: var(--ink);
}

.card__title:not(.card-title) {
  margin: 0 0 12px;
}

.card__body .card__title:not(.card-title) {
  margin-bottom: 12px;
}

.block-feature-grid--buyer-steps .grid {
  gap: 18px;
}

.block-feature-grid--buyer-steps .card {
  align-items: center;
  padding: 16px;
  text-align: center;
}

.block-feature-grid--buyer-steps .card__media {
  width: calc(100% + 32px);
  margin: -16px -16px 16px;
}

.block-feature-grid--buyer-steps .card__image {
  height: 170px;
  object-fit: contain;
  background: #f7f8fb;
}

.block-feature-grid--buyer-steps .card__body {
  gap: 10px;
  align-items: center;
  text-align: center;
}

.block-feature-grid--buyer-steps .card__title {
  width: 100%;
  margin: 0;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.14;
  text-align: center;
}

.block-feature-grid--buyer-steps .card p {
  width: 100%;
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.promo-card-grid > .container > h2,
.promo-card-grid > .container > .lead {
  max-width: var(--section-heading-width);
}

.promo-card-grid__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--wg-image-gap);
  margin-top: 32px;
}

.promo-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.promo-card__media {
  position: relative;
  overflow: hidden;
  background: #f7f8fb;
}

.promo-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
}

.promo-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.promo-card__title {
  margin: 0;
}

.promo-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.promo-card__price del {
  color: var(--muted);
}

.promo-card__price strong {
  color: var(--orange);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.promo-card__body > p:not(.promo-card__price) {
  margin: 0;
}

.promo-card__code {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px dashed rgba(255, 74, 18, 0.55);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(255, 74, 18, 0.08);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.promo-card .btn {
  margin-top: auto;
}

body[data-page-slug="services"] .block-image-text .image-text-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

body[data-page-slug="services"] .block-image-text--left .image-text-grid {
  direction: ltr;
}

body[data-page-slug="services"] .block-image-text .image-text-content,
body[data-page-slug="services"] .block-image-text .image-text-media {
  width: 100%;
}

body[data-page-slug="services"] .block-image-text .image-text-content > p,
body[data-page-slug="services"] .block-image-text .image-text-list {
  max-width: none;
}

body[data-page-slug="services"] .promo-card {
  text-align: center;
}

body[data-page-slug="services"] .promo-card__body {
  align-items: center;
  gap: 10px;
}

body[data-page-slug="services"] .promo-card__title {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
}

body[data-page-slug="services"] .promo-card__price {
  justify-content: center;
}

body[data-page-slug="services"] .promo-card__price strong {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
}

body[data-page-slug="services"] .promo-card__body > p:not(.promo-card__price) {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

body[data-page-slug="services"] .promo-card__code {
  align-self: center;
  font-size: 13px;
  font-weight: 700;
}

body[data-page-slug="services"] .block-feature-grid--buyer-steps .card__media,
body[data-page-slug="services"] .block-feature-grid--buyer-steps .card__image {
  background: #fff;
}

body[data-page-slug="services"] .block-cta--upgrade-your-windows {
  padding: 54px 0;
  color: #fff;
  background: #01090b;
}

body[data-page-slug="services"] .block-cta--upgrade-your-windows .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 6vw, 96px);
}

body[data-page-slug="services"] .block-cta--upgrade-your-windows h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.1;
}

body[data-page-slug="services"] .block-cta--upgrade-your-windows .btn {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 48px rgba(255, 74, 18, 0.28);
}

body[data-page-slug="news"] .block-cta--news-articles,
body[data-page-slug="news"] .block-cta--subscribe-to-newsletter {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-position: center;
  background-size: cover;
}

body[data-page-slug="news"] .block-cta--news-articles {
  min-height: 45svh;
  padding: calc(var(--header-height) + var(--section-padding-y)) 0 var(--section-padding-y);
  background-image: linear-gradient(rgba(5, 17, 46, 0.8), rgba(5, 17, 46, 0.8)), url("/assets/img/news/news-articles-hero.jpg");
}

body[data-page-slug="news"] .block-cta--subscribe-to-newsletter {
  background-image: linear-gradient(rgba(5, 17, 46, 0.95), rgba(5, 17, 46, 0.95)), url("/assets/img/news/newsletter-background.jpg");
}

body[data-page-slug="news"] .block-cta--news-articles .container,
body[data-page-slug="news"] .block-cta--subscribe-to-newsletter .container {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

body[data-page-slug="news"] .block-cta--news-articles h2,
body[data-page-slug="news"] .block-cta--subscribe-to-newsletter h2,
body[data-page-slug="news"] .block-cta--news-articles p,
body[data-page-slug="news"] .block-cta--subscribe-to-newsletter p {
  color: #fff;
}

body[data-page-slug="news"] .block-cta--news-articles .container > p {
  max-width: 700px;
}

body[data-page-slug="news"] .block-cta--subscribe-to-newsletter .btn {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
}

.block-stats .stats-grid,
.testimonials-grid,
.block-before-after .before-after-grid {
  display: grid;
  gap: var(--wg-image-gap);
  margin-top: 28px;
}

.block-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--wg-image-gap);
  row-gap: var(--wg-image-gap);
  margin-top: 28px;
}

.block-gallery .gallery-grid > * {
  aspect-ratio: 16 / 9;
}

body[data-page-slug="sliding-glass-doors"] .block-gallery .gallery-grid {
  align-items: start;
}

body[data-page-slug="sliding-glass-doors"] .block-gallery .gallery-grid > * {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.block-stats .stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  text-align: center;
}

.block-stats .stat-value {
  display: block;
  color: var(--orange);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
}

.block-stats .stat-label,
.block-stats .stat-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 270px;
  margin: 0;
  padding: 22px 22px 24px;
  border: 1px solid rgba(5, 17, 46, 0.06);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-align: left;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--orange);
}

.testimonial-card.is-expanded {
  height: auto;
  min-height: 270px;
  overflow: visible;
}

.testimonial-card__head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.testimonial-avatar,
.testimonial-platform {
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 500;
  line-height: 1;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  color: #fff;
  background: #1686d9;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-platform {
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  color: #4285f4;
  background: transparent;
  font-size: 16px;
}

.testimonial-avatar img,
.testimonial-platform img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-person {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.testimonial-person strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.testimonial-rating {
  color: #ffb000;
  font-size: 17px;
  letter-spacing: 0;
}

.testimonial-text {
  display: -webkit-box;
  min-height: calc(1.42em * 4);
  margin: 0;
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.testimonial-card.is-expanded .testimonial-text {
  display: block;
  min-height: 0;
  overflow: visible;
}

.testimonial-more {
  display: inline-flex;
  align-self: flex-start;
  border: 0;
  padding: 0;
  color: #6b7280;
  background: transparent;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  cursor: pointer;
}

.testimonial-more.is-inactive {
  pointer-events: auto;
}

.testimonial-more[hidden] {
  display: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.testimonial-source-link {
  display: inline-flex;
  align-self: center;
  margin-left: auto;
  color: var(--orange);
  font-size: 13px;
  font-weight: 400;
}

.home-testimonials-grid {
  margin-bottom: 28px;
}

.reviews > .btn.centered {
  display: flex;
  width: max-content;
  margin: 30px auto 0;
  color: #fff;
  background: var(--orange);
}

.reviews > .btn.centered:hover {
  background: var(--orange-dark);
}

.home-testimonials-grid .testimonial-text,
.bottom-testimonials-grid .testimonial-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.home-testimonials-grid .testimonial-text {
  -webkit-line-clamp: 4;
}

.bottom-testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 0;
  transition: transform 320ms ease;
  will-change: transform;
}

.bottom-testimonials-grid .testimonial-card {
  flex: 1 1 clamp(280px, calc((100% - 32px) / 3), 100%);
  min-height: 270px;
}

.bottom-testimonials-grid .testimonial-card.is-expanded {
  height: auto;
  min-height: 270px;
  overflow: visible;
}

.bottom-testimonials-grid .testimonial-text {
  font-size: 15px;
  line-height: 1.42;
  -webkit-line-clamp: 4;
}

.testimonial-card.is-expanded .testimonial-text {
  display: block;
  min-height: 0;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.service-proof__reviews-link {
  display: flex;
  width: max-content;
  margin-top: 40px;
}

.block-before-after .before-after-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wg-image-gap);
}

.block-before-after .before-after-figure {
  margin: 0;
}

.block-before-after .before-after-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--wg-image-radius);
}

.block-gallery .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--wg-image-radius);
  object-fit: cover;
  background: transparent;
}

.block-before-after .before-after-figure figcaption,
.block-gallery .gallery-item figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.block-gallery .gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--wg-image-radius);
  background: #f7f8fb;
}

.block-gallery .gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body[data-page-slug="sliding-glass-doors"] .block-gallery .gallery-item {
  overflow: hidden;
  border-radius: var(--wg-image-radius);
  background: #f7f8fb;
}

body[data-page-slug="sliding-glass-doors"] .block-gallery .gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

body[data-page-slug="sliding-glass-doors"] .block-gallery .gallery-item img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  background: transparent;
}

@media (max-width: 900px) {
  .blog-layout--with-sidebar {
    grid-template-areas:
      "main"
      "sidebar";
    grid-template-columns: 1fr;
    gap: var(--section-heading-gap);
  }

  .blog-sidebar__inner {
    position: static;
  }

  .block-hero--split .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .block-hero--media-left .hero-media,
  .block-hero--media-left .hero-copy {
    order: initial;
  }

  .hero-media {
    height: auto;
  }

  .hero-media img {
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 420px;
  }

  .feature-card-carousel .card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .block-image-text .image-text-grid {
    grid-template-columns: 1fr;
  }

  .promo-card-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page-slug="services"] .image-text-media__slide {
    flex-basis: calc((100% - (var(--wg-image-gap) * 2)) / 3);
  }

  body[data-page-slug="services"] .block-cta--upgrade-your-windows .container {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .block-gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 18px;
  }

  .promo-card-grid__items {
    grid-template-columns: 1fr;
  }

  .image-text-media__slide {
    flex-basis: 100%;
  }

  body[data-page-slug="services"] .block-cta--upgrade-your-windows .container {
    flex-direction: column;
    text-align: center;
  }

  .tabbed-carousel__carousel {
    padding-inline: 0;
  }

  .tabbed-carousel__controls {
    position: static;
    justify-content: center;
    margin-top: 22px;
    pointer-events: auto;
    transform: none;
  }

  .feature-card-carousel .card {
    flex-basis: 82%;
  }

  .card__image--portrait {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .block-hero--split .container {
    gap: 24px;
  }

  .block-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    max-width: 100%;
    max-height: 340px;
  }

  .feature-card-carousel__viewport {
    padding-inline: 2px;
  }

  .feature-card-carousel .card {
    flex-basis: 88%;
  }
}

.bottom-reviews-carousel__viewport {
  overflow: hidden;
}

.bottom-testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  transform: translateX(0);
  transition: transform 320ms ease;
  will-change: transform;
}

.bottom-testimonials-grid .testimonial-card {
  flex: 0 0 calc((100% - 16px) / 2);
}

@media (max-width: 640px) {
  .bottom-testimonials-grid .testimonial-card {
    flex-basis: 100%;
  }
}

.admin-mode-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 1000;
  border-top: 1px solid var(--line);
  color: var(--navy);
  background: #fff;
  padding: 12px 16px;
}

.admin-mode-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.admin-mode-bar__link,
.admin-mode-bar__toggle-pill {
  color: var(--orange);
  font-weight: 700;
}

body.admin-mode-on {
  padding-bottom: 72px;
}

@media (min-width: 901px) {
  .nav-dropdown-menu .nav-item--nested {
    position: relative;
  }

  .nav-dropdown-menu .nav-item--nested > .nav-dropdown-menu {
    position: absolute;
    top: -10px;
    left: calc(100% + 10px);
    width: max-content;
    min-width: 210px;
    max-height: none;
    margin: 0;
    padding: 10px;
    overflow: visible;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    visibility: hidden;
  }

  .nav-dropdown-menu .nav-item--nested > .nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -14px;
    width: 14px;
    background: transparent;
  }

  .nav-dropdown-menu .nav-item--nested:hover > .nav-dropdown-menu,
  .nav-dropdown-menu .nav-item--nested:focus-within > .nav-dropdown-menu,
  .nav-dropdown-menu .nav-item--nested.is-open > .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .nav-dropdown-menu .nav-item--nested > .nav-dropdown-toggle::after {
    transform: rotate(-45deg);
  }
}

.reviews-carousel {
  position: relative;
}

.reviews-carousel__viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.reviews-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.reviews-carousel .testimonials-carousel-track {
  display: flex;
  gap: 18px;
  margin-bottom: 0;
  transition: transform 320ms ease;
  will-change: transform;
}

.reviews-carousel .testimonial-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
}

.reviews-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.reviews-carousel__controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow-card);
  font-size: 30px;
  cursor: pointer;
}

.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 4px;
}

.reviews-carousel__dots button {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
}

.reviews-carousel__dots button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfd3dc;
}

.reviews-carousel__dots button[aria-current="true"]::after {
  background: var(--navy);
}

body[data-page-slug="contact"] .contact-brief {
  gap: 28px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(5, 17, 46, 0.08);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 18px 48px rgba(5, 17, 46, 0.08);
}

body[data-page-slug="contact"] .contact-brief__image {
  border-radius: 4px;
}

body[data-page-slug="contact"] .contact-brief__eyebrow {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  text-align: center;
}

body[data-page-slug="contact"] .contact-promises {
  gap: 12px;
}

body[data-page-slug="contact"] .contact-promise {
  align-content: start;
  gap: 14px;
  min-height: 158px;
  padding: 20px 12px;
  border: 1px solid rgba(5, 17, 46, 0.07);
  border-radius: 6px;
  background: #fff;
}

body[data-page-slug="contact"] .contact-promise img {
  width: 78px;
  height: 68px;
}

body[data-page-slug="contact"] .contact-promise strong {
  font-size: clamp(17px, 1.4vw, 21px);
}

body[data-page-slug="contact"] .contact-brief-lead {
  margin: 0;
  padding-inline: 6px;
  color: var(--muted);
  line-height: 1.75;
}

body[data-page-slug="contact"] .contact-topic-list {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 17, 46, 0.08);
  border-radius: 6px;
  background: #fff;
}

body[data-page-slug="contact"] .contact-topic-list li {
  min-height: 58px;
  padding: 12px 16px;
}

body[data-page-slug="contact"] .contact-topic-list li + li {
  border-top: 1px solid rgba(5, 17, 46, 0.08);
}

body[data-page-slug="contact"] .contact-topic-list__icon {
  color: var(--orange);
}

@media (max-width: 900px) {
  .reviews-carousel .testimonial-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .reviews-carousel .testimonial-card {
    flex-basis: 100%;
  }

  body[data-page-slug="contact"] .contact-brief {
    padding: 22px;
  }

  body[data-page-slug="contact"] .contact-promises {
    grid-template-columns: 1fr;
  }

  body[data-page-slug="contact"] .contact-promise {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    min-height: 0;
    text-align: left;
  }
}

/* Why Us preserves the live page composition while using shared blocks. */
body[data-page-slug="why-us"] .block-image-text[aria-labelledby="world-class-amazing"],
body[data-page-slug="why-us"] .block-image-text[aria-labelledby="not-your-average-joe"] {
  padding-block: var(--section-padding-y);
}

body[data-page-slug="why-us"] .block-image-text[aria-labelledby="world-class-amazing"] .image-text-grid,
body[data-page-slug="why-us"] .block-image-text[aria-labelledby="not-your-average-joe"] .image-text-grid {
  gap: clamp(40px, 6vw, 88px);
}

body[data-page-slug="why-us"] .block-image-text[aria-labelledby="world-class-amazing"] .image-text-content,
body[data-page-slug="why-us"] .block-image-text[aria-labelledby="not-your-average-joe"] .image-text-content {
  max-width: 650px;
}

body[data-page-slug="why-us"] .block-image-text .image-text-content h2 {
  margin-bottom: 24px;
}

body[data-page-slug="why-us"] .block-image-text .image-text-content p + p {
  margin-top: 18px;
}

body[data-page-slug="why-us"] .block-image-text[aria-labelledby="world-class-amazing"] .image-text-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

body[data-page-slug="why-us"] .block-image-text[aria-labelledby="not-your-average-joe"] .image-text-media img {
  aspect-ratio: 615 / 381;
  object-fit: cover;
}

body[data-page-slug="why-us"] .block-image-text[aria-labelledby="meet-the-owner"] {
  padding-block: var(--section-padding-y);
  background-color: #030609;
  background-image: linear-gradient(rgba(3, 6, 9, 0.62), rgba(3, 6, 9, 0.62)), url("/assets/img/why-us/owner-section-pattern.png");
  background-position: center;
  background-size: cover;
}

body[data-page-slug="why-us"] .block-image-text[aria-labelledby="meet-the-owner"] .image-text-grid {
  grid-template-columns: 1fr;
  gap: 36px;
}

body[data-page-slug="why-us"] .block-image-text[aria-labelledby="meet-the-owner"] .image-text-content {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

body[data-page-slug="why-us"] .block-image-text[aria-labelledby="meet-the-owner"] h2,
body[data-page-slug="why-us"] .block-image-text[aria-labelledby="meet-the-owner"] p {
  color: #fff;
}

body[data-page-slug="why-us"] .block-image-text[aria-labelledby="meet-the-owner"] .image-text-media {
  width: min(960px, 100%);
  margin-inline: auto;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

body[data-page-slug="why-us"] .reviews {
  padding-bottom: 28px;
}

body[data-page-slug="why-us"] .logo-carousel {
  padding-block: 18px 54px;
}

body[data-page-slug="why-us"] .block-cta--upgrade-windows-today {
  padding-block: 30px;
  background: #030609;
}

body[data-page-slug="why-us"] .block-cta--upgrade-windows-today .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

body[data-page-slug="why-us"] .block-cta--upgrade-windows-today h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

/* Focused recommendation quiz, rendered through the shared page shell. */
.quiz-page-content {
  min-height: 100svh;
  background: var(--navy);
}

.recommendation-quiz {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: var(--section-padding-y) var(--section-inline-padding);
}

.recommendation-quiz [hidden] {
  display: none !important;
}

.recommendation-quiz__shell {
  width: min(660px, 100%);
}

.recommendation-quiz__progress {
  height: 8px;
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: rgba(255, 255, 255, 0.2);
}

.recommendation-quiz__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width 300ms ease;
}

.recommendation-quiz__card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 520px;
  padding: clamp(32px, 6vw, 54px);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: #f1f7fe;
  box-shadow: var(--shadow);
}

.recommendation-quiz__panel {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
  animation: quiz-panel-in 300ms ease both;
}

.recommendation-quiz__panel[data-quiz-start],
.recommendation-quiz__panel[data-quiz-result] {
  display: grid;
  grid-row: 1 / -1;
  align-content: center;
  justify-items: center;
}

.recommendation-quiz__panel h1,
.recommendation-quiz__panel h2 {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--navy);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.2;
}

.recommendation-quiz__panel p {
  max-width: 540px;
  margin: 0 auto 38px;
  color: #3d4658;
  line-height: 1.7;
}

.recommendation-quiz__primary {
  margin-inline: auto;
}

.recommendation-quiz__options {
  display: grid;
  gap: 15px;
  width: min(460px, 100%);
  margin-inline: auto;
}

.recommendation-quiz__option {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  color: #fff;
  text-align: left;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--orange);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.recommendation-quiz__option:hover,
.recommendation-quiz__option:focus-visible {
  background: var(--orange-dark);
}

.recommendation-quiz__option:active {
  transform: translateY(1px);
}

.recommendation-quiz__option.is-selected {
  background: var(--navy);
}

.recommendation-quiz__check {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: var(--radius-sm);
}

.recommendation-quiz__option.is-selected .recommendation-quiz__check::after {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.recommendation-quiz__navigation {
  display: flex;
  grid-column: 1;
  grid-row: 2;
  justify-content: center;
  gap: 18px;
  margin-top: 44px;
}

.recommendation-quiz__navigation button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  color: #fff;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--orange);
  cursor: pointer;
}

.recommendation-quiz__navigation button:disabled {
  background: #7b8391;
  cursor: not-allowed;
}

.recommendation-quiz__navigation button:not(:disabled):hover,
.recommendation-quiz__navigation button:not(:disabled):focus-visible {
  background: var(--orange-dark);
}

.recommendation-quiz__navigation button > span[aria-hidden="true"] {
  font-size: 1.65rem;
  line-height: 0.7;
}

.recommendation-quiz__result {
  font-size: 1.1rem;
}

.recommendation-quiz__result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@keyframes quiz-panel-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .recommendation-quiz {
    padding-inline: 18px;
  }

  .recommendation-quiz__card {
    min-height: 480px;
    padding: 30px 20px;
  }

  .recommendation-quiz__navigation {
    gap: 10px;
    margin-top: 34px;
  }

  .recommendation-quiz__navigation button {
    flex: 1 1 0;
    padding-inline: 12px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .recommendation-quiz {
    min-height: auto;
    padding-block: 30px;
  }

  .recommendation-quiz__card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  body[data-page-slug="why-us"] .block-image-text[aria-labelledby="world-class-amazing"] .image-text-grid,
  body[data-page-slug="why-us"] .block-image-text[aria-labelledby="not-your-average-joe"] .image-text-grid {
    gap: 30px;
  }

  body[data-page-slug="why-us"] .block-cta--upgrade-windows-today .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
