:root {
  --swf-ink: #241913;
  --swf-charcoal: #32251f;
  --swf-cream: #fff4e7;
  --swf-paper: #fffaf3;
  --swf-taupe: #d9c4ad;
  --swf-gold: #c28a2e;
  --swf-brass: #dda94d;
  --swf-sage: #627f72;
  --swf-teal: #1f625b;
  --swf-rose: #9d5748;
  --swf-line: #e8d8c4;
  --swf-muted: #675a50;
  --swf-shadow: 0 1.25rem 3rem rgba(36, 25, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    repeating-linear-gradient(45deg, rgba(194, 138, 46, 0.035) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(135deg, rgba(31, 98, 91, 0.03) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, #fff7ec 0%, #f1f9f5 42%, #fff1e8 72%, #fff9ee 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;
}

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

a {
  color: #7d5a20;
}

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

:focus-visible {
  outline: 3px solid rgba(184, 134, 56, 0.75);
  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, var(--swf-ink), #6d3d31 47%, var(--swf-teal));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01rem;
  padding: 0.55rem 0;
}

.site-navbar {
  background: #fffdf8;
  border-bottom: 1px solid rgba(194, 138, 46, 0.18);
  box-shadow: 0 0.35rem 1rem rgba(36, 25, 19, 0.07);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-navbar.is-scrolled {
  background: #fffdf8;
  border-color: rgba(31, 98, 91, 0.18);
  box-shadow: 0 0.85rem 2rem rgba(36, 25, 19, 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: #8a641f;
}

.site-navbar .nav-link::after {
  background: linear-gradient(90deg, var(--swf-gold), var(--swf-teal));
  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);
}

.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), #4f2e25);
  border-color: var(--swf-ink);
  box-shadow: 0 0.7rem 1.4rem rgba(36, 25, 19, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #0f0d0b, #3b231d);
  border-color: #0f0d0b;
  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(194, 138, 46, 0.2);
  color: #fff;
}

.btn-gold:hover,
.btn-gold:focus {
  background: linear-gradient(135deg, #946822, #c89339);
  border-color: #946822;
  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, #fff4e7 0%, #fff9ef 48%, #eaf6f1 100%) !important;
  border-bottom: 1px solid rgba(194, 138, 46, 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(36, 25, 19, 0.022) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(31, 98, 91, 0.02) 0 1px, transparent 1px 40px);
  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, #fff0df 0%, #fff8ec 48%, #e4f3ed 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, #e5f5ef 0%, #fff3e5 52%, #fae7df 100%) !important;
}

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

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

.eyebrow {
  color: #8a641f;
  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(36, 25, 19, 0.85) 0%, rgba(75, 42, 34, 0.68) 48%, rgba(36, 25, 19, 0.16) 100%),
    url("../../images/window-shades.webp") center right / cover no-repeat;
  min-height: 78vh;
  padding: 6.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::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;
}

.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, 250, 243, 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(36, 25, 19, 0.9), rgba(83, 48, 39, 0.68), rgba(31, 98, 91, 0.36)),
    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, 250, 243, 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(36, 25, 19, 0.18);
}

.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.97), rgba(255, 245, 232, 0.94));
  border: 1px solid rgba(126, 76, 45, 0.22);
  border-radius: 8px;
  box-shadow: 0 0.75rem 1.75rem rgba(43, 38, 34, 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.97), rgba(255, 245, 232, 0.94));
  border: 1px solid rgba(126, 76, 45, 0.22);
  border-radius: 8px;
  box-shadow: 0 0.75rem 1.75rem rgba(43, 38, 34, 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(194, 138, 46, 0.42);
  box-shadow: var(--swf-shadow);
  transform: translateY(-6px);
}

.clickable-card {
  cursor: pointer;
}

.clickable-card:focus-visible {
  outline: 3px solid rgba(194, 138, 46, 0.75);
  outline-offset: 4px;
}

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

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

.review-rating {
  color: #8a641f;
  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 {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

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

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

.muted-band {
  background:
    repeating-linear-gradient(45deg, rgba(194, 138, 46, 0.045) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, #fff1df 0%, #e7f5ef 54%, #fceae3 100%) !important;
  border-bottom: 1px solid rgba(194, 138, 46, 0.16);
  border-top: 1px solid rgba(31, 98, 91, 0.1);
}

.dark-band {
  background: linear-gradient(135deg, var(--swf-ink), #553226 57%, var(--swf-teal));
  color: #fff;
  position: relative;
  overflow: hidden;
}

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

.promo-band {
  background:
    linear-gradient(135deg, rgba(36, 25, 19, 0.96), rgba(111, 61, 48, 0.88) 52%, rgba(31, 98, 91, 0.86)),
    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, 250, 243, 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: #8f735f;
  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(43, 38, 34, 0.08);
  object-fit: cover;
  transition: filter 300ms ease, transform 300ms ease;
  width: 100%;
}

.gallery-grid img:hover {
  filter: saturate(1.12) contrast(1.04);
  transform: translateY(-4px);
}

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

.gallery-hero {
  background:
    linear-gradient(90deg, rgba(36, 25, 19, 0.88), rgba(91, 49, 40, 0.62), rgba(31, 98, 91, 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(36, 25, 19, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

.project-gallery-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 241, 0.94));
  border: 1px solid var(--swf-line);
  border-radius: 8px;
  box-shadow: 0 0.75rem 1.75rem rgba(43, 38, 34, 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 {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.025);
}

.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, 250, 243, 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(194, 138, 46, 0.18), rgba(31, 98, 91, 0.12));
  border-radius: 50%;
  color: #805617;
  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.97), rgba(255, 244, 231, 0.94)),
    #fffaf3;
  border: 2px solid rgba(194, 138, 46, 0.38);
  box-shadow: 0 1.5rem 3.5rem rgba(36, 25, 19, 0.18);
  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: #fffdfa;
  border-color: #8f735f;
  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(194, 138, 46, 0.22);
}

.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: #fff9f1;
  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, #1b1410, #38251f 58%, #163f3b);
  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: #f0cf93;
}

.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(255, 249, 241, 0.94));
  border: 1px solid var(--swf-line);
  border-radius: 8px;
  box-shadow: 0 0.75rem 1.75rem rgba(43, 38, 34, 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);
  }
}

.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(36, 25, 19, 0.88), rgba(72, 40, 32, 0.72)),
      url("../../images/window-shades.webp") center / cover no-repeat;
    min-height: auto;
    padding: 4.5rem 0;
  }

  .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 {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .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;
  }
}
