:root {
  --swf-ink: #101820;
  --swf-charcoal: #1a2a33;
  --swf-cream: #f2fbf9;
  --swf-paper: #ffffff;
  --swf-taupe: #cfe2e2;
  --swf-gold: #0f766e;
  --swf-brass: #2b8fb6;
  --swf-sage: #5d9489;
  --swf-teal: #0f766e;
  --swf-rose: #246b91;
  --swf-line: #d8e8ea;
  --swf-muted: #53656d;
  --swf-shadow: 0 1.25rem 3rem rgba(16, 24, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    repeating-linear-gradient(45deg, rgba(15, 118, 110, 0.026) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(135deg, rgba(36, 107, 145, 0.026) 0 1px, transparent 1px 30px),
    linear-gradient(135deg, #f1fbf9 0%, #eaf5ff 42%, #f6fbff 72%, #ecfaf5 100%);
  color: var(--swf-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

main {
  background: transparent;
}

.hybrid-builder-page {
  background: transparent;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #0d6f68;
}

a:hover {
  color: var(--swf-ink);
}

:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.65);
  outline-offset: 3px;
}

.skip-link {
  background: var(--swf-ink);
  color: #fff;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: absolute;
  top: -5rem;
  z-index: 1100;
}

.skip-link:focus {
  top: 1rem;
}

.font-heading,
h1,
h2,
h3,
h4,
.navbar-brand span {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--swf-ink);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.announcement-bar {
  background: linear-gradient(90deg, #080d12, #0f4f5a 48%, #0f766e);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01rem;
  padding: 0.55rem 0;
}

.site-navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow: 0 0.35rem 1rem rgba(16, 24, 32, 0.06);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(36, 107, 145, 0.18);
  box-shadow: 0 0.85rem 2rem rgba(16, 24, 32, 0.1);
}

.site-navbar .container {
  max-width: 1320px;
}

.navbar-brand img {
  height: 44px;
  flex: 0 0 auto;
  width: 44px;
}

.navbar-brand span {
  line-height: 1.1;
}

.nav-link {
  color: var(--swf-ink);
  font-weight: 650;
  position: relative;
}

.site-navbar .nav-link {
  padding-left: 0.55rem;
  padding-right: 0.55rem;
}

.site-navbar .btn {
  padding: 0.68rem 0.95rem;
  white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
  color: #0c6f69;
}

.site-navbar .nav-link::after {
  background: linear-gradient(90deg, var(--swf-teal), var(--swf-brass));
  border-radius: 999px;
  bottom: 0.25rem;
  content: "";
  height: 2px;
  left: 0.55rem;
  opacity: 0;
  position: absolute;
  right: 0.55rem;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-navbar .nav-link.active::after,
.site-navbar .nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-navbar .dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  box-shadow: 0 1rem 2.5rem rgba(16, 24, 32, 0.13);
  padding: 0.55rem;
}

.site-navbar .dropdown-item {
  border-radius: 6px;
  color: var(--swf-ink);
  font-weight: 700;
  padding: 0.55rem 0.75rem;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus,
.site-navbar .dropdown-item.active {
  background: rgba(15, 118, 110, 0.11);
  color: #0b5d58;
}

@media (min-width: 992px) {
  .site-navbar .dropdown:hover > .dropdown-menu,
  .site-navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}

.btn {
  border-radius: 999px;
  font-weight: 750;
  padding: 0.78rem 1.15rem;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--swf-ink), #123f48);
  border-color: var(--swf-ink);
  box-shadow: 0 0.7rem 1.4rem rgba(16, 24, 32, 0.16);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #080d12, #0b5d58);
  border-color: #080d12;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-color: var(--swf-ink);
  color: var(--swf-ink);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--swf-ink);
  border-color: var(--swf-ink);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--swf-gold), var(--swf-brass));
  border-color: var(--swf-gold);
  box-shadow: 0 0.75rem 1.5rem rgba(15, 118, 110, 0.2);
  color: #fff;
}

.btn-gold:hover,
.btn-gold:focus {
  background: linear-gradient(135deg, #0b5d58, #246b91);
  border-color: #0b5d58;
  color: #fff;
  transform: translateY(-2px);
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section > .container {
  position: relative;
  z-index: 1;
}

main > section.section:not(.hero):not(.page-hero):not(.dark-band):not(.promo-band) {
  background:
    linear-gradient(135deg, #d9f2ee 0%, #e8f6ff 52%, #dcecff 100%) !important;
  border-bottom: 1px solid rgba(15, 118, 110, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

main > section.section:not(.hero):not(.page-hero):not(.dark-band):not(.promo-band)::before {
  background:
    repeating-linear-gradient(90deg, rgba(16, 24, 32, 0.025) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(15, 118, 110, 0.032) 0 1px, transparent 1px 42px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

main > section.section:not(.hero):not(.page-hero):not(.dark-band):not(.promo-band):nth-of-type(3n+1) {
  background:
    linear-gradient(135deg, #d5f1eb 0%, #e2f4f1 48%, #d1e8ff 100%) !important;
}

main > section.section:not(.hero):not(.page-hero):not(.dark-band):not(.promo-band):nth-of-type(3n+2) {
  background:
    linear-gradient(135deg, #d4eaff 0%, #e5f2ff 52%, #d5f1e4 100%) !important;
}

main > section.section:not(.hero):not(.page-hero):not(.dark-band):not(.promo-band):nth-of-type(3n) {
  background:
    linear-gradient(135deg, #e2f2ff 0%, #d3efe8 50%, #d9ebff 100%) !important;
}

.section-sm {
  padding: 3.75rem 0;
}

.eyebrow {
  color: #0b6d68;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.eyebrow::before {
  background: linear-gradient(180deg, var(--swf-gold), var(--swf-teal));
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 1.1em;
  margin-right: 0.45rem;
  vertical-align: -0.16em;
  width: 0.22rem;
}

.lead {
  color: var(--swf-muted);
}

.hero {
  background:
    linear-gradient(90deg, rgba(8, 13, 18, 0.88) 0%, rgba(15, 79, 90, 0.68) 48%, rgba(36, 107, 145, 0.18) 100%),
    url("../../images/window-shades.webp") center right / cover no-repeat;
  min-height: 78vh;
  padding: 6.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-video {
  background: #080d12;
  min-height: 82vh;
  overflow: hidden;
  padding: 7rem 0 5.5rem;
  position: relative;
}

.hero-video::before {
  background:
    radial-gradient(circle at 78% 24%, rgba(43, 143, 182, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(8, 13, 18, 0.84) 0%, rgba(15, 79, 90, 0.62) 45%, rgba(16, 24, 32, 0.12) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-video__media {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-video__media video {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-video > .container {
  position: relative;
  z-index: 2;
}

.hero-video h1,
.hero-video .lead,
.hero-video .eyebrow {
  color: #fff;
}

.hero-video h1 {
  text-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.34);
}

.hero-video .lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero-video__stats {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  max-width: 620px;
}

.hero-video__stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: #fff;
  padding: 0.85rem;
}

.hero-video__stat strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
}

.hero-video__stat span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
  margin-top: 0.25rem;
}

.hero::before {
  background:
    radial-gradient(circle at 78% 26%, rgba(43, 143, 182, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(8, 13, 18, 0.9) 0%, rgba(15, 79, 90, 0.66) 48%, rgba(36, 107, 145, 0.18) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-slideshow {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-slide {
  animation: swf-hero-pan-crossfade 28s infinite;
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translate3d(4%, 0, 0) scale(1.08);
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
  background-image: url("../img/gallery/toronto-zebra-shades-living-room-window-coverings.jpeg");
}

.hero-slide:nth-child(2) {
  animation-delay: 7s;
  background-image: url("../img/gallery/gta-luxury-living-room-sheer-drapery.jpeg");
}

.hero-slide:nth-child(3) {
  animation-delay: 14s;
  background-image: url("../img/gallery/toronto-arched-plantation-shutters-custom-window.jpeg");
}

.hero-slide:nth-child(4) {
  animation-delay: 21s;
  background-image: url("../img/gallery/mississauga-living-room-layered-drapery-zebra-shades.jpeg");
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero::after,
.hero-video::after,
.page-hero::after,
.dark-band::after {
  background: linear-gradient(90deg, var(--swf-gold), var(--swf-teal), var(--swf-rose));
  bottom: 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.hero h1,
.hero .lead,
.hero .eyebrow {
  color: #fff;
}

.hero h1 {
  text-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.32);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero .btn-outline-primary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.hero .btn-outline-primary:hover,
.hero .btn-outline-primary:focus {
  background: #fff;
  border-color: #fff;
  color: var(--swf-ink);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(8, 13, 18, 0.88), rgba(15, 79, 90, 0.66), rgba(36, 107, 145, 0.3)),
    url("../../images/layering_with_shades.webp") center / cover no-repeat;
  color: #fff;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero h1,
.page-hero .lead,
.page-hero .eyebrow {
  color: #fff;
}

.page-hero .container > div,
.hero .container > .row {
  max-width: 100%;
}

.trust-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  color: var(--swf-ink);
  display: inline-flex;
  font-size: 0.93rem;
  font-weight: 750;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  box-shadow: 0 0.7rem 1.4rem rgba(16, 24, 32, 0.16);
}

.trust-badge::before,
.check-list li::before,
.promise-list li::before {
  color: var(--swf-gold);
  content: "+";
  font-weight: 900;
}

.service-card,
.product-card,
.testimonial-card,
.process-step {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 249, 0.94));
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  box-shadow: 0 0.75rem 1.75rem rgba(16, 24, 32, 0.07);
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.contact-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 249, 0.94));
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  box-shadow: 0 0.75rem 1.75rem rgba(16, 24, 32, 0.07);
}

.service-card,
.product-card,
.testimonial-card,
.process-step {
  padding: 1.4rem;
}

.service-card::before,
.product-card::before,
.testimonial-card::before,
.process-step::before,
.area-card::before,
.project-gallery-card::before {
  background: linear-gradient(90deg, var(--swf-gold), var(--swf-teal), var(--swf-rose));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.service-card:hover,
.product-card:hover,
.testimonial-card:hover,
.process-step:hover,
.area-card:hover,
.project-gallery-card:hover {
  border-color: rgba(15, 118, 110, 0.34);
  box-shadow: var(--swf-shadow);
  transform: translateY(-6px);
}

.clickable-card {
  cursor: pointer;
}

.clickable-card:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.65);
  outline-offset: 4px;
}

.clickable-card a {
  position: relative;
  z-index: 1;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-rating {
  color: #0b6d68;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
}

.review-author {
  color: var(--swf-ink);
  font-weight: 850;
  margin-bottom: 0;
}

.review-source {
  color: var(--swf-muted);
  font-size: 0.86rem;
}

.service-card img,
.product-card img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  transition: transform 450ms ease, filter 450ms ease;
}

.service-card:hover img,
.product-card:hover img {
  --swf-image-hover-transform: scale(1.035);
  animation: swf-image-bounce 520ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(1.08) contrast(1.03);
  transform: var(--swf-image-hover-transform);
}

.service-card a,
.product-card a {
  font-weight: 800;
  text-decoration: none;
}

.product-card-cta {
  align-self: flex-start;
  margin-top: auto;
}

.product-detail-link {
  display: inline-flex;
  font-weight: 850;
  margin-top: auto;
}

input[name="website_url"] {
  height: 1px;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.muted-band {
  background:
    repeating-linear-gradient(45deg, rgba(15, 118, 110, 0.055) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, #cfeee7 0%, #dff4ff 54%, #d6e8ff 100%) !important;
  border-bottom: 1px solid rgba(15, 118, 110, 0.18);
  border-top: 1px solid rgba(36, 107, 145, 0.16);
}

.dark-band {
  background: linear-gradient(135deg, #080d12, #0f4f5a 57%, #0f766e);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dark-band h2,
.dark-band .lead,
.dark-band a {
  color: #fff;
}

.promo-band {
  background:
    linear-gradient(135deg, rgba(8, 13, 18, 0.96), rgba(15, 79, 90, 0.88) 52%, rgba(15, 118, 110, 0.82)),
    url("../../images/custom_drapery.jpg") center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.promo-band::after {
  background: linear-gradient(90deg, var(--swf-gold), var(--swf-teal), var(--swf-rose));
  bottom: 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
}

.promo-band h2,
.promo-band .lead,
.promo-band .eyebrow {
  color: #fff;
}

.promo-signup-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.24);
  color: var(--swf-ink);
  padding: 1.5rem;
}

.promo-input-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.promo-signup .form-check-label {
  color: var(--swf-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.promo-signup .form-check-input {
  border-color: #5d9489;
  margin-top: 0.25rem;
}

.promo-signup .form-check-input:checked {
  background-color: var(--swf-teal);
  border-color: var(--swf-teal);
}

.footer-promo-signup {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
}

.footer-promo-signup .form-label {
  color: #fff;
  font-weight: 800;
}

.footer-promo-signup .form-check-label,
.footer-promo-signup .form-status {
  color: rgba(255, 255, 255, 0.76);
}

.footer-promo-signup .form-status.text-success {
  color: #bdeecb !important;
}

.footer-promo-signup .form-status.text-warning {
  color: #ffe29a !important;
}

.footer-promo-signup .form-status.text-danger {
  color: #ffb7ad !important;
}

.check-list,
.promise-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li,
.promise-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  box-shadow: 0 0.75rem 1.75rem rgba(16, 24, 32, 0.08);
  object-fit: cover;
  transition: filter 300ms ease, transform 300ms ease;
  width: 100%;
}

.gallery-grid img:hover {
  --swf-image-hover-transform: translateY(-4px);
  animation: swf-image-bounce 520ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(1.12) contrast(1.04);
  transform: var(--swf-image-hover-transform);
}

.gallery-grid .wide img {
  aspect-ratio: 16 / 10;
}

.gallery-hero {
  background:
    linear-gradient(90deg, rgba(8, 13, 18, 0.88), rgba(15, 79, 90, 0.62), rgba(36, 107, 145, 0.34)),
    url("../img/gallery/toronto-zebra-shades-living-room-window-coverings.jpeg") center / cover no-repeat;
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-filter {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--swf-line);
  border-radius: 999px;
  color: var(--swf-ink);
  font-weight: 800;
  padding: 0.65rem 1rem;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-filter.active,
.gallery-filter:hover,
.gallery-filter:focus {
  background: linear-gradient(135deg, var(--swf-ink), var(--swf-teal));
  border-color: var(--swf-ink);
  box-shadow: 0 0.65rem 1.25rem rgba(16, 24, 32, 0.14);
  color: #fff;
  transform: translateY(-2px);
}

.project-gallery-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 251, 249, 0.94));
  border: 1px solid var(--swf-line);
  border-radius: 8px;
  box-shadow: 0 0.75rem 1.75rem rgba(16, 24, 32, 0.08);
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.project-gallery-card img,
.project-gallery-card video {
  aspect-ratio: 4 / 3;
  background: var(--swf-cream);
  display: block;
  height: auto;
  object-fit: cover;
  transition: filter 420ms ease, transform 420ms ease;
  width: 100%;
}

.project-gallery-card:hover img,
.project-gallery-card:hover video {
  --swf-image-hover-transform: scale(1.025);
  animation: swf-image-bounce 520ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(1.12) contrast(1.04);
  transform: var(--swf-image-hover-transform);
}

.gallery-lightbox-trigger {
  cursor: zoom-in;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  align-items: center;
  background: rgba(18, 12, 9, 0.9);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1.25rem;
  position: fixed;
  z-index: 1200;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__dialog {
  margin: 0;
  max-width: min(1080px, 86vw);
  position: relative;
  width: 100%;
}

.gallery-lightbox__image-wrap {
  align-items: center;
  background: #100b08;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}

.gallery-lightbox__image {
  display: block;
  max-height: 78vh;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.gallery-lightbox__caption {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.85rem 0.25rem 0;
}

.gallery-lightbox__caption span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  white-space: nowrap;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--swf-ink);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  position: absolute;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  z-index: 1;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus {
  background: var(--swf-gold);
  color: #fff;
  transform: scale(1.06);
}

.gallery-lightbox__close {
  font-size: 2rem;
  height: 2.8rem;
  right: 1rem;
  top: 1rem;
  width: 2.8rem;
}

.gallery-lightbox__nav {
  font-size: 3.2rem;
  height: 3.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.4rem;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus {
  transform: translateY(-50%) scale(1.06);
}

.gallery-lightbox__nav--prev {
  left: 1rem;
}

.gallery-lightbox__nav--next {
  right: 1rem;
}

.project-gallery-card figcaption {
  padding: 1rem;
}

.project-gallery-card h2 {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
  margin: 0 0 0.35rem;
}

.project-gallery-card p {
  color: var(--swf-muted);
  font-size: 0.92rem;
  margin: 0;
}

.reveal-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-enabled .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-enabled [data-gallery-category],
.reveal-enabled [data-gallery-category] .project-gallery-card,
.gallery-loaded {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-enabled .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.step-number {
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(36, 107, 145, 0.12));
  border-radius: 50%;
  color: #0b5d58;
  display: inline-flex;
  font-weight: 850;
  height: 2.7rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 2.7rem;
}

.comparison-table th {
  background: var(--swf-ink);
  color: #fff;
}

.contact-panel {
  padding: 1.5rem;
}

.estimate-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 249, 0.94)),
    #ffffff;
  border: 2px solid rgba(15, 118, 110, 0.28);
  box-shadow: 0 1.5rem 3.5rem rgba(16, 24, 32, 0.16);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.estimate-card::before {
  background: linear-gradient(90deg, var(--swf-gold), var(--swf-teal), var(--swf-rose));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.estimate-card .form-label {
  color: var(--swf-ink);
  font-weight: 750;
}

.form-control,
.form-select {
  background-color: #ffffff;
  border-color: #5d9489;
  border-radius: 8px;
  color: var(--swf-ink);
  padding: 0.8rem 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--swf-gold);
  box-shadow: 0 0 0 0.25rem rgba(15, 118, 110, 0.18);
}

.map-placeholder {
  background: #fff;
  border: 1px solid var(--swf-line);
  border-radius: 8px;
  box-shadow: var(--swf-shadow);
  overflow: hidden;
}

.map-frame {
  aspect-ratio: 16 / 10;
  border: 0;
  display: block;
  width: 100%;
}

.map-link {
  background: #f2fbf9;
  border-top: 1px solid var(--swf-line);
  display: block;
  font-weight: 800;
  padding: 0.9rem 1rem;
  text-decoration: none;
}

.columns-2 {
  column-gap: 1.5rem;
  columns: 2;
}

.columns-2 li {
  break-inside: avoid;
}

.footer {
  background:
    linear-gradient(135deg, #080d12, #123f48 58%, #0f766e);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  background: linear-gradient(90deg, var(--swf-gold), var(--swf-teal), var(--swf-rose));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.footer a,
.footer h2,
.footer h3 {
  color: #fff;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: #9fe8df;
}

.footer-logo {
  height: 54px;
  width: 54px;
}

.footer-service-links {
  column-gap: 1.25rem;
  columns: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-service-links li {
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

.area-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 251, 249, 0.94));
  border: 1px solid var(--swf-line);
  border-radius: 8px;
  box-shadow: 0 0.75rem 1.75rem rgba(16, 24, 32, 0.07);
  height: 100%;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

@keyframes swf-hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes swf-image-bounce {
  0% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-7px) scale(1.045);
  }

  72% {
    transform: translateY(2px) scale(1.025);
  }

  100% {
    transform: var(--swf-image-hover-transform, scale(1.035));
  }
}

@keyframes swf-hero-pan-crossfade {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(4%, 0, 0) scale(1.08);
  }

  9% {
    opacity: 1;
  }

  29% {
    opacity: 1;
    transform: translate3d(-2.5%, 0, 0) scale(1.045);
  }

  38% {
    opacity: 0;
    transform: translate3d(-5%, 0, 0) scale(1.035);
  }
}

.hero .col-lg-7,
.page-hero .col-lg-8,
.page-hero .container > div {
  animation: swf-hero-rise 780ms ease both;
}

.area-card h2,
.area-card h3 {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 850;
}

@media (max-width: 991.98px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(8, 13, 18, 0.88), rgba(15, 79, 90, 0.72)),
      url("../../images/window-shades.webp") center / cover no-repeat;
    min-height: auto;
    padding: 4.5rem 0;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-video {
    min-height: auto;
    padding: 5rem 0;
  }

  .hero-video::before {
    background:
      linear-gradient(180deg, rgba(8, 13, 18, 0.84), rgba(15, 79, 90, 0.7));
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }

  .announcement-bar {
    font-size: 0.78rem;
    line-height: 1.45;
    padding-inline: 0.75rem;
  }

  .navbar-brand {
    min-width: 0;
  }

  .navbar-brand span {
    font-size: 1.08rem;
  }

  .navbar-toggler {
    flex: 0 0 auto;
  }

  .display-4 {
    font-size: 1.86rem;
    line-height: 1.08;
  }

  .display-6 {
    font-size: 1.7rem;
    line-height: 1.1;
  }

  .page-hero {
    padding: 3.75rem 0;
  }

  .page-hero .lead,
  .hero .lead,
  .hero-video .lead {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .hero-video__stats {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .gallery-lightbox {
    padding: 0.75rem;
  }

  .gallery-lightbox__dialog {
    max-width: 100%;
  }

  .gallery-lightbox__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .gallery-lightbox__close {
    height: 2.45rem;
    right: 0.75rem;
    top: 0.75rem;
    width: 2.45rem;
  }

  .gallery-lightbox__nav {
    font-size: 2.6rem;
    height: 2.9rem;
    width: 2.9rem;
  }

  .gallery-lightbox__nav--prev {
    left: 0.5rem;
  }

  .gallery-lightbox__nav--next {
    right: 0.5rem;
  }

  .promo-input-row {
    grid-template-columns: 1fr;
  }

  .gallery-filter-bar {
    gap: 0.55rem;
  }

  .gallery-filter {
    padding: 0.55rem 0.8rem;
  }
}
