/* ==========================================================================
   Roger's Windows Glass & Doors
   Audited and reorganized main frontend stylesheet

   Architecture map
   1-18: Core Foundation and Global Site Shell
   19-31: Home
   32-39: Services Hub
   39A-39K: Products, Vinyl and Wood Hubs
   40-56: Windows
   57-74: Doors
   75-93: Projects
   94: Cross-Page Typography Overrides
   95-112: Glass and Specialty
   113-123: Window Options and Customization
   124-134: Contractors and Commercial
   135-157: Window Selection Resources
   158-176: Blog and Editorial System
   177-187: About
   188: Shared Contact Form 7 System
   189-197: Contact
   198-208: Request an Estimate
   209-217: Frequently Asked Questions
   218-236: Locations
   237-246: Legal Pages
   247-254: Controlled 404
   255-263: Authentication

   Audit policy: preserve approved visual behavior, consolidate only
   demonstrably superseded rules, and retain stable production class names.
   ========================================================================== */

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
  --rw-red: #cc0d10;
  --rw-red-dark: #a4090c;
  --rw-red-soft: #fff0f0;

  --rw-yellow: #f1d200;
  --rw-yellow-soft: #fff9cf;

  --rw-charcoal: #17191c;
  --rw-charcoal-soft: #25282d;
  --rw-ink: #202328;
  --rw-text: #4d5259;
  --rw-muted: #727881;

  --rw-white: #ffffff;
  --rw-off-white: #f8f8f6;
  --rw-warm-gray: #f1f0ec;
  --rw-border: #dedfdc;
  --rw-border-dark: rgba(255, 255, 255, 0.14);

  --rw-success: #19764b;
  --rw-error: #b42318;

  --rw-font-heading:
    "Archivo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  --rw-font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --rw-font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;

  --rw-container: 1280px;
  --rw-container-wide: 1440px;
  --rw-page-padding: clamp(20px, 4vw, 56px);

  --rw-section-space: clamp(72px, 9vw, 132px);
  --rw-section-space-small: clamp(48px, 6vw, 88px);

  --rw-radius-small: 8px;
  --rw-radius-medium: 14px;
  --rw-radius-large: 24px;
  --rw-radius-pill: 999px;

  --rw-shadow-small: 0 8px 24px rgba(23, 25, 28, 0.08);

  --rw-shadow-medium: 0 20px 50px rgba(23, 25, 28, 0.13);

  --rw-shadow-large: 0 30px 80px rgba(23, 25, 28, 0.19);

  --rw-transition-fast: 160ms ease;
  --rw-transition: 240ms ease;
  --rw-transition-slow: 380ms cubic-bezier(0.22, 1, 0.36, 1);

  --rw-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --rw-ease-spring: cubic-bezier(0.2, 0.85, 0.25, 1.18);
  --rw-motion-distance: 26px;
  --rw-motion-stagger: 80ms;

  --rw-utility-height: 38px;
  --rw-desktop-header-height: 82px;
  --rw-mobile-header-height: 68px;
  --rw-mobile-dock-height: 72px;
  --rw-navigation-panel-gap: 28px;

  /* Shared hero proportions for consistent above-the-fold access. */
  --rw-hero-grid-gap: clamp(36px, 4.5vw, 72px);
  --rw-hero-padding-block: clamp(40px, 5.2vh, 66px);
  --rw-hero-title-size: clamp(2.7rem, 3.7vw, 4.2rem);
  --rw-hero-title-margin: 18px;
  --rw-hero-description-margin: 20px;
  --rw-hero-description-size: clamp(0.94rem, 1.05vw, 1.04rem);
  --rw-hero-description-line-height: 1.58;
  --rw-hero-actions-margin: 22px;
  --rw-hero-breadcrumb-margin: 15px;
  --rw-hero-highlights-gap: 8px 18px;
  --rw-hero-media-bottom-space: clamp(42px, 4vw, 54px);

  --rw-z-header: 900;
  --rw-z-dock: 950;
  --rw-z-modal: 1000;

  --rw-dark: #202124;

  /* Cross-page typography scale. */
  --rw-type-section-title: clamp(1.95rem, 2.75vw, 2.95rem);
  --rw-type-feature-title: clamp(2.05rem, 3vw, 3.15rem);
  --rw-type-filter-title: clamp(1.45rem, 2vw, 1.95rem);
  --rw-type-card-title: clamp(1.2rem, 1.55vw, 1.58rem);
  --rw-type-subheading: clamp(0.96rem, 1vw, 1.08rem);
  --rw-type-lead: clamp(0.98rem, 1.1vw, 1.08rem);
  --rw-type-body: clamp(0.9rem, 0.92vw, 0.98rem);
  --rw-type-card-body: clamp(0.8rem, 0.82vw, 0.86rem);
  --rw-type-meta: 0.68rem;
  --rw-type-link: 0.79rem;

  /* Compatibility aliases used by approved page components. */
  --rw-body-lead-size: var(--rw-type-lead);
  --rw-body-size: var(--rw-type-body);
  --rw-title-feature-size: var(--rw-type-feature-title);
}

/* ==========================================================================
     2. Reset and GeneratePress Normalization
     ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--rw-desktop-header-height) + 24px);
}

body {
  margin: 0;
  background: var(--rw-white);
  color: var(--rw-text);
  font-family: var(--rw-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.mobile-menu-open {
  overflow: hidden;
}

.site,
.site.grid-container,
.site-content,
.content-area,
.inside-article {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
}

.site {
  min-height: 100vh;
  overflow: clip;
}

main {
  display: block;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

figure {
  margin: 0;
}

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

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

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  margin-top: 0;
}

[hidden] {
  display: none !important;
}

/* ==========================================================================
     3. Accessibility
     ========================================================================== */

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed !important;
  top: 16px;
  left: 16px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 12px 18px;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: var(--rw-radius-small);
  box-shadow: var(--rw-shadow-medium);
  font-weight: 700;
  white-space: normal;
}

:focus-visible {
  outline: 3px solid var(--rw-yellow);
  outline-offset: 4px;
}

a,
button,
input,
textarea,
select {
  transition:
    color var(--rw-transition-fast),
    background-color var(--rw-transition-fast),
    border-color var(--rw-transition-fast),
    box-shadow var(--rw-transition-fast),
    transform var(--rw-transition-fast),
    opacity var(--rw-transition-fast);
}

/* ==========================================================================
     4. Motion and Interaction Foundation
     ========================================================================== */

html.js .rw-reveal {
  opacity: 0;
  transform: translate3d(0, var(--rw-motion-distance), 0);
  transition:
    opacity 720ms var(--rw-ease-out),
    transform 720ms var(--rw-ease-out);
  transition-delay: var(--rw-reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.js .rw-reveal--left {
  transform: translate3d(calc(var(--rw-motion-distance) * -1), 0, 0);
}

html.js .rw-reveal--right {
  transform: translate3d(var(--rw-motion-distance), 0, 0);
}

html.js .rw-reveal--scale {
  transform: translate3d(0, 18px, 0) scale(0.965);
}

html.js .rw-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes rw-panel-enter {
  from {
    opacity: 0;
    translate: 0 -10px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes rw-soft-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -7px;
  }
}

@keyframes rw-soft-pulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(204, 13, 16, 0.2);
  }

  50% {
    box-shadow: 0 14px 32px rgba(204, 13, 16, 0.3);
  }
}

/* ==========================================================================
     5. Global Layout and Typography
     ========================================================================== */

.site-container {
  width: min(calc(100% - (var(--rw-page-padding) * 2)), var(--rw-container));
  margin-inline: auto;
}

.site-container--wide {
  width: min(
    calc(100% - (var(--rw-page-padding) * 2)),
    var(--rw-container-wide)
  );
  margin-inline: auto;
}

.site-main {
  width: 100%;
  min-height: 55vh;
  margin: 0;
  padding: 0;
}

.section {
  padding-block: var(--rw-section-space);
}

.section--small {
  padding-block: var(--rw-section-space-small);
}

.section--off-white {
  background: var(--rw-off-white);
}

.section--warm-gray {
  background: var(--rw-warm-gray);
}

.section--dark {
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.75rem);
}

h2 {
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
}

h4 {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--rw-red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--rw-yellow);
  content: "";
}

.lead {
  max-width: 760px;
  color: var(--rw-text);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

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

.hero-title {
  width: 100%;
  max-width: 16ch;
  font-size: var(--rw-hero-title-size);
  line-height: 0.98;
  letter-spacing: -0.052em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 11px;
  width: 100%;
  max-width: 100%;
}

.hero-actions .button {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  min-height: 48px;
  padding: 12px clamp(16px, 1.4vw, 21px);
  font-size: clamp(0.76rem, 0.72rem + 0.12vw, 0.86rem);
  line-height: 1.22;
}

/* ==========================================================================
     6. Buttons
     ========================================================================== */

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--rw-radius-small);
  font-family: var(--rw-font-body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition:
    color var(--rw-transition-fast),
    background-color var(--rw-transition-fast),
    border-color var(--rw-transition-fast),
    box-shadow var(--rw-transition),
    transform var(--rw-transition-fast);
}

.button::before {
  position: absolute;
  inset: -60% auto -60% -45%;
  z-index: -1;
  width: 34%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.34),
    transparent
  );
  content: "";
  opacity: 0;
  transform: skewX(-18deg) translateX(-220%);
  transition:
    transform 620ms var(--rw-ease-out),
    opacity var(--rw-transition-fast);
}

.button:hover {
  transform: translateY(-3px) scale(1.012);
}

.button:hover::before {
  opacity: 1;
  transform: skewX(-18deg) translateX(620%);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button--primary {
  background: var(--rw-red);
  color: var(--rw-white);
  box-shadow: 0 10px 24px rgba(204, 13, 16, 0.2);
}

.button--primary:hover {
  background: var(--rw-red-dark);
  color: var(--rw-white);
  box-shadow: 0 14px 32px rgba(204, 13, 16, 0.28);
}

.button--dark {
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.button--dark:hover {
  background: var(--rw-charcoal-soft);
  color: var(--rw-white);
}

.button--outline {
  border-color: var(--rw-charcoal);
  background: transparent;
  color: var(--rw-charcoal);
}

.button--outline:hover {
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--rw-white);
}

.button--outline-light:hover {
  border-color: var(--rw-white);
  background: var(--rw-white);
  color: var(--rw-charcoal);
}

.button--header {
  min-height: 46px;
  padding-inline: 20px;
  white-space: nowrap;
}

/* ==========================================================================
   7. Media and Compact Automatic Placeholders
   ========================================================================== */

.rogers-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/*
   * Universal placeholder container.
   *
   * Every template supplies its preferred ratio through:
   * --rogers-media-ratio
   */

.rogers-media-placeholder {
  position: relative;
  display: grid !important;
  width: 100%;
  min-width: 0;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: var(--rogers-media-ratio, 4 / 3) !important;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 44%),
    var(--rw-warm-gray);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: inherit;
  container-name: rogers-placeholder;
  container-type: inline-size;
}

/* Technical grid background */

.rogers-media-placeholder::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 35, 40, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 35, 40, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

/* Yellow brand line */

.rogers-media-placeholder::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: clamp(62px, 22%, 96px);
  height: 5px;
  background: var(--rw-yellow);
  content: "";
  pointer-events: none;
}

/* Compact content area */

.rogers-media-placeholder__content {
  position: relative;
  z-index: 1;
  display: grid !important;
  align-content: center;
  gap: 9px !important;
  width: 100% !important;
  max-width: none !important;
  height: 100%;
  padding: 58px clamp(16px, 6cqw, 30px) 20px !important;
}

/*
   * Main red badge.
   * Fixed in the upper-left corner.
   */

.rogers-media-placeholder__type {
  position: absolute;
  top: 15px;
  left: clamp(14px, 4cqw, 22px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 28px);
  min-height: 25px;
  padding: 6px 9px !important;
  margin: 0;
  background: var(--rw-red);
  color: var(--rw-white);
  border-radius: 5px;
  font-size: clamp(0.54rem, 1.7cqw, 0.65rem) !important;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

/*
   * The old descriptive image title is hidden visually.
   * The useful technical information remains visible.
   */

.rogers-media-placeholder__label {
  display: none !important;
}

/*
   * Recommended image description.
   *
   * Only the first descriptive group is shown.
   * Any second group, normally "Visual purpose", is hidden.
   */

.rogers-media-placeholder__group {
  order: 1;
  display: grid !important;
  gap: 4px;
  width: 100%;
  max-width: 620px !important;
  margin: 0;
}

.rogers-media-placeholder__group + .rogers-media-placeholder__group {
  display: none !important;
}

.rogers-media-placeholder__group > span {
  display: block;
  margin: 0 !important;
  color: var(--rw-muted);
  font-size: clamp(0.53rem, 1.6cqw, 0.63rem) !important;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.rogers-media-placeholder__group p {
  display: -webkit-box;
  margin: 0 !important;
  overflow: hidden;
  color: var(--rw-text);
  font-size: clamp(0.69rem, 2.15cqw, 0.85rem) !important;
  line-height: 1.45 !important;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*
   * Asset path.
   * One line only, with ellipsis when necessary.
   */

.rogers-media-placeholder__path {
  order: 2;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 7px 9px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  color: var(--rw-red-dark);
  border: 1px solid rgba(204, 13, 16, 0.16);
  border-radius: 5px;
  font-family: var(--rw-font-mono);
  font-size: clamp(0.58rem, 1.85cqw, 0.7rem) !important;
  line-height: 1.35 !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-wrap: normal !important;
}

/*
   * Orientation and ratio badges.
   * Displayed together in the upper-right corner.
   */

.rogers-media-placeholder__specs {
  position: absolute;
  top: 15px;
  right: clamp(14px, 4cqw, 22px);
  z-index: 3;
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 5px !important;
  margin: 0;
  color: var(--rw-ink);
  font-size: clamp(0.48rem, 1.45cqw, 0.59rem) !important;
  font-weight: 800;
  line-height: 1;
}

.rogers-media-placeholder__specs span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(32, 35, 40, 0.12);
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(23, 25, 28, 0.06);
  white-space: nowrap;
}

/*
   * Medium placeholders:
   * move the technical badges to the lower-right corner
   * so they cannot overlap the Image Needed badge.
   */

@container rogers-placeholder (max-width: 420px) {
  .rogers-media-placeholder__content {
    padding: 54px 16px 52px !important;
  }

  .rogers-media-placeholder__type {
    top: 13px;
    left: 13px;
  }

  .rogers-media-placeholder__specs {
    top: auto;
    right: 13px;
    bottom: 13px;
    left: 13px;
    justify-content: flex-end;
  }

  .rogers-media-placeholder__group p {
    -webkit-line-clamp: 2;
  }
}

/*
   * Small card placeholders:
   * keep all information, but reduce spacing further.
   */

@container rogers-placeholder (max-width: 280px) {
  .rogers-media-placeholder__content {
    gap: 6px !important;
    padding: 48px 12px 45px !important;
  }

  .rogers-media-placeholder__type {
    top: 10px;
    left: 10px;
    min-height: 22px;
    padding: 5px 7px !important;
    font-size: 0.51rem !important;
  }

  .rogers-media-placeholder__group > span {
    font-size: 0.5rem !important;
  }

  .rogers-media-placeholder__group p {
    font-size: 0.65rem !important;
    line-height: 1.35 !important;
    -webkit-line-clamp: 1;
  }

  .rogers-media-placeholder__path {
    padding: 5px 7px !important;
    font-size: 0.54rem !important;
  }

  .rogers-media-placeholder__specs {
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 4px !important;
    font-size: 0.47rem !important;
  }

  .rogers-media-placeholder__specs span {
    min-height: 21px;
    padding: 4px 6px;
  }
}

/*
   * Very small decorative placeholders:
   * show only the essential status and technical badges.
   */

@container rogers-placeholder (max-width: 190px) {
  .rogers-media-placeholder__content {
    padding: 42px 8px 38px !important;
  }

  .rogers-media-placeholder__group,
  .rogers-media-placeholder__path {
    display: none !important;
  }

  .rogers-media-placeholder__specs {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
     8. Branding
     ========================================================================== */

.site-branding {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 245px;
  color: var(--rw-charcoal);
}

.site-branding:hover {
  color: var(--rw-red);
}

.site-branding__logo {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 58px;
  object-fit: contain;
}

.site-branding__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.site-branding__primary {
  font-family: var(--rw-font-heading);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-branding__secondary {
  color: var(--rw-red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-branding--light {
  color: var(--rw-white);
}

.site-branding--light:hover {
  color: var(--rw-white);
}

.site-branding--light .site-branding__secondary {
  color: var(--rw-yellow);
}

/* ==========================================================================
     9. Global Header
     ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--rw-z-header);
  overflow: visible;
  background: var(--rw-white);
  box-shadow: 0 1px 0 rgba(23, 25, 28, 0.08);
  isolation: isolate;
}

.admin-bar .site-header {
  top: 32px;
}

.utility-bar {
  height: var(--rw-utility-height);
  max-height: none;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
  will-change: height, opacity;
  transition:
    height var(--rw-transition),
    opacity var(--rw-transition-fast);
}

.site-header.is-scrolled .utility-bar {
  height: 0;
  max-height: none;
  opacity: 0;
  pointer-events: none;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--rw-utility-height);
  font-size: 0.76rem;
  line-height: 1.2;
}

.utility-bar__message,
.utility-bar__contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-bar__experience,
.utility-bar__location {
  color: var(--rw-white);
  font-weight: 800;
}

.utility-bar__separator {
  color: var(--rw-yellow);
}

.utility-bar__link,
.utility-bar__account {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: var(--rw-utility-height);
}

.utility-bar__link:hover,
.utility-bar__account:hover {
  color: var(--rw-white);
}

.utility-bar__account {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

/* ==========================================================================
     10. Desktop Header and Navigation
     ========================================================================== */

.desktop-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.desktop-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  min-height: var(--rw-desktop-header-height);
}

.desktop-header__branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.desktop-navigation {
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  gap: clamp(8px, 1.1vw, 18px);
  min-width: 0;
  margin-left: auto;
}

.desktop-navigation__item {
  position: relative;
  display: flex;
  align-items: center;
}

.desktop-navigation__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 100%;
  padding: 0 4px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--rw-ink);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  font-weight: 760;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

button.desktop-navigation__link--button,
button.desktop-navigation__link--button:hover,
button.desktop-navigation__link--button:focus,
button.desktop-navigation__link--button:active {
  width: auto;
  background: transparent;
  color: var(--rw-ink);
  border: 0;
  box-shadow: none;
  transform: none;
}

.desktop-navigation__link::after {
  position: absolute;
  right: 4px;
  bottom: 17px;
  left: 4px;
  height: 3px;
  background: var(--rw-red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--rw-transition);
}

.desktop-navigation__item:hover > .desktop-navigation__link,
.desktop-navigation__item.is-active > .desktop-navigation__link,
.desktop-navigation__item.is-open > .desktop-navigation__link,
.desktop-navigation__link--button[aria-expanded="true"] {
  background: transparent;
  color: var(--rw-red);
  box-shadow: none;
}

.desktop-navigation__item:hover > .desktop-navigation__link::after,
.desktop-navigation__item.is-active > .desktop-navigation__link::after,
.desktop-navigation__item.is-open > .desktop-navigation__link::after,
.desktop-navigation__link--button[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-navigation__link--button > svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--rw-transition-fast);
}

.desktop-navigation__link--button[aria-expanded="true"] > svg {
  transform: rotate(180deg);
}

.desktop-header__action {
  flex-shrink: 0;
}

/* ==========================================================================
     11. Desktop Navigation Panels
     ========================================================================== */

.navigation-panel {
  position: absolute;
  top: calc(100% + 12px);
  z-index: calc(var(--rw-z-header) + 1);
  background: var(--rw-white);
  border: 1px solid rgba(23, 25, 28, 0.09);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-large);
}

.navigation-panel::before {
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.navigation-panel--mega {
  position: fixed;
  top: calc(var(--rw-desktop-header-height) + var(--rw-navigation-panel-gap));
  left: 50%;
  width: min(calc(100vw - 40px), 1280px);
  max-height: calc(
    100dvh - var(--rw-desktop-header-height) - var(--rw-navigation-panel-gap) -
      20px
  );
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(-50%);
  transition:
    top var(--rw-transition),
    box-shadow var(--rw-transition);
}

.navigation-panel--mega::before {
  top: calc((var(--rw-navigation-panel-gap) + 2px) * -1);
  height: calc(var(--rw-navigation-panel-gap) + 3px);
}

.navigation-panel:not([hidden]) {
  animation: rw-panel-enter 240ms var(--rw-ease-out) both;
}

/* Services mega menu: category selector, dynamic content and explore paths. */

.services-mega {
  display: grid;
  grid-template-columns:
    minmax(220px, 0.76fr)
    minmax(0, 2.15fr)
    minmax(238px, 0.82fr);
  gap: 24px;
  min-height: 500px;
  padding: 24px;
}

.services-mega__sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 7px 22px 7px 0;
  border-right: 1px solid var(--rw-border);
}

.services-mega__intro {
  margin-bottom: 18px;
}

.services-mega__eyebrow,
.services-mega__panel-eyebrow,
.services-mega__explore-heading > span {
  display: block;
  margin-bottom: 7px;
  color: var(--rw-red);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.services-mega__intro > p:last-child {
  margin: 0;
  color: var(--rw-muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.services-mega__tabs {
  display: grid;
  gap: 8px;
}

.services-mega__tab {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 77px;
  padding: 11px 12px;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--rw-ink);
  border: 1px solid transparent;
  border-radius: 11px;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
}

.services-mega__tab::before {
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 0;
  width: 3px;
  background: var(--rw-red);
  border-radius: 0 var(--rw-radius-pill) var(--rw-radius-pill) 0;
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transition:
    opacity var(--rw-transition-fast),
    transform var(--rw-transition-fast);
}

.services-mega__tab:hover,
.services-mega__tab:focus-visible,
.services-mega__tab.is-active,
.services-mega__tab[aria-selected="true"] {
  background: var(--rw-white);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.16);
  box-shadow: 0 7px 20px rgba(23, 25, 28, 0.065);
  transform: translateX(3px);
}

.services-mega__tab:hover::before,
.services-mega__tab:focus-visible::before,
.services-mega__tab.is-active::before,
.services-mega__tab[aria-selected="true"]::before {
  opacity: 1;
  transform: scaleY(1);
}

.services-mega__tab-icon,
.services-mega__card-icon,
.services-mega__explore-icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  box-shadow: 0 4px 12px rgba(23, 25, 28, 0.045);
}

.services-mega__tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.services-mega__tab-icon svg,
.services-mega__card-icon svg,
.services-mega__explore-icon svg {
  width: 21px;
  height: 21px;
}

.services-mega__tab-content,
.services-mega__card-content,
.services-mega__explore-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.services-mega__tab-content {
  gap: 3px;
}

.services-mega__tab-content strong {
  color: inherit;
  font-family: var(--rw-font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.26;
}

.services-mega__tab-content small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--rw-muted);
  font-size: 0.62rem;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.services-mega__tab-arrow,
.services-mega__card-arrow,
.services-mega__explore-arrow {
  display: grid;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--rw-muted);
}

.services-mega__tab-arrow svg,
.services-mega__card-arrow svg,
.services-mega__explore-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform var(--rw-transition-fast);
}

.services-mega__tab:hover .services-mega__tab-arrow,
.services-mega__tab.is-active .services-mega__tab-arrow,
.services-mega__tab[aria-selected="true"] .services-mega__tab-arrow {
  color: var(--rw-red);
}

.services-mega__tab:hover .services-mega__tab-arrow svg,
.services-mega__tab.is-active .services-mega__tab-arrow svg,
.services-mega__tab[aria-selected="true"] .services-mega__tab-arrow svg {
  transform: translateX(3px);
}

.services-mega__all-services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 13px 5px;
  margin-top: auto;
  color: var(--rw-red);
  border-top: 1px solid var(--rw-border);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.35;
}

.services-mega__all-services svg,
.services-mega__category-overview svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  transition: transform var(--rw-transition-fast);
}

.services-mega__all-services:hover,
.services-mega__category-overview:hover {
  color: var(--rw-red-dark);
}

.services-mega__all-services:hover svg,
.services-mega__category-overview:hover svg {
  transform: translateX(4px);
}

.services-mega__content {
  min-width: 0;
  padding: 7px 0;
}

.services-mega__panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.services-mega__panel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.92fr);
  align-items: end;
  gap: 24px;
  min-height: 76px;
  padding-bottom: 17px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--rw-border);
}

.services-mega__panel-header h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.services-mega__panel-header > p {
  margin: 0;
  color: var(--rw-muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.services-mega__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.services-mega__card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 96px;
  padding: 13px 14px;
  overflow: hidden;
  background: var(--rw-off-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(23, 25, 28, 0.025);
}

.services-mega__card::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 3px;
  background: var(--rw-red);
  border-radius: 0 var(--rw-radius-pill) var(--rw-radius-pill) 0;
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transition:
    opacity var(--rw-transition-fast),
    transform var(--rw-transition-fast);
}

.services-mega__card:hover,
.services-mega__card:focus-visible,
.services-mega__card.is-active,
.services-mega__card[aria-current="page"] {
  background: var(--rw-white);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.24);
  box-shadow: 0 8px 22px rgba(23, 25, 28, 0.075);
  transform: translateY(-2px);
}

.services-mega__card:hover::before,
.services-mega__card:focus-visible::before,
.services-mega__card.is-active::before,
.services-mega__card[aria-current="page"]::before {
  opacity: 1;
  transform: scaleY(1);
}

.services-mega__card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.services-mega__card-content {
  gap: 4px;
}

.services-mega__card-content strong {
  color: inherit;
  font-family: var(--rw-font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.27;
}

.services-mega__card-content small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--rw-muted);
  font-size: 0.64rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.services-mega__card:hover .services-mega__card-arrow,
.services-mega__card.is-active .services-mega__card-arrow,
.services-mega__card[aria-current="page"] .services-mega__card-arrow {
  color: var(--rw-red);
}

.services-mega__card:hover .services-mega__card-arrow svg {
  transform: translateX(3px);
}

.services-mega__category-overview {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  padding-top: 17px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.35;
}

.services-mega__explore {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px 17px;
  background: var(--rw-off-white);
  border: 1px solid rgba(23, 25, 28, 0.055);
  border-radius: 12px;
}

.services-mega__explore-heading {
  padding: 0 4px 15px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--rw-border);
}

.services-mega__explore-heading strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.9rem;
  line-height: 1.3;
}

.services-mega__explore-list {
  display: grid;
  gap: 5px;
  padding-top: 8px;
}

.services-mega__explore-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 80px;
  padding: 10px 9px;
  color: var(--rw-ink);
  border: 1px solid transparent;
  border-radius: 10px;
}

.services-mega__explore-link:hover,
.services-mega__explore-link:focus-visible {
  background: var(--rw-white);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.14);
  box-shadow: 0 6px 18px rgba(23, 25, 28, 0.055);
  transform: translateX(3px);
}

.services-mega__explore-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.services-mega__explore-icon svg {
  width: 19px;
  height: 19px;
}

.services-mega__explore-content {
  gap: 3px;
}

.services-mega__explore-content strong {
  color: inherit;
  font-family: var(--rw-font-heading);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  white-space: nowrap;
}

.services-mega__explore-content small {
  color: var(--rw-muted);
  font-size: 0.61rem;
  line-height: 1.35;
}

.services-mega__explore-link:hover .services-mega__explore-arrow {
  color: var(--rw-red);
}

.services-mega__explore-link:hover .services-mega__explore-arrow svg {
  transform: translateX(3px);
}

/* Compact Locations and Resources panels. */

.navigation-panel--compact {
  right: 0;
  width: min(360px, calc(100vw - 48px));
}

.navigation-panel--locations {
  width: min(370px, calc(100vw - 48px));
}

.navigation-panel--resources {
  width: min(390px, calc(100vw - 48px));
}

.navigation-panel__compact-inner {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.navigation-panel__compact-link {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 72px;
  padding: 12px 13px;
  overflow: hidden;
  background: transparent;
  color: var(--rw-ink);
  border: 1px solid transparent;
  border-radius: 10px;
}

.navigation-panel__compact-link::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 3px;
  background: var(--rw-red);
  border-radius: 0 var(--rw-radius-pill) var(--rw-radius-pill) 0;
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transition:
    opacity var(--rw-transition-fast),
    transform var(--rw-transition-fast);
}

.navigation-panel__compact-link:hover,
.navigation-panel__compact-link:focus-visible,
.navigation-panel__compact-link[aria-current="page"] {
  background: var(--rw-off-white);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.14);
  box-shadow: 0 6px 18px rgba(23, 25, 28, 0.055);
  transform: translateX(3px);
}

.navigation-panel__compact-link:hover::before,
.navigation-panel__compact-link:focus-visible::before,
.navigation-panel__compact-link[aria-current="page"]::before {
  opacity: 1;
  transform: scaleY(1);
}

.navigation-panel__compact-link-icon {
  display: grid;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 11px;
  box-shadow: 0 4px 12px rgba(23, 25, 28, 0.05);
}

.navigation-panel__compact-link-icon svg {
  width: 21px;
  height: 21px;
}

.navigation-panel__compact-link-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.navigation-panel__compact-link strong {
  color: inherit;
  font-family: var(--rw-font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.navigation-panel__compact-link-content > span {
  color: var(--rw-muted);
  font-size: 0.71rem;
  line-height: 1.42;
}

.navigation-panel__compact-link-arrow {
  display: grid;
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--rw-muted);
}

.navigation-panel__compact-link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--rw-transition-fast);
}

.navigation-panel__compact-link:hover .navigation-panel__compact-link-arrow,
.navigation-panel__compact-link:focus-visible
  .navigation-panel__compact-link-arrow,
.navigation-panel__compact-link[aria-current="page"]
  .navigation-panel__compact-link-arrow {
  color: var(--rw-red);
}

.navigation-panel__compact-link:hover .navigation-panel__compact-link-arrow svg,
.navigation-panel__compact-link:focus-visible
  .navigation-panel__compact-link-arrow
  svg {
  transform: translateX(3px);
}

/* ==========================================================================
     12. Mobile Header and App Dock
     ========================================================================== */

.mobile-header,
.mobile-app-dock {
  display: none;
}

.mobile-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--rw-mobile-header-height);
}

.mobile-header__call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 13px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: var(--rw-radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
}

.mobile-header__call:hover {
  background: var(--rw-red);
  color: var(--rw-white);
}

.mobile-header__call svg {
  width: 18px;
  height: 18px;
}

.mobile-app-dock {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  left: max(12px, env(safe-area-inset-left));
  z-index: var(--rw-z-dock);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  min-height: var(--rw-mobile-dock-height);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 25, 28, 0.1);
  border-radius: 22px;
  box-shadow: var(--rw-shadow-large);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-app-dock__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  min-width: 0;
  min-height: 50px;
  padding: 5px 3px;
  background: transparent;
  color: var(--rw-muted);
  border: 0;
  border-radius: 12px;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.mobile-app-dock__item:hover,
.mobile-app-dock__item.is-active {
  background: var(--rw-off-white);
  color: var(--rw-red);
}

.mobile-app-dock__item svg {
  width: 22px;
  height: 22px;
}

.mobile-app-dock__item--primary {
  position: relative;
  color: var(--rw-red);
  transform: translateY(-9px);
}

.mobile-app-dock__item--primary:hover {
  background: transparent;
  color: var(--rw-red-dark);
  transform: translateY(-11px);
}

.mobile-app-dock__primary-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--rw-red);
  color: var(--rw-white);
  border: 4px solid var(--rw-white);
  border-radius: 17px;
  box-shadow: 0 12px 25px rgba(204, 13, 16, 0.28);
}

.mobile-app-dock__primary-icon svg {
  width: 23px;
  height: 23px;
}

/* ==========================================================================
     13. Mobile App-Launcher Modal
     ========================================================================== */

.mobile-navigation-modal {
  position: fixed;
  inset: 0;
  z-index: var(--rw-z-modal);
  display: grid;
  align-items: end;
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
}

.mobile-navigation-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(18, 20, 23, 0.58);
  border: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: default;
}

.mobile-navigation-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(100%, 760px);
  max-height: calc(100dvh - 36px - env(safe-area-inset-bottom));
  margin-inline: auto;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  box-shadow: var(--rw-shadow-large);
  animation: rw-modal-enter var(--rw-transition-slow) both;
}

@keyframes rw-modal-enter {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
  }

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

.mobile-navigation-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--rw-border);
}

.mobile-navigation-modal__header .site-branding {
  max-width: 190px;
}

.mobile-navigation-modal__header .site-branding__logo {
  max-height: 42px;
}

.mobile-navigation-modal__close {
  display: grid;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.mobile-navigation-modal__close:hover {
  background: var(--rw-red);
  color: var(--rw-white);
  transform: rotate(4deg);
}

.mobile-navigation-modal__close svg {
  width: 20px;
  height: 20px;
}

.mobile-navigation-modal__content {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(24px, 5vw, 40px) clamp(18px, 5vw, 36px) 42px;
  scrollbar-width: thin;
  scrollbar-color: var(--rw-border) transparent;
}

.mobile-navigation-modal__intro {
  margin-bottom: 35px;
}

.mobile-navigation-modal__eyebrow {
  margin-bottom: 8px;
  color: var(--rw-red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-navigation-modal__intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 6vw, 2.9rem);
}

.mobile-navigation-section {
  padding-top: 31px;
  margin-top: 31px;
  border-top: 1px solid var(--rw-border);
}

.mobile-navigation-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.mobile-navigation-section__title {
  margin-bottom: 18px;
  color: var(--rw-muted);
  font-family: var(--rw-font-body);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mobile-launcher-category + .mobile-launcher-category {
  padding-top: 29px;
  margin-top: 29px;
  border-top: 1px dashed var(--rw-border);
}

.mobile-launcher-category__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.mobile-launcher-category__icon {
  display: grid;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-radius: 11px;
}

.mobile-launcher-category__icon svg {
  width: 21px;
  height: 21px;
}

.mobile-launcher-category__heading h4 {
  margin: 0;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mobile-launcher-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.mobile-launcher-grid--standalone {
  margin-top: 29px;
}

.mobile-launcher-tile {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 82px;
  padding: 13px;
  overflow: hidden;
  background: var(--rw-off-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(23, 25, 28, 0.025);
}

.mobile-launcher-tile:hover,
.mobile-launcher-tile.is-active,
.mobile-launcher-tile[aria-current="page"] {
  background: var(--rw-white);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.35);
  box-shadow: var(--rw-shadow-small);
  transform: translateY(-2px);
}

.mobile-launcher-tile--overview {
  grid-column: 1 / -1;
  min-height: 91px;
  padding: 15px;
  background: linear-gradient(135deg, var(--rw-white), var(--rw-off-white));
  border-color: rgba(204, 13, 16, 0.22);
}

.mobile-launcher-tile--overview::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--rw-red);
  content: "";
}

.mobile-launcher-tile--accent {
  background: var(--rw-red);
  color: var(--rw-white);
  border-color: var(--rw-red);
}

.mobile-launcher-tile--accent:hover {
  background: var(--rw-red-dark);
  color: var(--rw-white);
  border-color: var(--rw-red-dark);
}

.mobile-launcher-tile--phone {
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-color: var(--rw-charcoal);
}

.mobile-launcher-tile--phone:hover {
  background: var(--rw-charcoal-soft);
  color: var(--rw-white);
  border-color: var(--rw-charcoal-soft);
}

.mobile-launcher-tile__icon {
  display: grid;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid rgba(23, 25, 28, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(23, 25, 28, 0.06);
}

.mobile-launcher-tile__icon svg {
  width: 22px;
  height: 22px;
}

.mobile-launcher-tile--overview .mobile-launcher-tile__icon {
  width: 48px;
  height: 48px;
  background: var(--rw-red);
  color: var(--rw-white);
  border-color: var(--rw-red);
}

.mobile-launcher-tile--accent .mobile-launcher-tile__icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--rw-white);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.mobile-launcher-tile--phone .mobile-launcher-tile__icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--rw-yellow);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.mobile-launcher-tile__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.mobile-launcher-tile__content strong {
  color: inherit;
  font-family: var(--rw-font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.mobile-launcher-tile--overview .mobile-launcher-tile__content strong {
  font-size: 0.9rem;
}

.mobile-launcher-tile__content small {
  color: var(--rw-muted);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.38;
}

.mobile-launcher-tile--accent .mobile-launcher-tile__content small,
.mobile-launcher-tile--phone .mobile-launcher-tile__content small {
  color: rgba(255, 255, 255, 0.66);
}

.mobile-launcher-tile__arrow {
  display: grid;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--rw-red);
}

.mobile-launcher-tile__arrow svg {
  width: 17px;
  height: 17px;
}

.mobile-launcher-tile--accent .mobile-launcher-tile__arrow,
.mobile-launcher-tile--phone .mobile-launcher-tile__arrow {
  color: var(--rw-white);
}

.mobile-launcher-tile:hover .mobile-launcher-tile__arrow {
  transform: translateX(3px);
}

.mobile-navigation-modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  background: var(--rw-off-white);
  border-top: 1px solid var(--rw-border);
  color: var(--rw-muted);
  font-size: 0.75rem;
  font-weight: 750;
}

.mobile-navigation-modal__footer a:hover {
  color: var(--rw-red);
}

/* ==========================================================================
     14. Footer Conversion Section
     ========================================================================== */

.site-footer {
  position: relative;
  background: var(--rw-charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.footer-conversion {
  position: relative;
  overflow: hidden;
  background: var(--rw-charcoal-soft);
  color: var(--rw-white);
  border-bottom: 1px solid var(--rw-border-dark);
}

.footer-conversion::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}

.footer-conversion__inner {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.5fr)
    auto;
  align-items: center;
  gap: 52px;
  padding-block: clamp(54px, 7vw, 82px);
}

.footer-conversion__content {
  max-width: 790px;
}

.footer-conversion__eyebrow {
  margin-bottom: 14px;
  color: var(--rw-yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-conversion h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--rw-white);
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.footer-conversion p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
}

.footer-conversion__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

/* ==========================================================================
     15. Main Footer
     ========================================================================== */

.site-footer__main {
  padding-block: clamp(64px, 8vw, 104px);
}

.site-footer__grid {
  display: grid;
  grid-template-columns:
    minmax(240px, 1.3fr)
    minmax(160px, 0.8fr)
    minmax(160px, 0.8fr)
    minmax(240px, 1.15fr);
  gap: clamp(34px, 5vw, 72px);
}

.site-footer__brand {
  max-width: 360px;
}

.site-footer__description {
  margin: 25px 0 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.91rem;
  line-height: 1.75;
}

.site-footer__trust {
  display: grid;
  gap: 7px;
  padding-left: 15px;
  margin-bottom: 24px;
  border-left: 3px solid var(--rw-yellow);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer__email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-white);
  font-size: 0.83rem;
  font-weight: 750;
}

.site-footer__email:hover {
  color: var(--rw-yellow);
}

.site-footer__email svg {
  width: 19px;
  height: 19px;
  color: var(--rw-yellow);
}

.site-footer__social {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.site-footer__social a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: var(--rw-white);
  border: 1px solid var(--rw-border-dark);
  border-radius: 50%;
}

.site-footer__social a:hover {
  background: var(--rw-red);
  border-color: var(--rw-red);
}

.site-footer__social svg {
  width: 19px;
  height: 19px;
}

.site-footer__heading {
  margin-bottom: 20px;
  color: var(--rw-white);
  font-family: var(--rw-font-body);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer__heading--secondary {
  margin-top: 35px;
}

.site-footer__links {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__links a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

.site-footer__links a:hover {
  color: var(--rw-yellow);
  transform: translateX(3px);
}

.site-footer__locations {
  display: grid;
  align-content: start;
}

.site-footer__location {
  padding: 0 0 23px;
  margin-bottom: 23px;
  border-bottom: 1px solid var(--rw-border-dark);
}

.site-footer__location h3 {
  margin-bottom: 10px;
  color: var(--rw-white);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.site-footer__location h3 a:hover {
  color: var(--rw-yellow);
}

.site-footer__location address {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.81rem;
  font-style: normal;
  line-height: 1.55;
}

.site-footer__phone {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--rw-white);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer__phone:hover {
  color: var(--rw-yellow);
}

.site-footer__hours {
  display: grid;
  gap: 3px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.4;
}

.site-footer__service-area {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--rw-border-dark);
  border-radius: var(--rw-radius-small);
}

.site-footer__service-area:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(241, 210, 0, 0.42);
}

.site-footer__service-area strong {
  color: var(--rw-white);
  font-size: 0.82rem;
}

.site-footer__service-area span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

/* ==========================================================================
     16. Footer Bottom
     ========================================================================== */

.site-footer__bottom {
  background: #101215;
  border-top: 1px solid var(--rw-border-dark);
}

.site-footer__bottom-inner {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding-block: 17px;
}

.site-footer__copyright,
.site-footer__credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  line-height: 1.45;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.site-footer__legal a,
.site-footer__credit a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
}

.site-footer__legal a:hover,
.site-footer__credit a:hover {
  color: var(--rw-yellow);
}

/* ==========================================================================
     17. Controlled Fallback Page
     ========================================================================== */

.site-main--fallback {
  display: grid;
  min-height: 70vh;
  place-items: center;
  background: var(--rw-off-white);
}

.fallback-page {
  width: 100%;
  padding-block: var(--rw-section-space);
  text-align: center;
}

.fallback-page__eyebrow {
  margin-bottom: 14px;
  color: var(--rw-red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fallback-page__title {
  margin-bottom: 20px;
}

.fallback-page__description {
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 30px;
  color: var(--rw-text);
}

/* ==========================================================================
     18. Responsive Behavior
     ========================================================================== */

/* Compact desktop hero mode for common laptop-height viewports. */
@media (min-width: 1024px) and (max-height: 980px) {
  :root {
    --rw-hero-grid-gap: clamp(28px, 3.4vw, 52px);
    --rw-hero-padding-block: 28px 34px;
    --rw-hero-title-size: clamp(2.35rem, 3.1vw, 3.55rem);
    --rw-hero-title-margin: 14px;
    --rw-hero-description-margin: 16px;
    --rw-hero-description-size: clamp(0.98rem, 0.98vw, 1.04rem);
    --rw-hero-description-line-height: 1.56;
    --rw-hero-actions-margin: 17px;
    --rw-hero-breadcrumb-margin: 12px;
    --rw-hero-highlights-gap: 7px 15px;
    --rw-hero-media-bottom-space: 46px;
    --rw-type-section-title: clamp(1.82rem, 2.35vw, 2.55rem);
    --rw-type-feature-title: clamp(1.95rem, 2.6vw, 2.8rem);
    --rw-type-lead: clamp(0.98rem, 0.98vw, 1.04rem);
    --rw-type-body: clamp(0.88rem, 0.88vw, 0.94rem);
  }
}

@media (max-width: 1199px) {
  .desktop-header__inner {
    gap: 20px;
  }

  .desktop-navigation {
    gap: 8px;
  }

  .desktop-navigation__link {
    font-size: 0.76rem;
  }

  .button--header {
    padding-inline: 15px;
    font-size: 0.78rem;
  }
  .navigation-panel--mega {
    width: min(calc(100vw - 24px), 1240px);
  }

  .services-mega {
    grid-template-columns:
      minmax(205px, 0.72fr)
      minmax(0, 2fr)
      minmax(215px, 0.76fr);
    gap: 17px;
    padding: 18px;
  }

  .services-mega__sidebar {
    padding-right: 16px;
  }

  .services-mega__tab {
    gap: 9px;
    min-height: 72px;
    padding-inline: 10px;
  }

  .services-mega__tab-icon {
    width: 36px;
    height: 36px;
  }

  .services-mega__panel-header {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .services-mega__card {
    gap: 9px;
    min-height: 92px;
    padding: 11px;
  }

  .services-mega__card-icon {
    width: 38px;
    height: 38px;
  }

  .services-mega__explore {
    padding-inline: 12px;
  }

  .services-mega__explore-link {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .services-mega__explore-arrow {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns:
      minmax(250px, 1.2fr)
      repeat(2, minmax(160px, 0.8fr));
  }

  .site-footer__locations {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  .site-footer__locations .site-footer__heading {
    grid-column: 1 / -1;
  }

  .site-footer__location {
    margin-bottom: 0;
  }
}

@media (max-width: 1023px) {
  :root {
    --rw-hero-grid-gap: clamp(38px, 5vw, 50px);
    --rw-hero-padding-block: clamp(48px, 7vw, 70px);
    --rw-hero-title-size: clamp(2.45rem, 6.8vw, 3.85rem);
    --rw-hero-title-margin: 18px;
    --rw-hero-description-margin: 20px;
    --rw-hero-description-size: 1rem;
    --rw-hero-description-line-height: 1.6;
    --rw-hero-actions-margin: 21px;
    --rw-hero-breadcrumb-margin: 15px;
    --rw-hero-highlights-gap: 9px 18px;
    --rw-hero-media-bottom-space: 50px;
  }

  html {
    scroll-padding-top: calc(var(--rw-mobile-header-height) + 18px);
  }

  body {
    padding-bottom: calc(
      var(--rw-mobile-dock-height) + 28px + env(safe-area-inset-bottom)
    );
  }

  .utility-bar,
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .mobile-app-dock {
    display: grid;
  }

  .site-header {
    min-height: var(--rw-mobile-header-height);
  }

  .footer-conversion__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-conversion__actions {
    flex-direction: row;
    min-width: 0;
  }

  .site-footer__bottom {
    margin-bottom: calc(
      var(--rw-mobile-dock-height) + 14px + env(safe-area-inset-bottom)
    );
  }

  .site-footer__bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    text-align: center;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  :root {
    --rw-page-padding: 20px;
    --rw-hero-grid-gap: 38px;
    --rw-hero-padding-block: 42px 52px;
    --rw-hero-title-size: clamp(2.2rem, 9.2vw, 3.2rem);
    --rw-hero-title-margin: 17px;
    --rw-hero-description-margin: 20px;
    --rw-hero-description-size: 0.96rem;
    --rw-hero-description-line-height: 1.58;
    --rw-hero-actions-margin: 22px;
    --rw-hero-breadcrumb-margin: 14px;
    --rw-hero-highlights-gap: 10px;
    --rw-hero-media-bottom-space: 42px;
    --rw-type-section-title: clamp(1.8rem, 7.2vw, 2.45rem);
    --rw-type-feature-title: clamp(1.95rem, 7.8vw, 2.65rem);
    --rw-type-filter-title: clamp(1.42rem, 6vw, 1.9rem);
    --rw-type-card-title: clamp(1.18rem, 5vw, 1.48rem);
    --rw-type-body: 0.94rem;
    --rw-type-card-body: 0.86rem;
  }

  .site-branding__logo {
    max-width: 175px;
    max-height: 46px;
  }

  .footer-conversion__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-conversion__actions .button {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 28px;
  }

  .site-footer__brand,
  .site-footer__locations {
    grid-column: 1 / -1;
  }

  .site-footer__locations {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__service-area {
    grid-column: 1 / -1;
  }

  .mobile-navigation-modal {
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  }

  .mobile-navigation-modal__dialog {
    max-height: calc(100dvh - 20px - env(safe-area-inset-bottom));
    border-radius: 24px;
  }

  .mobile-navigation-modal__content {
    padding: 25px 18px 36px;
  }
}

@media (max-width: 520px) {
  .mobile-header__call {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
  }

  .mobile-header__call span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .mobile-app-dock {
    right: 8px;
    left: 8px;
    padding-inline: 5px;
    border-radius: 19px;
  }

  .mobile-app-dock__item {
    font-size: 0.58rem;
  }

  .mobile-app-dock__item svg {
    width: 20px;
    height: 20px;
  }

  .mobile-app-dock__primary-icon {
    width: 46px;
    height: 46px;
  }

  .mobile-navigation-modal__header {
    padding: 14px 15px;
  }

  .mobile-navigation-modal__header .site-branding {
    max-width: 165px;
  }

  .mobile-navigation-modal__intro {
    margin-bottom: 30px;
  }

  .mobile-navigation-section {
    padding-top: 27px;
    margin-top: 27px;
  }

  .mobile-launcher-category + .mobile-launcher-category {
    padding-top: 25px;
    margin-top: 25px;
  }

  .mobile-launcher-grid {
    gap: 8px;
  }

  .mobile-launcher-tile {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    align-content: center;
    min-height: 74px;
    padding: 11px 10px;
  }

  .mobile-launcher-tile--overview {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 84px;
    padding: 13px;
  }

  .mobile-launcher-tile--phone {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .mobile-launcher-tile__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .mobile-launcher-tile__icon svg {
    width: 19px;
    height: 19px;
  }

  .mobile-launcher-tile--overview .mobile-launcher-tile__icon {
    width: 44px;
    height: 44px;
  }

  .mobile-launcher-tile__arrow {
    position: static;
    align-self: center;
    width: 22px;
    height: 22px;
  }

  .mobile-launcher-tile__arrow svg {
    width: 16px;
    height: 16px;
  }

  .mobile-launcher-tile__content strong {
    font-size: 0.7rem;
  }

  .mobile-launcher-tile--overview .mobile-launcher-tile__content strong {
    font-size: 0.82rem;
  }

  .mobile-launcher-tile__content small {
    font-size: 0.61rem;
  }

  .site-footer__grid,
  .site-footer__locations {
    grid-template-columns: 1fr;
  }

  .site-footer__column,
  .site-footer__locations,
  .site-footer__brand,
  .site-footer__service-area {
    grid-column: auto;
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: center;
  }

  .rogers-media-placeholder__content {
    gap: 11px;
    padding: 22px 18px;
  }

  .rogers-media-placeholder__group p {
    font-size: 0.78rem;
  }

  /* Mobile launcher: compact cards without descriptions */
  .mobile-navigation-section
    .mobile-launcher-tile:not(.mobile-launcher-tile--phone)
    .mobile-launcher-tile__content
    small {
    display: none;
  }

  .mobile-navigation-section .mobile-launcher-tile {
    min-height: 68px;
  }

  .mobile-navigation-section .mobile-launcher-tile--overview {
    min-height: 74px;
  }

  .mobile-navigation-section .mobile-launcher-tile__content {
    gap: 0;
  }

  .mobile-navigation-section .mobile-launcher-tile__content strong {
    line-height: 1.2;
  }
}

/* ==========================================================================
     19. Home Shared Components
     ========================================================================== */

.home-page {
  background: var(--rw-white);
}

.home-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
  margin-bottom: clamp(42px, 6vw, 76px);
}

.home-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.home-section-heading__side {
  max-width: 500px;
  justify-self: end;
}

.home-section-heading__side p {
  margin-bottom: 20px;
  color: var(--rw-text);
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  line-height: 1.75;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rw-red);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.3;
}

.home-text-link svg {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  transition: transform var(--rw-transition-fast);
}

.home-text-link:hover {
  color: var(--rw-red-dark);
}

.home-text-link:hover svg {
  transform: translateX(4px);
}

.home-text-link--light {
  color: var(--rw-white);
}

.home-text-link--light:hover {
  color: var(--rw-yellow);
}

/* ==========================================================================
     20. Home Hero
     ========================================================================== */

.home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.home-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.home-hero::after {
  position: absolute;
  right: -160px;
  bottom: -230px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.1), transparent 67%);
  content: "";
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.04fr)
    minmax(390px, 0.76fr);
  align-items: center;
  gap: clamp(40px, 5vw, 84px);
  min-height: auto;
  padding-block: clamp(44px, 5.4vh, 68px);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 760px;
}

.home-hero__eyebrow {
  margin-bottom: 17px;
}

.home-hero__title {
  width: 100%;
  max-width: 13.5ch;
  margin-bottom: 21px;
  font-size: clamp(3rem, 4.15vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.home-hero__description {
  max-width: 650px;
  margin-bottom: 25px;
  color: var(--rw-text);
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.62;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 11px;
  width: 100%;
  margin-bottom: 25px;
}

.home-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.35;
}

.home-hero__highlights svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.home-hero__visual {
  position: relative;
  width: min(100%, 525px);
  justify-self: end;
  padding: 0 clamp(28px, 3vw, 48px) clamp(48px, 5vw, 68px) 0;
}

.home-hero__image {
  position: relative;
  overflow: hidden;
  background: var(--rw-warm-gray);
  border-radius: 3px 3px 42px 3px;
  box-shadow: var(--rw-shadow-large);
}

.home-hero__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.12), transparent 38%);
  content: "";
  pointer-events: none;
}

.home-hero__primary-image {
  aspect-ratio: 4 / 5;
  border-radius: inherit;
}

.home-hero__primary-image .rogers-media-placeholder__content {
  gap: 9px;
  padding: clamp(20px, 2.4vw, 31px);
}

.home-hero__primary-image .rogers-media-placeholder__type {
  padding: 6px 8px;
  font-size: 0.58rem;
}

.home-hero__primary-image .rogers-media-placeholder__label {
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.12;
}

.home-hero__primary-image .rogers-media-placeholder__path {
  padding: 6px 8px;
  font-size: 0.63rem;
  line-height: 1.35;
}

.home-hero__primary-image .rogers-media-placeholder__group span {
  margin-bottom: 3px;
  font-size: 0.57rem;
}

.home-hero__primary-image .rogers-media-placeholder__group p {
  font-size: clamp(0.68rem, 0.8vw, 0.76rem);
  line-height: 1.42;
}

.home-hero__primary-image .rogers-media-placeholder__specs {
  gap: 5px 11px;
  font-size: 0.62rem;
}

.home-hero__detail-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(135px, 11vw, 178px);
  overflow: hidden;
  background: var(--rw-white);
  border: 8px solid var(--rw-white);
  border-radius: 3px 3px 25px 3px;
  box-shadow: var(--rw-shadow-medium);
  animation: rw-soft-float 5.4s ease-in-out infinite;
}

.home-hero__secondary-image {
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.home-hero__experience-card {
  position: absolute;
  bottom: clamp(62px, 6vw, 85px);
  left: clamp(-42px, -3vw, -22px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: min(220px, 48%);
  padding: 17px 19px;
  background: rgba(23, 25, 28, 0.94);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 12px 12px 2px;
  box-shadow: var(--rw-shadow-medium);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: rw-soft-float 6.5s ease-in-out 700ms infinite;
}

.home-hero__experience-card strong {
  font-family: var(--rw-font-heading);
  font-size: clamp(0.98rem, 1.3vw, 1.2rem);
  line-height: 1.2;
}

.home-hero__experience-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.45;
}

/* ==========================================================================
     21. Home Trust Strip
     ========================================================================== */

.home-trust-strip {
  position: relative;
  z-index: 2;
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.home-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-trust-strip__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 116px;
  padding: 24px clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--rw-border-dark);
}

.home-trust-strip__item::after {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 2px;
  background: var(--rw-yellow);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity var(--rw-transition),
    transform var(--rw-transition);
}

.home-trust-strip__item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-trust-strip__item:first-child {
  padding-left: 0;
}

.home-trust-strip__item:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-trust-strip__item strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.2;
}

.home-trust-strip__item span {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  line-height: 1.45;
}

/* ==========================================================================
     22. Home Products and Services
     ========================================================================== */

.home-services {
  position: relative;
  background: var(--rw-white);
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 34px);
}

.home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 5px 18px rgba(23, 25, 28, 0.045);
  transition:
    transform var(--rw-transition),
    border-color var(--rw-transition),
    box-shadow var(--rw-transition);
}

.home-service-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-7px);
}

.home-service-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.home-service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.25), transparent 44%);
  content: "";
  opacity: 0.45;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.home-service-card:hover .home-service-card__media::after {
  opacity: 0.75;
}

.home-service-card:hover .home-service-card__number {
  transform: rotate(7deg) scale(1.07);
}

.home-service-card__image {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  transition: transform var(--rw-transition-slow);
}

.home-service-card:hover .home-service-card__image {
  transform: scale(1.035);
}

.home-service-card__content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.home-service-card__number {
  transition: transform var(--rw-transition);
  position: absolute;
  top: -25px;
  right: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0;
  place-items: center;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border: 6px solid var(--rw-white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.home-service-card h3 {
  padding-right: 48px;
  margin-bottom: 15px;
  font-size: clamp(1.48rem, 2.3vw, 2rem);
}

.home-service-card h3 a:hover {
  color: var(--rw-red);
}

.home-service-card__content > p:not(.home-service-card__number) {
  margin-bottom: 21px;
  color: var(--rw-text);
  font-size: 0.87rem;
  line-height: 1.68;
}

.home-service-card__links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
}

.home-service-card__links a {
  position: relative;
  display: inline-flex;
  padding-left: 16px;
  color: var(--rw-text);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}

.home-service-card__links a::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--rw-red);
  content: "";
}

.home-service-card__links a:hover {
  color: var(--rw-red);
  transform: translateX(3px);
}

.home-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.8rem;
  font-weight: 850;
}

.home-service-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.home-service-card__link:hover {
  color: var(--rw-red-dark);
}

.home-service-card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     23. Home Manufacturing and Custom Capability
     ========================================================================== */

.home-manufacturing {
  position: relative;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.home-manufacturing::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.home-manufacturing::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.home-manufacturing__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
}

.home-manufacturing__media {
  position: relative;
  padding: 0 0 clamp(40px, 5vw, 68px) clamp(26px, 3vw, 46px);
}

.home-manufacturing__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 58px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.home-manufacturing__image {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-large);
}

.home-manufacturing__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 245px;
  padding: 20px 23px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 18px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.home-manufacturing__badge span {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-manufacturing__badge strong {
  font-family: var(--rw-font-heading);
  font-size: 1.12rem;
  line-height: 1.2;
}

.home-manufacturing__content h2 {
  margin-bottom: 25px;
  color: var(--rw-white);
}

.home-manufacturing__content .lead {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.68);
}

.home-manufacturing__features {
  display: grid;
  margin-bottom: 36px;
  border-top: 1px solid var(--rw-border-dark);
}

.home-manufacturing__feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  padding-block: 22px;
  border-bottom: 1px solid var(--rw-border-dark);
}

.home-manufacturing__feature > span {
  padding-top: 3px;
  color: var(--rw-yellow);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 800;
}

.home-manufacturing__feature h3 {
  margin-bottom: 8px;
  color: var(--rw-white);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.home-manufacturing__feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  line-height: 1.6;
}

.home-manufacturing__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 26px;
}

/* ==========================================================================
     24. Home Experience
     ========================================================================== */

.home-experience {
  position: relative;
  background: var(--rw-white);
}

.home-experience__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.home-experience__content h2 {
  max-width: 690px;
  margin-bottom: 24px;
}

.home-experience__content .lead {
  margin-bottom: 37px;
}

.home-experience__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 36px;
  background: var(--rw-border);
  border: 1px solid var(--rw-border);
}

.home-experience__fact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 125px;
  padding: 25px 22px;
  background: var(--rw-white);
  transition:
    transform var(--rw-transition),
    box-shadow var(--rw-transition);
}

.home-experience__fact:hover {
  position: relative;
  z-index: 1;
  box-shadow: var(--rw-shadow-small);
  transform: translateY(-4px);
}

.home-experience__fact strong {
  color: var(--rw-red);
  font-family: var(--rw-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.home-experience__fact span {
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
}

.home-experience__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 19px 27px;
}

.home-experience__media {
  position: relative;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 3vw, 42px) 0 0;
}

.home-experience__media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 68%;
  background: var(--rw-yellow-soft);
  content: "";
}

.home-experience__image {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 30px 2px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.home-experience__caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: min(330px, 76%);
  padding: 18px 22px;
  margin: -34px 0 0 auto;
  background: var(--rw-white);
  border-left: 4px solid var(--rw-red);
  box-shadow: var(--rw-shadow-small);
}

.home-experience__caption span {
  color: var(--rw-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-experience__caption strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.3;
}

/* ==========================================================================
     25. Home Featured Projects
     ========================================================================== */

.home-projects {
  position: relative;
}

.home-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.home-project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.05);
  transition:
    transform var(--rw-transition),
    border-color var(--rw-transition),
    box-shadow var(--rw-transition);
}

.home-project-card:hover {
  border-color: rgba(204, 13, 16, 0.25);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.home-project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.home-project-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.24), transparent 46%);
  content: "";
  opacity: 0.3;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.home-project-card:hover .home-project-card__media::after {
  opacity: 0.6;
}

.home-project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--rw-transition-slow);
}

.home-project-card:hover .home-project-card__image {
  transform: scale(1.04);
}

.home-project-card__placeholder {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.home-project-card__placeholder .rogers-media-placeholder__content {
  gap: 9px;
  padding: 22px;
}

.home-project-card__placeholder .rogers-media-placeholder__label {
  font-size: 1.05rem;
}

.home-project-card__placeholder .rogers-media-placeholder__group p {
  font-size: 0.72rem;
}

.home-project-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 31px);
}

.home-project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-bottom: 15px;
  color: var(--rw-red);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.085em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-project-card__meta span + span {
  position: relative;
}

.home-project-card__meta span + span::before {
  position: absolute;
  top: 50%;
  left: -9px;
  width: 3px;
  height: 3px;
  background: var(--rw-yellow);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.home-project-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.home-project-card h3 a:hover {
  color: var(--rw-red);
}

.home-project-card__content > p {
  margin-bottom: 22px;
  color: var(--rw-text);
  font-size: 0.82rem;
  line-height: 1.65;
}

.home-project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.78rem;
  font-weight: 850;
}

.home-project-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.home-project-card__link:hover {
  color: var(--rw-red-dark);
}

.home-project-card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     26. Home Contractors and Commercial
     ========================================================================== */

.home-commercial {
  position: relative;
  overflow: hidden;
  background: var(--rw-white);
}

.home-commercial__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.home-commercial__media {
  position: relative;
  padding: 0 0 clamp(30px, 4vw, 54px) clamp(30px, 4vw, 54px);
}

.home-commercial__media::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 76%;
  background: var(--rw-red-soft);
  content: "";
}

.home-commercial__media::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 115px;
  background: var(--rw-red);
  content: "";
}

.home-commercial__image {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px 30px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.home-commercial__content h2 {
  margin-bottom: 23px;
}

.home-commercial__content > p:not(.eyebrow) {
  margin-bottom: 29px;
  color: var(--rw-text);
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  line-height: 1.75;
}

.home-commercial__list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 33px;
  list-style: none;
}

.home-commercial__list li {
  position: relative;
  padding-left: 28px;
  color: var(--rw-ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.home-commercial__list li::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(
    135deg,
    var(--rw-red) 0 50%,
    var(--rw-yellow) 50% 100%
  );
  border-radius: 4px;
  content: "";
}

/* ==========================================================================
     27. Home Final Estimate CTA
     ========================================================================== */

.home-estimate {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.home-estimate__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(300px, 0.72fr)
    minmax(0, 1.28fr);
  min-height: 590px;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 36px 3px;
  box-shadow: var(--rw-shadow-large);
}

.home-estimate__panel::after {
  position: absolute;
  right: -150px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}

.home-estimate__media {
  position: relative;
  z-index: 1;
  min-height: 100%;
  overflow: hidden;
  background: var(--rw-charcoal-soft);
}

.home-estimate__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 56%,
    rgba(23, 25, 28, 0.55)
  );
  content: "";
  pointer-events: none;
}

.home-estimate__image {
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.home-estimate__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 100px);
}

.home-estimate__eyebrow {
  margin-bottom: 16px;
  color: var(--rw-yellow);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-estimate h2 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--rw-white);
  font-size: clamp(2.25rem, 4.6vw, 4.25rem);
}

.home-estimate__content > p {
  max-width: 700px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.home-estimate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.home-estimate__locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 590px;
  border-top: 1px solid var(--rw-border-dark);
  border-bottom: 1px solid var(--rw-border-dark);
}

.home-estimate__locations a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px 18px 0;
}

.home-estimate__locations a + a {
  padding-left: 25px;
  border-left: 1px solid var(--rw-border-dark);
}

.home-estimate__locations a:hover {
  color: var(--rw-yellow);
}

.home-estimate__locations span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-estimate__locations strong {
  color: var(--rw-white);
  font-size: 0.93rem;
  line-height: 1.3;
}

/* ==========================================================================
     28. Home Responsive — Desktop
     ========================================================================== */

@media (min-width: 1440px) {
  .home-hero__grid {
    grid-template-columns:
      minmax(0, 1.04fr)
      minmax(420px, 0.76fr);
  }

  .home-hero__visual {
    width: min(100%, 560px);
  }
}

@media (min-width: 1024px) and (max-width: 1365px) {
  .home-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
    gap: clamp(32px, 4vw, 52px);
    padding-block: clamp(40px, 4.5vh, 58px);
  }

  .home-hero__title {
    max-width: 14ch;
    font-size: clamp(2.85rem, 4.5vw, 4.15rem);
  }

  .home-hero__description {
    margin-bottom: 22px;
    font-size: 0.94rem;
  }

  .home-hero__actions {
    margin-bottom: 22px;
  }

  .home-hero__actions .button {
    padding-inline: 16px;
    font-size: 0.76rem;
  }

  .home-hero__visual {
    width: min(100%, 465px);
  }
}

@media (min-width: 1024px) and (max-height: 900px) {
  .home-hero__grid {
    gap: clamp(32px, 4vw, 58px);
    padding-block: 34px 42px;
  }

  .home-hero__eyebrow {
    margin-bottom: 13px;
  }

  .home-hero__title {
    max-width: 14ch;
    margin-bottom: 17px;
    font-size: clamp(2.8rem, 4vw, 4.05rem);
    line-height: 0.97;
  }

  .home-hero__description {
    margin-bottom: 19px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .home-hero__actions {
    margin-bottom: 19px;
  }

  .home-hero__highlights {
    gap: 7px 18px;
  }

  .home-hero__visual {
    width: min(100%, 440px);
    padding-right: 36px;
    padding-bottom: 52px;
  }

  .home-hero__detail-image {
    width: 138px;
  }

  .home-hero__experience-card {
    bottom: 58px;
    width: min(205px, 50%);
    padding: 14px 16px;
  }

  .home-hero__experience-card strong {
    font-size: 0.92rem;
  }

  .home-hero__experience-card span {
    font-size: 0.65rem;
  }
}

@media (max-width: 1199px) {
  .home-hero__experience-card {
    left: -15px;
  }

  .home-services__grid,
  .home-projects__grid {
    gap: 20px;
  }

  .home-service-card__content,
  .home-project-card__content {
    padding: 24px;
  }

  .home-manufacturing__grid,
  .home-experience__grid,
  .home-commercial__grid {
    gap: 60px;
  }
}

/* ==========================================================================
     29. Home Responsive — Tablet
     ========================================================================== */

@media (max-width: 1023px) {
  .hero-title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .home-hero__title {
    max-width: 16ch;
    font-size: clamp(2.8rem, 7.6vw, 4.5rem);
  }

  .hero-actions .button,
  .home-hero__actions .button {
    flex: 1 1 200px;
  }

  .home-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 57%,
      var(--rw-off-white) 57% 100%
    );
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: auto;
    padding-block: clamp(60px, 9vw, 92px);
  }

  .home-hero__content {
    max-width: 820px;
  }

  .home-hero__visual {
    width: min(100%, 700px);
    justify-self: center;
    padding-right: clamp(38px, 8vw, 76px);
  }

  .home-hero__image {
    border-radius: 3px 3px 34px 3px;
  }

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

  .home-trust-strip__item {
    padding-inline: 26px;
    border-bottom: 1px solid var(--rw-border-dark);
  }

  .home-trust-strip__item:nth-child(2) {
    border-right: 0;
  }

  .home-trust-strip__item:nth-child(3),
  .home-trust-strip__item:nth-child(4) {
    border-bottom: 0;
  }

  .home-trust-strip__item:first-child,
  .home-trust-strip__item:last-child {
    padding-inline: 26px;
  }

  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-section-heading__side {
    max-width: 660px;
    justify-self: start;
  }

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

  .home-service-card:last-child,
  .home-project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .home-service-card:last-child {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }

  .home-service-card:last-child .home-service-card__media {
    height: 100%;
    aspect-ratio: auto;
  }

  .home-manufacturing__grid,
  .home-experience__grid,
  .home-commercial__grid {
    grid-template-columns: 1fr;
  }

  .home-manufacturing__media {
    width: min(100%, 760px);
  }

  .home-manufacturing__content {
    max-width: 760px;
  }

  .home-experience__content {
    max-width: 780px;
  }

  .home-experience__media {
    width: min(100%, 760px);
    justify-self: end;
  }

  .home-commercial__media {
    width: min(100%, 850px);
  }

  .home-commercial__content {
    max-width: 750px;
  }

  .home-estimate__panel {
    grid-template-columns:
      minmax(240px, 0.68fr)
      minmax(0, 1.32fr);
    min-height: 560px;
  }

  .home-estimate__content {
    padding: clamp(42px, 6vw, 64px);
  }
}

/* ==========================================================================
     30. Home Responsive — Mobile
     ========================================================================== */

@media (max-width: 767px) {
  .home-hero::before {
    width: 55%;
  }

  .home-hero__grid {
    gap: 42px;
    padding-top: 50px;
  }

  .hero-title {
    max-width: 16ch;
    margin-bottom: var(--rw-hero-title-margin);
    font-size: var(--rw-hero-title-size);
    line-height: 1;
  }

  .home-hero__title {
    max-width: 15ch;
    margin-bottom: 22px;
    font-size: clamp(2.45rem, 10.8vw, 3.9rem);
    line-height: 1;
  }

  .home-hero__description {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .home-hero__actions .button {
    width: 100%;
  }

  .home-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .home-hero__visual {
    padding: 0 clamp(24px, 9vw, 52px) clamp(52px, 12vw, 75px) 0;
  }

  .home-hero__detail-image {
    width: clamp(125px, 35vw, 180px);
    border-width: 6px;
  }

  .home-hero__experience-card {
    bottom: clamp(58px, 14vw, 80px);
    left: -6px;
    width: min(220px, 65%);
    padding: 16px 17px;
  }

  .home-trust-strip__item {
    min-height: 105px;
  }

  .home-services__grid,
  .home-projects__grid {
    grid-template-columns: 1fr;
  }

  .home-service-card:last-child,
  .home-project-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .home-service-card:last-child {
    display: flex;
  }

  .home-service-card:last-child .home-service-card__media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .home-service-card__content {
    padding: 25px 22px 27px;
  }

  .home-manufacturing__grid {
    gap: 47px;
  }

  .home-manufacturing__media {
    padding: 0 0 40px 18px;
  }

  .home-manufacturing__badge {
    max-width: 205px;
    padding: 16px 18px;
  }

  .home-manufacturing__feature {
    gap: 14px;
  }

  .home-manufacturing__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-manufacturing__actions .button {
    width: 100%;
  }

  .home-experience__grid {
    gap: 45px;
  }

  .home-experience__facts {
    grid-template-columns: 1fr;
  }

  .home-experience__fact {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: auto;
    padding: 18px 20px;
  }

  .home-experience__fact strong {
    min-width: 65px;
  }

  .home-experience__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-experience__actions .button {
    width: 100%;
  }

  .home-experience__media {
    padding: 20px 20px 0 0;
  }

  .home-experience__caption {
    width: min(315px, 90%);
  }

  .home-project-card__content {
    padding: 24px 22px 27px;
  }

  .home-commercial__grid {
    gap: 45px;
  }

  .home-commercial__media {
    padding: 0 0 28px 22px;
  }

  .home-estimate {
    padding-bottom: var(--rw-section-space-small);
  }

  .home-estimate__panel {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 3px 3px 26px 3px;
  }

  .home-estimate__media {
    min-height: 380px;
    max-height: 520px;
  }

  .home-estimate__image {
    min-height: 380px;
    aspect-ratio: 4 / 5;
  }

  .home-estimate__media::after {
    background: linear-gradient(
      to bottom,
      transparent 55%,
      rgba(23, 25, 28, 0.55)
    );
  }

  .home-estimate__content {
    padding: 42px 24px 48px;
  }

  .home-estimate__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .home-estimate__actions .button {
    width: 100%;
  }

  .home-estimate__locations {
    grid-template-columns: 1fr;
  }

  .home-estimate__locations a {
    padding: 16px 0;
  }

  .home-estimate__locations a + a {
    padding-left: 0;
    border-top: 1px solid var(--rw-border-dark);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .home-trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .home-trust-strip__item {
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rw-border-dark);
  }

  .home-trust-strip__item:first-child,
  .home-trust-strip__item:last-child {
    padding-inline: 0;
  }

  .home-trust-strip__item:nth-child(3) {
    border-bottom: 1px solid var(--rw-border-dark);
  }

  .home-trust-strip__item:last-child {
    border-bottom: 0;
  }

  .home-hero__detail-image {
    width: 120px;
  }

  .home-hero__experience-card {
    width: min(195px, 66%);
  }

  .home-manufacturing__badge {
    right: -2px;
    max-width: 185px;
  }

  .home-commercial__list li {
    padding-left: 25px;
  }
}

/* ==========================================================================
     31. Reduced Motion Overrides
     ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js .rw-reveal,
  html.js .rw-reveal--left,
  html.js .rw-reveal--right,
  html.js .rw-reveal--scale {
    opacity: 1;
    transform: none;
  }

  .mobile-navigation-modal__dialog,
  .home-hero__detail-image,
  .home-hero__experience-card {
    animation: none;
  }

  .button:hover,
  .home-service-card:hover,
  .home-project-card:hover,
  .home-experience__fact:hover {
    transform: none;
  }

  .home-service-card:hover .home-service-card__image,
  .home-project-card:hover .home-project-card__image {
    transform: none;
  }
}

/* ==========================================================================
     32. Services Shared Components
     ========================================================================== */

.services-page {
  width: 100%;
  overflow: clip;
  background: var(--rw-white);
}

.services-section-heading,
.product-hub-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.services-section-heading h2,
.product-hub-section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: var(--rw-type-section-title);
}

.services-section-heading > p,
.product-hub-section-heading > p {
  max-width: 540px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: var(--rw-type-body);
  line-height: 1.75;
}

.services-section-heading--center,
.product-hub-section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.services-section-heading--center > p,
.product-hub-section-heading--center > p {
  max-width: 720px;
  justify-self: center;
}

.services-text-link,
.product-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-size: var(--rw-type-link);
  font-weight: 850;
  line-height: 1.35;
}

.services-text-link svg,
.product-hub-link svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.services-text-link:hover,
.product-hub-link:hover {
  color: var(--rw-red-dark);
}

.services-text-link:hover svg,
.product-hub-link:hover svg {
  transform: translateX(4px);
}

.services-text-link--light {
  color: var(--rw-white);
}

.services-text-link--light:hover {
  color: var(--rw-yellow);
}

/* ==========================================================================
     33. Services Hero
     ========================================================================== */

.services-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.services-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.services-hero::after {
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.services-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.services-hero__content {
  max-width: 760px;
}

.services-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.4;
}

.services-breadcrumbs a:hover {
  color: var(--rw-red);
}

.services-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.services-hero__eyebrow {
  margin-bottom: var(--rw-hero-breadcrumb-margin);
}

.services-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.services-hero__description {
  max-width: 670px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.services-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.services-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.services-hero__highlights li {
  position: relative;
  padding-left: 17px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.services-hero__highlights li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--rw-yellow);
  border: 2px solid var(--rw-red);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.services-hero__media {
  position: relative;
  width: min(100%, 540px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.services-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.services-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.services-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(310px, 74%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.services-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

/* ==========================================================================
     34. Service Pathways
     ========================================================================== */

.services-pathways {
  position: relative;
  background: var(--rw-white);
}

.services-pathways__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.service-path-card {
  display: flex;
  grid-column: span 2;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.service-path-card:nth-child(4),
.service-path-card:nth-child(5) {
  grid-column: span 3;
}

.service-path-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.service-path-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.service-path-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.24), transparent 48%);
  content: "";
  opacity: 0.3;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.service-path-card:hover .service-path-card__media::after {
  opacity: 0.58;
}

.service-path-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  transition: transform 560ms var(--rw-ease-out);
}

.service-path-card:hover .service-path-card__image {
  transform: scale(1.04);
}

.service-path-card__content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 2.7vw, 34px);
}

.service-path-card__number {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.service-path-card h3 {
  margin-bottom: 13px;
  font-size: var(--rw-type-card-title);
  line-height: 1.18;
}

.service-path-card h3 a:hover {
  color: var(--rw-red);
}

.service-path-card__content > p {
  margin-bottom: 23px;
  color: var(--rw-text);
  font-size: var(--rw-type-card-body);
  line-height: 1.68;
}

.service-path-card .services-text-link {
  margin-top: auto;
}

/* ==========================================================================
     35. Service Detail Sections
     ========================================================================== */

.services-detail {
  position: relative;
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.services-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.services-detail__grid--reverse {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.services-detail__content {
  max-width: 700px;
}

.services-detail__content h2 {
  margin-bottom: 22px;
  font-size: var(--rw-type-feature-title);
}

.services-detail__content > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--rw-text);
  font-size: var(--rw-type-lead);
  line-height: 1.75;
}

.services-detail__media {
  position: relative;
  padding: 0 0 clamp(30px, 4vw, 50px) clamp(24px, 3vw, 42px);
}

.services-detail__media::before {
  position: absolute;
  right: clamp(26px, 4vw, 48px);
  bottom: 0;
  left: 0;
  height: 72%;
  background: var(--rw-red-soft);
  content: "";
}

.services-detail__image {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 2px 28px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.services-detail__list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 31px;
  list-style: none;
}

.services-detail__list li {
  position: relative;
  padding-left: 27px;
  color: var(--rw-ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.services-detail__list li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--rw-red) 0 50%, var(--rw-yellow) 50% 100%);
  border-radius: 4px;
  content: "";
}

.services-detail__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 25px;
}

.services-detail--dark {
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.services-detail--dark::after {
  position: absolute;
  right: -150px;
  bottom: -210px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

.services-detail--dark .services-detail__content,
.services-detail--dark .services-detail__media {
  position: relative;
  z-index: 1;
}

.services-detail--dark .eyebrow {
  color: var(--rw-yellow);
}

.services-detail--dark h2 {
  color: var(--rw-white);
}

.services-detail--dark .services-detail__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.services-detail--dark .services-detail__media::before {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--rw-border-dark);
}

/* ==========================================================================
     36. Services Product-Line Links
     ========================================================================== */

.services-product-links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.services-product-links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 18px;
  padding: 17px 18px;
  background: var(--rw-off-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: 11px;
}

.services-product-links strong {
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.3;
}

.services-product-links span {
  grid-column: 1;
  color: var(--rw-muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.services-product-links svg {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  width: 18px;
  height: 18px;
  color: var(--rw-red);
  transition: transform var(--rw-transition-fast);
}

.services-product-links a:hover {
  background: var(--rw-white);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-small);
  transform: translateX(3px);
}

.services-product-links a:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
     37. Services Process and Final CTA
     ========================================================================== */

.services-process {
  position: relative;
}

.services-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: var(--rw-border);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  list-style: none;
}

.services-process__grid li {
  position: relative;
  min-width: 0;
  min-height: 260px;
  padding: clamp(27px, 3vw, 38px);
  background: var(--rw-white);
  transition:
    background-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.services-process__grid li:hover {
  z-index: 1;
  background: var(--rw-white);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.services-process__grid li > span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 850;
}

.services-process__grid h3 {
  margin-bottom: 13px;
  font-size: var(--rw-type-card-title);
}

.services-process__grid p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: var(--rw-type-card-body);
  line-height: 1.67;
}

.services-final-cta {
  padding-top: 0;
  background: var(--rw-white);
}

.services-final-cta__panel,
.product-hub-final-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(38px, 5vw, 68px);
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 28px 3px;
  box-shadow: var(--rw-shadow-large);
}

.services-final-cta__panel .eyebrow,
.product-hub-final-cta__panel .eyebrow {
  color: var(--rw-yellow);
}

.services-final-cta__panel h2,
.product-hub-final-cta__panel h2 {
  max-width: 760px;
  margin-bottom: 15px;
  color: var(--rw-white);
  font-size: var(--rw-type-feature-title);
}

.services-final-cta__panel p,
.product-hub-final-cta__panel p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--rw-type-body);
  line-height: 1.7;
}

/* ==========================================================================
     38. Services Responsive
     ========================================================================== */

@media (max-width: 1199px) {
  .services-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  }

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

  .service-path-card,
  .service-path-card:nth-child(4),
  .service-path-card:nth-child(5) {
    grid-column: auto;
  }

  .service-path-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

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

@media (max-width: 1023px) {
  .services-hero {
    background: linear-gradient(to bottom, var(--rw-white) 0 58%, var(--rw-off-white) 58% 100%);
  }

  .services-hero__grid,
  .services-detail__grid,
  .services-detail__grid--reverse {
    grid-template-columns: 1fr;
  }

  .services-hero__content {
    max-width: 820px;
  }

  .services-hero__media {
    width: min(100%, 800px);
    justify-self: center;
  }

  .services-section-heading,
  .product-hub-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-section-heading > p,
  .product-hub-section-heading > p {
    max-width: 700px;
    justify-self: start;
  }

  .services-section-heading--center > p,
  .product-hub-section-heading--center > p {
    justify-self: center;
  }

  .services-detail {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .services-detail__media {
    width: min(100%, 780px);
  }

  .services-detail__content {
    max-width: 780px;
  }

  .services-detail__grid--reverse .services-detail__content {
    order: 2;
  }

  .services-detail__grid--reverse .services-detail__media {
    order: 1;
  }

  .services-final-cta__panel,
  .product-hub-final-cta__panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .services-hero::before {
    width: 56%;
  }

  .services-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-hero__actions .button {
    width: 100%;
  }

  .services-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-hero__media {
    padding: 0 0 42px 18px;
  }

  .services-hero__note {
    width: min(280px, 84%);
    padding: 15px 17px;
  }

  .services-pathways__grid {
    grid-template-columns: 1fr;
  }

  .service-path-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service-path-card__content {
    padding: 24px 22px 27px;
  }

  .services-detail__media {
    padding: 0 0 30px 20px;
  }

  .services-detail__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .services-detail__actions .button {
    width: 100%;
  }

  .services-process__grid {
    grid-template-columns: 1fr;
  }

  .services-process__grid li {
    min-height: auto;
    padding: 27px 23px 31px;
  }

  .services-process__grid li > span {
    margin-bottom: 20px;
  }

  .services-final-cta__panel,
  .product-hub-final-cta__panel {
    padding: 34px 24px 38px;
  }

  .services-final-cta__panel .button,
  .product-hub-final-cta__panel .button {
    width: 100%;
  }
}

/* ==========================================================================
     39. Services Reduced Motion
     ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .service-path-card:hover,
  .services-process__grid li:hover,
  .services-product-links a:hover,
  .services-text-link:hover svg,
  .product-hub-link:hover svg {
    transform: none;
  }

  .service-path-card:hover .service-path-card__image {
    transform: none;
  }
}

/* ==========================================================================
     39A. Product Hub Shared Components
     ========================================================================== */

.product-hub-page {
  width: 100%;
  overflow: clip;
  background: var(--rw-white);
}

.product-hub-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.4;
}

.product-hub-breadcrumbs a:hover {
  color: var(--rw-red);
}

.product-hub-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

/* ==========================================================================
     39B. Product Hub Heroes
     ========================================================================== */

.product-hub-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.product-hub-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(90deg, var(--rw-red) 0 72%, var(--rw-yellow) 72% 100%);
  content: "";
}

.product-hub-hero::after {
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

.product-hub-hero--wood {
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    #f3f0ea 56%,
    #f3f0ea 100%
  );
}

.product-hub-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.product-hub-hero__content {
  max-width: 770px;
}

.product-hub-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.product-hub-hero__description {
  max-width: 690px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.product-hub-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.product-hub-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-hub-hero__highlights li {
  position: relative;
  padding-left: 17px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.product-hub-hero__highlights li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--rw-yellow);
  border: 2px solid var(--rw-red);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.product-hub-hero__media {
  position: relative;
  width: min(100%, 550px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.product-hub-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.product-hub-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.product-hub-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(320px, 76%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.product-hub-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-hub-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

/* ==========================================================================
     39C. Products Line Cards
     ========================================================================== */

.products-lines {
  background: var(--rw-white);
}

.products-lines__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 34px);
}

.product-line-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.product-line-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-7px);
}

.product-line-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.product-line-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  transition: transform 560ms var(--rw-ease-out);
}

.product-line-card:hover .product-line-card__image {
  transform: scale(1.04);
}

.product-line-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 34px);
}

.product-line-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.product-line-card__topline > span {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.product-line-card__topline small {
  color: var(--rw-muted);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-line-card h3 {
  margin-bottom: 13px;
  font-size: var(--rw-type-card-title);
}

.product-line-card h3 a:hover {
  color: var(--rw-red);
}

.product-line-card__content > p {
  margin-bottom: 21px;
  color: var(--rw-text);
  font-size: var(--rw-type-card-body);
  line-height: 1.68;
}

.product-line-card__list {
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
  margin: 0 0 25px;
  border-top: 1px solid var(--rw-border);
  list-style: none;
}

.product-line-card__list li {
  position: relative;
  padding-left: 15px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
}

.product-line-card__list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--rw-red);
  content: "";
}

.product-line-card .product-hub-link {
  margin-top: auto;
}

/* ==========================================================================
     39D. Products Planning and Services Bridge
     ========================================================================== */

.products-planning__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.products-planning__content h2 {
  max-width: 680px;
  margin-bottom: 21px;
  font-size: var(--rw-type-feature-title);
}

.products-planning__content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 29px;
  font-size: var(--rw-type-lead);
  line-height: 1.75;
}

.products-planning__facts {
  display: grid;
  gap: 1px;
  background: var(--rw-border);
  border: 1px solid var(--rw-border);
}

.products-planning__facts article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 18px;
  padding: clamp(22px, 3vw, 31px);
  background: var(--rw-white);
}

.products-planning__facts article > span {
  grid-row: 1 / span 2;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.67rem;
  font-weight: 900;
}

.products-planning__facts h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.products-planning__facts p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.78rem;
  line-height: 1.6;
}

.products-services-bridge {
  padding-top: 0;
  background: var(--rw-white);
}

.products-services-bridge__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(40px, 5vw, 70px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.products-services-bridge__panel .eyebrow {
  color: var(--rw-yellow);
}

.products-services-bridge__panel h2 {
  max-width: 780px;
  margin-bottom: 16px;
  color: var(--rw-white);
  font-size: var(--rw-type-feature-title);
}

.products-services-bridge__panel p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--rw-type-body);
  line-height: 1.7;
}

.products-services-bridge__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
     39E. Vinyl Product Families
     ========================================================================== */

.vinyl-families {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.vinyl-families__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 34px);
}

.vinyl-family-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.vinyl-family-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.vinyl-family-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.vinyl-family-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  transition: transform 560ms var(--rw-ease-out);
}

.vinyl-family-card:hover .vinyl-family-card__image {
  transform: scale(1.04);
}

.vinyl-family-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 34px);
}

.vinyl-family-card__number {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 17px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.vinyl-family-card h3 {
  margin-bottom: 13px;
  font-size: var(--rw-type-card-title);
}

.vinyl-family-card h3 a:hover {
  color: var(--rw-red);
}

.vinyl-family-card__content > p {
  margin-bottom: 19px;
  color: var(--rw-text);
  font-size: var(--rw-type-card-body);
  line-height: 1.68;
}

.vinyl-family-card__content > ul {
  display: grid;
  gap: 7px;
  padding: 15px 0 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--rw-border);
  list-style: none;
}

.vinyl-family-card__content > ul a {
  color: var(--rw-text);
  font-size: 0.71rem;
  font-weight: 700;
}

.vinyl-family-card__content > ul a:hover {
  color: var(--rw-red);
}

.vinyl-family-card .product-hub-link {
  margin-top: auto;
}

/* ==========================================================================
     39F. Vinyl Styles and Configuration Planning
     ========================================================================== */

.vinyl-window-styles {
  position: relative;
  overflow: hidden;
}

.vinyl-window-styles::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.vinyl-window-styles__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.vinyl-window-styles__intro .eyebrow {
  color: var(--rw-yellow);
}

.vinyl-window-styles__intro h2 {
  margin-bottom: 20px;
  color: var(--rw-white);
  font-size: var(--rw-type-feature-title);
}

.vinyl-window-styles__intro > p:not(.eyebrow) {
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--rw-type-body);
  line-height: 1.7;
}

.vinyl-window-styles__list {
  display: grid;
  border-top: 1px solid var(--rw-border-dark);
}

.vinyl-window-styles__list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  padding-block: 17px;
  color: var(--rw-white);
  border-bottom: 1px solid var(--rw-border-dark);
}

.vinyl-window-styles__list span {
  color: var(--rw-yellow);
  font-family: var(--rw-font-mono);
  font-size: 0.64rem;
  font-weight: 900;
}

.vinyl-window-styles__list strong {
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.3;
}

.vinyl-window-styles__list svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform var(--rw-transition-fast);
}

.vinyl-window-styles__list a:hover strong,
.vinyl-window-styles__list a:hover svg {
  color: var(--rw-yellow);
}

.vinyl-window-styles__list a:hover svg {
  transform: translateX(4px);
}

.vinyl-planning__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(52px, 8vw, 118px);
}

.vinyl-planning__grid > div:first-child h2 {
  margin-bottom: 21px;
  font-size: var(--rw-type-feature-title);
}

.vinyl-planning__grid > div:first-child > p:not(.eyebrow) {
  margin-bottom: 29px;
  font-size: var(--rw-type-lead);
  line-height: 1.75;
}

.vinyl-planning__media {
  position: relative;
  padding: 24px 24px 0 0;
}

.vinyl-planning__media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 68%;
  background: var(--rw-yellow-soft);
  content: "";
}

.vinyl-planning__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 28px 2px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

/* ==========================================================================
     39G. Wood Disclosure and Product Directions
     ========================================================================== */

.wood-disclosure {
  padding-block: clamp(28px, 4vw, 46px);
  background: var(--rw-charcoal);
}

.wood-disclosure__panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1.54fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  color: var(--rw-white);
}

.wood-disclosure__panel strong {
  color: var(--rw-yellow);
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.35;
}

.wood-disclosure__panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.65;
}

.wood-products-directions,
.wood-materials,
.wood-comparison {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.wood-products-directions__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.wood-direction-card {
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.wood-direction-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
}

.wood-direction-card__content {
  padding: clamp(25px, 3vw, 38px);
}

.wood-direction-card__content > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.wood-direction-card h3 {
  margin-bottom: 13px;
  font-size: var(--rw-type-card-title);
}

.wood-direction-card p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: var(--rw-type-card-body);
  line-height: 1.68;
}

/* ==========================================================================
     39H. Wood Materials and Wood vs. Vinyl Planning
     ========================================================================== */

.wood-materials__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.wood-materials__media {
  position: relative;
  padding: 0 0 36px 30px;
}

.wood-materials__media::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 76%;
  background: #e9e3d9;
  content: "";
}

.wood-materials__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 28px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.wood-materials__content h2 {
  margin-bottom: 24px;
  font-size: var(--rw-type-feature-title);
}

.wood-materials__list {
  display: grid;
  border-top: 1px solid var(--rw-border);
}

.wood-materials__list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  padding-block: 17px;
  border-bottom: 1px solid var(--rw-border);
}

.wood-materials__list article > span {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.64rem;
  font-weight: 900;
}

.wood-materials__list h3 {
  margin-bottom: 5px;
  font-size: 0.96rem;
}

.wood-materials__list p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.76rem;
  line-height: 1.58;
}

.wood-comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.wood-comparison-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.wood-comparison-card--wood {
  background: #f7f4ef;
  border-color: #ded6c9;
}

.wood-comparison-card > span {
  margin-bottom: 12px;
  color: var(--rw-red);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.wood-comparison-card h3 {
  margin-bottom: 21px;
  font-size: var(--rw-type-card-title);
  line-height: 1.2;
}

.wood-comparison-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.wood-comparison-card li {
  position: relative;
  padding-left: 22px;
  color: var(--rw-text);
  font-size: 0.8rem;
  line-height: 1.55;
}

.wood-comparison-card li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--rw-yellow);
  border: 2px solid var(--rw-red);
  border-radius: 50%;
  content: "";
}

.wood-comparison-card .product-hub-link {
  margin-top: auto;
}

/* ==========================================================================
     39I. Product Hub Final CTA
     ========================================================================== */

.product-hub-final-cta {
  padding-top: 0;
  background: var(--rw-white);
}

/* ==========================================================================
     39J. Product Hub Responsive
     ========================================================================== */

@media (max-width: 1199px) {
  .product-hub-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  }

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

  .product-line-card:last-child:nth-child(odd),
  .vinyl-family-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1023px) {
  .product-hub-hero {
    background: linear-gradient(to bottom, var(--rw-white) 0 58%, var(--rw-off-white) 58% 100%);
  }

  .product-hub-hero--wood {
    background: linear-gradient(to bottom, var(--rw-white) 0 58%, #f3f0ea 58% 100%);
  }

  .product-hub-hero__grid,
  .products-planning__grid,
  .vinyl-window-styles__grid,
  .vinyl-planning__grid,
  .wood-materials__grid {
    grid-template-columns: 1fr;
  }

  .product-hub-hero__content {
    max-width: 820px;
  }

  .product-hub-hero__media {
    width: min(100%, 800px);
    justify-self: center;
  }

  .products-services-bridge__panel {
    grid-template-columns: 1fr;
  }

  .products-services-bridge__actions {
    width: min(100%, 480px);
  }

  .vinyl-families,
  .wood-products-directions,
  .wood-materials,
  .wood-comparison {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .vinyl-window-styles__intro,
  .vinyl-planning__grid > div:first-child,
  .wood-materials__content {
    max-width: 760px;
  }

  .vinyl-planning__media,
  .wood-materials__media {
    width: min(100%, 780px);
  }

  .wood-disclosure__panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .product-hub-hero::before {
    width: 56%;
  }

  .product-hub-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-hub-hero__actions .button {
    width: 100%;
  }

  .product-hub-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-hub-hero__media {
    padding: 0 0 42px 18px;
  }

  .product-hub-hero__note {
    width: min(285px, 86%);
    padding: 15px 17px;
  }

  .products-lines__grid,
  .vinyl-families__grid,
  .wood-products-directions__grid,
  .wood-comparison__grid {
    grid-template-columns: 1fr;
  }

  .product-line-card:last-child:nth-child(odd),
  .vinyl-family-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .product-line-card__content,
  .vinyl-family-card__content,
  .wood-direction-card__content {
    padding: 24px 22px 27px;
  }

  .products-services-bridge__panel {
    padding: 34px 24px 38px;
  }

  .products-services-bridge__actions,
  .products-services-bridge__actions .button {
    width: 100%;
  }

  .vinyl-window-styles__list a {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .vinyl-window-styles__list svg {
    display: none;
  }

  .vinyl-planning__media,
  .wood-materials__media {
    padding: 20px 20px 0 0;
  }

  .wood-disclosure {
    padding-block: 30px;
  }

  .wood-comparison-card {
    padding: 28px 23px 31px;
  }
}

/* ==========================================================================
     39K. Product Hub Reduced Motion
     ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .product-line-card:hover,
  .vinyl-family-card:hover,
  .product-hub-link:hover svg,
  .vinyl-window-styles__list a:hover svg {
    transform: none;
  }

  .product-line-card:hover .product-line-card__image,
  .vinyl-family-card:hover .vinyl-family-card__image {
    transform: none;
  }
}

/* ==========================================================================
     40. Windows Shared Components
     ========================================================================== */

.windows-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.windows-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
  margin-bottom: clamp(42px, 6vw, 76px);
}

.windows-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.windows-section-heading__side {
  max-width: 510px;
  justify-self: end;
}

.windows-section-heading__side p {
  margin-bottom: 20px;
  color: var(--rw-text);
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  line-height: 1.75;
}

.windows-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.3;
}

.windows-text-link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.windows-text-link:hover {
  color: var(--rw-red-dark);
}

.windows-text-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     41. Windows Hero
     ========================================================================== */

.windows-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 57%,
    var(--rw-off-white) 57%,
    var(--rw-off-white) 100%
  );
}

.windows-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.windows-hero::after {
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.windows-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.windows-hero__content {
  max-width: 760px;
}

.windows-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.4;
}

.windows-breadcrumbs a:hover {
  color: var(--rw-red);
}

.windows-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.windows-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.windows-hero__description {
  max-width: 650px;
  margin-bottom: var(--rw-hero-description-margin);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.windows-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.windows-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.windows-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.73rem;
  font-weight: 750;
  line-height: 1.4;
}

.windows-hero__highlights svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.windows-hero__media {
  position: relative;
  width: min(100%, 550px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.windows-hero__media::before {
  position: absolute;
  top: clamp(30px, 4vw, 54px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.windows-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 34px 3px;
  box-shadow: var(--rw-shadow-large);
}

.windows-hero__image.rogers-media-placeholder {
  display: grid;
}

.windows-hero__image .rogers-media-placeholder__content {
  gap: 10px;
  padding: clamp(24px, 3vw, 38px);
}

.windows-hero__image .rogers-media-placeholder__label {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.windows-hero__image .rogers-media-placeholder__group p {
  font-size: clamp(0.69rem, 0.85vw, 0.78rem);
}

.windows-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(305px, 70%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.windows-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.windows-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* ==========================================================================
     42. Window Types
     ========================================================================== */

.windows-types {
  position: relative;
  background: var(--rw-white);
}

.windows-types__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.7vw, 36px);
}

.window-type-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.window-type-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-7px);
}

.window-type-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.window-type-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.28), transparent 48%);
  content: "";
  opacity: 0.32;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.window-type-card:hover .window-type-card__media::after {
  opacity: 0.62;
}

.window-type-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  transition: transform 580ms var(--rw-ease-out);
}

.window-type-card:hover .window-type-card__image {
  transform: scale(1.045);
}

.window-type-card__image.rogers-media-placeholder {
  border: 0;
  border-radius: 0;
}

.window-type-card__image .rogers-media-placeholder__content {
  gap: 8px;
  padding: 21px;
}

.window-type-card__image .rogers-media-placeholder__type {
  padding: 5px 7px;
  font-size: 0.54rem;
}

.window-type-card__image .rogers-media-placeholder__label {
  font-size: 1rem;
}

.window-type-card__image .rogers-media-placeholder__path {
  padding: 5px 7px;
  font-size: 0.58rem;
}

.window-type-card__image .rogers-media-placeholder__group span {
  font-size: 0.54rem;
}

.window-type-card__image .rogers-media-placeholder__group p {
  font-size: 0.67rem;
  line-height: 1.4;
}

.window-type-card__image .rogers-media-placeholder__specs {
  font-size: 0.57rem;
}

.window-type-card__number {
  position: absolute;
  right: 18px;
  bottom: 0;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border: 6px solid var(--rw-white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(50%);
  transition: transform var(--rw-transition);
}

.window-type-card:hover .window-type-card__number {
  transform: translateY(50%) rotate(7deg) scale(1.06);
}

.window-type-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(28px, 3vw, 36px);
}

.window-type-card h3 {
  padding-right: 43px;
  margin-bottom: 14px;
  font-size: clamp(1.38rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.window-type-card h3 a:hover {
  color: var(--rw-red);
}

.window-type-card__content > p {
  margin-bottom: 23px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.68;
}

.window-type-card__facts {
  display: grid;
  margin: 0 0 25px;
  border-top: 1px solid var(--rw-border);
}

.window-type-card__facts > div {
  display: grid;
  grid-template-columns:
    minmax(78px, 0.42fr)
    minmax(0, 1.58fr);
  gap: 15px;
  padding-block: 13px;
  border-bottom: 1px solid var(--rw-border);
}

.window-type-card__facts dt {
  color: var(--rw-muted);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.085em;
  line-height: 1.4;
  text-transform: uppercase;
}

.window-type-card__facts dd {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.73rem;
  font-weight: 650;
  line-height: 1.5;
}

.window-type-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.78rem;
  font-weight: 850;
}

.window-type-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.window-type-card__link:hover {
  color: var(--rw-red-dark);
}

.window-type-card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     43. Window Comparison Guide
     ========================================================================== */

.windows-comparison {
  position: relative;
}

.windows-comparison__table-wrap {
  overflow-x: auto;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
  scrollbar-width: thin;
  scrollbar-color: var(--rw-border) transparent;
}

.windows-comparison__table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.windows-comparison__table th,
.windows-comparison__table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rw-border);
  color: var(--rw-text);
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: left;
  vertical-align: middle;
}

.windows-comparison__table thead th {
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-color: var(--rw-border-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.windows-comparison__table thead th:last-child {
  width: 64px;
}

.windows-comparison__table tbody th {
  width: 24%;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.91rem;
  font-weight: 750;
}

.windows-comparison__table tbody tr:last-child th,
.windows-comparison__table tbody tr:last-child td {
  border-bottom: 0;
}

.windows-comparison__table tbody tr {
  transition: background-color var(--rw-transition-fast);
}

.windows-comparison__table tbody tr:hover {
  background: var(--rw-red-soft);
}

.windows-comparison__table td:last-child {
  width: 64px;
  text-align: right;
}

.windows-comparison__table td:last-child a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--rw-off-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 50%;
}

.windows-comparison__table td:last-child a:hover {
  background: var(--rw-red);
  color: var(--rw-white);
  border-color: var(--rw-red);
  transform: translateX(3px);
}

.windows-comparison__table td:last-child svg {
  width: 17px;
  height: 17px;
}

/* ==========================================================================
     44. Window Options and Customization
     ========================================================================== */

.windows-customization {
  position: relative;
  overflow: hidden;
}

.windows-customization::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.windows-customization::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.windows-customization__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.04fr)
    minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.windows-customization__media {
  position: relative;
  padding: 0 0 clamp(40px, 5vw, 68px) clamp(26px, 3vw, 46px);
}

.windows-customization__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 58px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.windows-customization__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-large);
}

.windows-customization__image.rogers-media-placeholder {
  background:
    linear-gradient(135deg, rgba(241, 210, 0, 0.07), transparent 44%),
    var(--rw-charcoal-soft);
  color: var(--rw-white);
  border-color: rgba(255, 255, 255, 0.16);
}

.windows-customization__image .rogers-media-placeholder__label {
  color: var(--rw-white);
}

.windows-customization__image .rogers-media-placeholder__group p {
  color: rgba(255, 255, 255, 0.65);
}

.windows-customization__image .rogers-media-placeholder__group span,
.windows-customization__image .rogers-media-placeholder__specs {
  color: rgba(255, 255, 255, 0.48);
}

.windows-customization__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  max-width: 270px;
  flex-direction: column;
  gap: 5px;
  padding: 19px 22px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 18px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.windows-customization__badge span {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.windows-customization__badge strong {
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.windows-customization__content {
  max-width: 680px;
}

.windows-customization__content .eyebrow {
  color: var(--rw-yellow);
}

.windows-customization__content h2 {
  margin-bottom: 24px;
  color: var(--rw-white);
}

.windows-customization__content .lead {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
}

.windows-customization__list {
  display: grid;
  margin: 0 0 36px;
  padding: 0;
  border-top: 1px solid var(--rw-border-dark);
  list-style: none;
}

.windows-customization__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding-block: 16px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--rw-border-dark);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.5;
}

.windows-customization__list svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: rgba(241, 210, 0, 0.12);
  color: var(--rw-yellow);
  border-radius: 50%;
}

/* ==========================================================================
     45. Find the Right Window
     ========================================================================== */

.windows-guidance {
  position: relative;
  background: var(--rw-white);
}

.windows-guidance__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.windows-guidance__content {
  max-width: 700px;
}

.windows-guidance__content h2 {
  margin-bottom: 24px;
}

.windows-guidance__content > p:not(.eyebrow) {
  margin-bottom: 31px;
  color: var(--rw-text);
  font-size: clamp(0.97rem, 1.3vw, 1.08rem);
  line-height: 1.75;
}

.windows-guidance__steps {
  display: grid;
  margin-bottom: 34px;
  border-top: 1px solid var(--rw-border);
}

.windows-guidance__steps > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding-block: 17px;
  border-bottom: 1px solid var(--rw-border);
}

.windows-guidance__steps span {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.66rem;
  font-weight: 900;
}

.windows-guidance__steps strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

.windows-guidance__media {
  position: relative;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 3vw, 42px) 0 0;
}

.windows-guidance__media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 68%;
  background: var(--rw-yellow-soft);
  content: "";
}

.windows-guidance__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 30px 2px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.windows-guidance__caption {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(340px, 78%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  margin: -34px 0 0 auto;
  background: var(--rw-white);
  border-left: 4px solid var(--rw-red);
  box-shadow: var(--rw-shadow-small);
}

.windows-guidance__caption span {
  color: var(--rw-muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.windows-guidance__caption strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

/* ==========================================================================
     46. Windows Projects and Project Support
     ========================================================================== */

.windows-projects {
  position: relative;
}

.windows-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.7vw, 35px);
}

.windows-project-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 22px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.windows-project-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-7px);
}

.windows-project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.windows-project-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.34), transparent 48%);
  content: "";
  opacity: 0.32;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.windows-project-card:hover .windows-project-card__media::after {
  opacity: 0.62;
}

.windows-project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 580ms var(--rw-ease-out);
}

.windows-project-card:hover .windows-project-card__image {
  transform: scale(1.045);
}

.windows-project-card__placeholder {
  display: flex;
  height: 100%;
  min-height: 250px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.04), transparent 46%),
    var(--rw-warm-gray);
  text-align: center;
}

.windows-project-card__placeholder span {
  color: var(--rw-red);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.windows-project-card__placeholder strong {
  max-width: 21ch;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.3;
}

.windows-project-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(23px, 2.8vw, 31px);
}

.windows-project-card__location {
  margin-bottom: 10px;
  color: var(--rw-red);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.windows-project-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.28rem, 1.8vw, 1.65rem);
  line-height: 1.2;
}

.windows-project-card h3 a:hover {
  color: var(--rw-red);
}

.windows-project-card__content > p:not(.windows-project-card__location) {
  margin-bottom: 21px;
  color: var(--rw-text);
  font-size: 0.82rem;
  line-height: 1.68;
}

.windows-project-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.78rem;
  font-weight: 850;
}

.windows-project-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.windows-project-card__link:hover {
  color: var(--rw-red-dark);
}

.windows-project-card__link:hover svg {
  transform: translateX(4px);
}

.windows-projects__empty {
  display: flex;
  width: min(100%, 720px);
  min-height: 280px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  text-align: center;
}

.windows-projects__empty p {
  max-width: 490px;
  margin-bottom: 24px;
}

.windows-support {
  position: relative;
  background: var(--rw-white);
}

.windows-support__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.windows-support__content {
  max-width: 690px;
}

.windows-support__content h2 {
  margin-bottom: 22px;
}

.windows-support__content > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.97rem, 1.3vw, 1.08rem);
  line-height: 1.75;
}

.windows-support__options {
  display: grid;
  gap: 13px;
}

.windows-support__options > a {
  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 22px 24px;
  background: var(--rw-off-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 5px 18px rgba(23, 25, 28, 0.035);
}

.windows-support__options > a:hover {
  background: var(--rw-white);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.32);
  box-shadow: var(--rw-shadow-small);
  transform: translateX(5px);
}

.windows-support__options > a > span {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.windows-support__options > a > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.windows-support__options strong {
  color: inherit;
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.3;
}

.windows-support__options small {
  color: var(--rw-muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.windows-support__options svg {
  width: 19px;
  height: 19px;
  color: var(--rw-red);
  transition: transform var(--rw-transition-fast);
}

.windows-support__options > a:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     47. Windows Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .windows-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
    gap: var(--rw-hero-grid-gap);
  }

  .windows-types__grid {
    gap: 22px;
  }

  .window-type-card__content {
    padding: 27px 23px 30px;
  }

  .windows-customization__grid,
  .windows-guidance__grid {
    gap: 60px;
  }

  .windows-support__grid {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(380px, 1.1fr);
    gap: 54px;
  }
}

@media (max-width: 1023px) {
  .windows-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .windows-hero__grid,
  .windows-customization__grid,
  .windows-guidance__grid,
  .windows-support__grid {
    grid-template-columns: 1fr;
  }

  .windows-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .windows-hero__content {
    max-width: 820px;
  }

  .windows-hero__media {
    width: min(100%, 780px);
    justify-self: center;
  }

  .windows-section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .windows-section-heading__side {
    max-width: 680px;
    justify-self: start;
  }

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

  .windows-customization__media {
    width: min(100%, 780px);
  }

  .windows-customization__content {
    max-width: 760px;
  }

  .windows-guidance__content {
    max-width: 760px;
  }

  .windows-guidance__media {
    width: min(100%, 780px);
    justify-self: end;
  }

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

  .windows-project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .windows-support__content {
    max-width: 760px;
  }

  .windows-support__options {
    width: min(100%, 780px);
  }
}

@media (max-width: 767px) {
  .windows-hero::before {
    width: 56%;
  }

  .windows-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .windows-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .windows-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .windows-hero__actions .button {
    width: 100%;
  }

  .windows-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .windows-hero__media {
    padding: 0 0 42px 18px;
  }

  .windows-hero__note {
    width: min(280px, 82%);
    padding: 15px 17px;
  }

  .windows-types__grid,
  .windows-projects__grid {
    grid-template-columns: 1fr;
  }

  .windows-project-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .window-type-card__content {
    padding: 27px 22px 30px;
  }

  .window-type-card__facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .windows-comparison__table th,
  .windows-comparison__table td {
    padding: 17px 18px;
  }

  .windows-customization__grid {
    gap: 46px;
  }

  .windows-customization__media {
    padding: 0 0 40px 18px;
  }

  .windows-customization__badge {
    max-width: 225px;
    padding: 16px 18px;
  }

  .windows-customization__content .button {
    width: 100%;
  }

  .windows-guidance__grid {
    gap: 45px;
  }

  .windows-guidance__media {
    padding: 20px 20px 0 0;
  }

  .windows-guidance__caption {
    width: min(315px, 90%);
  }

  .windows-guidance__content .button {
    width: 100%;
  }

  .windows-project-card__content {
    padding: 24px 22px 27px;
  }

  .windows-projects__empty {
    min-height: 260px;
    padding: 36px 22px;
  }

  .windows-support__grid {
    gap: 38px;
  }

  .windows-support__options > a {
    grid-template-columns:
      auto
      minmax(0, 1fr)
      auto;
    gap: 13px;
    min-height: 96px;
    padding: 19px 17px;
  }
}

@media (max-width: 520px) {
  .windows-hero__media {
    padding-left: 12px;
  }

  .windows-hero__note {
    right: -2px;
    width: min(250px, 88%);
  }

  .windows-customization__badge {
    right: -2px;
    max-width: 205px;
  }

  .windows-guidance__caption {
    width: min(285px, 92%);
  }

  .windows-support__options > a {
    grid-template-columns:
      auto
      minmax(0, 1fr);
  }

  .windows-support__options > a > svg {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .window-type-card:hover,
  .windows-project-card:hover,
  .windows-support__options > a:hover {
    transform: none;
  }

  .window-type-card:hover .window-type-card__image,
  .windows-project-card:hover .windows-project-card__image {
    transform: none;
  }

  .window-type-card:hover .window-type-card__number {
    transform: translateY(50%);
  }

  .windows-text-link:hover svg,
  .window-type-card__link:hover svg,
  .windows-project-card__link:hover svg,
  .windows-support__options > a:hover svg {
    transform: none;
  }
}

/* ==========================================================================
     48. Window Detail Shared Components
     ========================================================================== */

.window-detail-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.window-detail-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(280px, 0.82fr);
  align-items: end;
  gap: clamp(36px, 7vw, 96px);
  margin-bottom: clamp(40px, 6vw, 72px);
}

.window-detail-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.window-detail-section-heading > p {
  max-width: 520px;
  margin: 0;
  justify-self: end;
  color: var(--rw-text);
  font-size: clamp(0.96rem, 1.3vw, 1.07rem);
  line-height: 1.75;
}

.window-detail-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.4;
}

.window-detail-breadcrumbs a {
  transition: color var(--rw-transition-fast);
}

.window-detail-breadcrumbs a:hover {
  color: var(--rw-red);
}

.window-detail-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.window-detail-page svg {
  flex-shrink: 0;
}

/* ==========================================================================
     49. Window Detail Hero
     ========================================================================== */

.window-detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 58%,
    var(--rw-off-white) 58%,
    var(--rw-off-white) 100%
  );
}

.window-detail-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.window-detail-hero::after {
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.window-detail-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.8fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.window-detail-hero__content {
  max-width: 770px;
}

.window-detail-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.window-detail-hero__description {
  max-width: 670px;
  margin-bottom: var(--rw-hero-description-margin);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.window-detail-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.window-detail-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.window-detail-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.73rem;
  font-weight: 750;
  line-height: 1.4;
}

.window-detail-hero__highlights svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.window-detail-hero__media {
  position: relative;
  width: min(100%, 550px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.window-detail-hero__media::before {
  position: absolute;
  top: clamp(30px, 4vw, 54px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.window-detail-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 34px 3px;
  box-shadow: var(--rw-shadow-large);
}

.window-detail-hero__image.rogers-media-placeholder {
  display: grid;
}

.window-detail-hero__image .rogers-media-placeholder__content {
  gap: 10px;
  padding: clamp(24px, 3vw, 38px);
}

.window-detail-hero__image .rogers-media-placeholder__label {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}

.window-detail-hero__image .rogers-media-placeholder__group p {
  font-size: clamp(0.68rem, 0.85vw, 0.77rem);
}

.window-detail-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(315px, 72%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.window-detail-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.window-detail-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.91rem;
  line-height: 1.35;
}

/* ==========================================================================
     50. Window Detail Overview
     ========================================================================== */

.window-detail-overview {
  position: relative;
  background: var(--rw-white);
}

.window-detail-overview__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.96fr)
    minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(52px, 8vw, 118px);
}

.window-detail-overview__content {
  max-width: 690px;
}

.window-detail-overview__content h2 {
  margin-bottom: 24px;
}

.window-detail-overview__content .lead {
  margin-bottom: 20px;
}

.window-detail-overview__content > p:last-child {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.96rem;
  line-height: 1.76;
}

.window-detail-overview__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.window-detail-overview__facts > div {
  display: flex;
  min-height: 156px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(25px, 3vw, 34px);
}

.window-detail-overview__facts > div:nth-child(odd) {
  border-right: 1px solid var(--rw-border);
}

.window-detail-overview__facts > div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--rw-border);
}

.window-detail-overview__facts span {
  color: var(--rw-red);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.window-detail-overview__facts strong {
  max-width: 19ch;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.35;
}

/* ==========================================================================
     51. Interactive Window Model
     ========================================================================== */

.window-detail-model {
  position: relative;
  overflow: hidden;
}

.window-detail-model::before {
  position: absolute;
  top: -210px;
  left: -170px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.08), transparent 68%);
  content: "";
  pointer-events: none;
}

.window-detail-model::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.window-detail-model__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.window-detail-model__viewer {
  position: relative;
  min-width: 0;
  padding: 0 0 clamp(42px, 5vw, 66px) clamp(26px, 3vw, 46px);
}

.window-detail-model__viewer::before {
  position: absolute;
  top: clamp(28px, 4vw, 54px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.window-detail-model__canvas,
.window-detail-model__poster {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--rw-charcoal-soft);
  color: var(--rw-white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

model-viewer.window-detail-model__canvas {
  --poster-color: transparent;
  height: auto;
}

.window-detail-model__poster.rogers-media-placeholder {
  display: grid;
  background:
    linear-gradient(145deg, rgba(241, 210, 0, 0.07), transparent 46%),
    var(--rw-charcoal-soft);
  border-color: rgba(255, 255, 255, 0.15);
}

.window-detail-model__poster .rogers-media-placeholder__label,
.window-detail-model__poster .rogers-media-placeholder__path {
  color: var(--rw-white);
}

.window-detail-model__poster .rogers-media-placeholder__group p {
  color: rgba(255, 255, 255, 0.66);
}

.window-detail-model__poster .rogers-media-placeholder__group span,
.window-detail-model__poster .rogers-media-placeholder__specs,
.window-detail-model__poster .rogers-media-placeholder__type {
  color: rgba(255, 255, 255, 0.5);
}

.window-detail-model__status {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(325px, 74%);
  flex-direction: column;
  gap: 5px;
  padding: 18px 22px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 18px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.window-detail-model__status span {
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.window-detail-model__status strong {
  font-family: var(--rw-font-heading);
  font-size: 0.96rem;
  line-height: 1.3;
}

.window-detail-model__content {
  max-width: 680px;
}

.window-detail-model__content .eyebrow {
  color: var(--rw-yellow);
}

.window-detail-model__content h2 {
  margin-bottom: 24px;
  color: var(--rw-white);
}

.window-detail-model__content .lead {
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.68);
}

.window-detail-model__list {
  display: grid;
  padding: 0;
  margin: 0 0 35px;
  border-top: 1px solid var(--rw-border-dark);
  list-style: none;
}

.window-detail-model__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding-block: 16px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--rw-border-dark);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.5;
}

.window-detail-model__list svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: rgba(241, 210, 0, 0.12);
  color: var(--rw-yellow);
  border-radius: 50%;
}

/* ==========================================================================
     52. Window Configurations
     ========================================================================== */

.window-detail-configurations {
  position: relative;
  background: var(--rw-white);
}

.window-detail-configurations__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.7vw, 34px);
}

.window-configuration-card {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: clamp(29px, 3.4vw, 42px);
  overflow: hidden;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 22px rgba(23, 25, 28, 0.045);
  transition:
    background-color var(--rw-transition),
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.window-configuration-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 4px;
  background: var(--rw-red);
  content: "";
  transition: width var(--rw-transition-slow);
}

.window-configuration-card::after {
  position: absolute;
  right: -56px;
  bottom: -72px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.22), transparent 68%);
  content: "";
  pointer-events: none;
}

.window-configuration-card:hover {
  background: var(--rw-white);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-7px);
}

.window-configuration-card:hover::before {
  width: 100%;
}

.window-configuration-card__number {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: auto;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 50%;
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.window-configuration-card h3 {
  position: relative;
  z-index: 1;
  margin: 38px 0 14px;
  font-size: clamp(1.35rem, 2vw, 1.78rem);
  line-height: 1.2;
}

.window-configuration-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.7;
}

/* ==========================================================================
     53. Window Applications
     ========================================================================== */

.window-detail-applications {
  position: relative;
}

.window-detail-applications__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(52px, 8vw, 116px);
}

.window-detail-applications__media {
  position: relative;
  padding: 0 0 clamp(28px, 4vw, 48px) clamp(22px, 3vw, 40px);
}

.window-detail-applications__media::before {
  position: absolute;
  top: clamp(25px, 4vw, 48px);
  right: clamp(25px, 4vw, 48px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.window-detail-applications__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-medium);
}

.window-detail-applications__content {
  max-width: 690px;
}

.window-detail-applications__content h2 {
  margin-bottom: 29px;
}

.window-detail-applications__list {
  display: grid;
  border-top: 1px solid var(--rw-border);
}

.window-detail-applications__list > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  padding-block: 18px;
  border-bottom: 1px solid var(--rw-border);
}

.window-detail-applications__list > div > svg {
  width: 22px;
  height: 22px;
  padding: 3px;
  margin-top: 1px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.window-detail-applications__list h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.3;
}

.window-detail-applications__list p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.79rem;
  line-height: 1.63;
}

/* ==========================================================================
     54. Window Benefits and Considerations
     ========================================================================== */

.window-detail-benefits {
  position: relative;
  background: var(--rw-white);
}

.window-detail-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3.5vw, 44px);
}

.window-detail-benefits__column {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.045);
}

.window-detail-benefits__column::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--rw-charcoal);
  content: "";
}

.window-detail-benefits__column--positive::before {
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
}

.window-detail-benefits__label {
  display: block;
  margin-bottom: 25px;
  color: var(--rw-red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.window-detail-benefits__column:not(.window-detail-benefits__column--positive)
  .window-detail-benefits__label {
  color: var(--rw-ink);
}

.window-detail-benefits__column ul {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.window-detail-benefits__column li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding-block: 15px;
  color: var(--rw-ink);
  border-top: 1px solid var(--rw-border);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.55;
}

.window-detail-benefits__column li:last-child {
  padding-bottom: 0;
}

.window-detail-benefits__column li svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.window-detail-benefits__column:not(.window-detail-benefits__column--positive)
  li
  svg {
  background: var(--rw-warm-gray);
  color: var(--rw-ink);
}

/* ==========================================================================
     55. Window Detail Project Path
     ========================================================================== */

.window-detail-path {
  position: relative;
  overflow: hidden;
}

.window-detail-path::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(33vw, 460px);
  height: 100%;
  background: linear-gradient(135deg, rgba(241, 210, 0, 0.13), transparent 66%);
  content: "";
  pointer-events: none;
}

.window-detail-path__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.window-detail-path__content {
  max-width: 690px;
}

.window-detail-path__content h2 {
  margin-bottom: 22px;
}

.window-detail-path__content > p:not(.eyebrow) {
  margin-bottom: 31px;
  color: var(--rw-text);
  font-size: clamp(0.96rem, 1.3vw, 1.07rem);
  line-height: 1.76;
}

.window-detail-path__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.window-detail-path__links {
  display: grid;
  gap: 13px;
}

.window-detail-path__links > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 18px;
  min-height: 112px;
  padding: 22px 24px;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 5px 18px rgba(23, 25, 28, 0.04);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.window-detail-path__links > a:hover {
  border-color: rgba(204, 13, 16, 0.3);
  box-shadow: var(--rw-shadow-small);
  transform: translateX(5px);
}

.window-detail-path__links span {
  grid-column: 1;
  color: var(--rw-red);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.window-detail-path__links strong {
  grid-column: 1;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.98rem;
  line-height: 1.36;
}

.window-detail-path__links svg {
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 20px;
  height: 20px;
  color: var(--rw-red);
  transition: transform var(--rw-transition-fast);
}

.window-detail-path__links > a:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     56. Window Detail Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .window-detail-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.74fr);
    gap: var(--rw-hero-grid-gap);
  }

  .window-detail-overview__grid {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(390px, 1.1fr);
    gap: 58px;
  }

  .window-detail-model__grid,
  .window-detail-applications__grid {
    gap: 62px;
  }

  .window-detail-path__grid {
    grid-template-columns:
      minmax(0, 0.88fr)
      minmax(390px, 1.12fr);
    gap: 56px;
  }
}

@media (max-width: 1023px) {
  .window-detail-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .window-detail-hero__grid,
  .window-detail-overview__grid,
  .window-detail-model__grid,
  .window-detail-applications__grid,
  .window-detail-path__grid {
    grid-template-columns: 1fr;
  }

  .window-detail-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .window-detail-hero__content,
  .window-detail-overview__content,
  .window-detail-model__content,
  .window-detail-applications__content,
  .window-detail-path__content {
    max-width: 780px;
  }

  .window-detail-hero__media,
  .window-detail-model__viewer,
  .window-detail-applications__media {
    width: min(100%, 780px);
  }

  .window-detail-hero__media {
    justify-self: center;
  }

  .window-detail-overview__facts {
    width: min(100%, 780px);
  }

  .window-detail-model__grid {
    gap: 58px;
  }

  .window-detail-model__viewer {
    justify-self: start;
  }

  .window-detail-section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .window-detail-section-heading > p {
    max-width: 690px;
    justify-self: start;
  }

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

  .window-configuration-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .window-detail-applications__media {
    justify-self: start;
  }

  .window-detail-path__links {
    width: min(100%, 780px);
  }
}

@media (max-width: 767px) {
  .window-detail-hero::before {
    width: 56%;
  }

  .window-detail-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .window-detail-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .window-detail-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .window-detail-hero__actions .button {
    width: 100%;
  }

  .window-detail-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .window-detail-hero__media {
    padding: 0 0 42px 18px;
  }

  .window-detail-hero__note {
    width: min(285px, 84%);
    padding: 15px 17px;
  }

  .window-detail-overview__facts {
    grid-template-columns: 1fr;
  }

  .window-detail-overview__facts > div {
    min-height: 126px;
  }

  .window-detail-overview__facts > div:nth-child(odd) {
    border-right: 0;
  }

  .window-detail-overview__facts > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--rw-border);
  }

  .window-detail-model__viewer {
    padding: 0 0 42px 18px;
  }

  .window-detail-model__canvas,
  .window-detail-model__poster {
    min-height: 330px;
  }

  .window-detail-model__status {
    width: min(290px, 84%);
    padding: 16px 18px;
  }

  .window-detail-model__content .button {
    width: 100%;
  }

  .window-detail-configurations__grid,
  .window-detail-benefits__grid {
    grid-template-columns: 1fr;
  }

  .window-configuration-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .window-configuration-card {
    min-height: 245px;
  }

  .window-detail-applications__media {
    padding: 0 0 30px 18px;
  }

  .window-detail-benefits__column {
    padding: 29px 23px 32px;
  }

  .window-detail-path__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .window-detail-path__actions .button {
    width: 100%;
  }

  .window-detail-path__links > a {
    min-height: 104px;
    padding: 20px 18px;
  }
}

@media (max-width: 520px) {
  .window-detail-hero__media,
  .window-detail-model__viewer,
  .window-detail-applications__media {
    padding-left: 12px;
  }

  .window-detail-hero__note,
  .window-detail-model__status {
    right: -2px;
    width: min(260px, 88%);
  }

  .window-detail-model__canvas,
  .window-detail-model__poster {
    min-height: 280px;
  }

  .window-detail-path__links > a {
    grid-template-columns: minmax(0, 1fr);
  }

  .window-detail-path__links svg {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .window-configuration-card:hover,
  .window-detail-path__links > a:hover {
    transform: none;
  }

  .window-configuration-card:hover::before {
    width: 84px;
  }

  .window-detail-path__links > a:hover svg {
    transform: none;
  }
}

/* ==========================================================================
     57. Doors Shared Components
     ========================================================================== */

.doors-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.doors-page #door-systems {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.doors-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.doors-section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.doors-section-heading__side {
  max-width: 520px;
  justify-self: end;
}

.doors-section-heading__side > p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.94rem, 1.15vw, 1.04rem);
  line-height: 1.72;
}

.doors-section-heading__side .doors-text-link {
  margin-top: 18px;
}

.doors-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
}

.doors-text-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--rw-transition-fast);
}

.doors-text-link:hover {
  color: var(--rw-red-dark);
}

.doors-text-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     58. Doors Hero
     ========================================================================== */

.doors-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.doors-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.doors-hero::after {
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.doors-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.doors-hero__content {
  max-width: 760px;
}

.doors-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.45;
}

.doors-breadcrumbs a:hover {
  color: var(--rw-red);
}

.doors-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.doors-hero__content > .eyebrow {
  margin-bottom: 14px;
}

.doors-hero__title {
  max-width: 15ch;
  margin-bottom: var(--rw-hero-title-margin);
}

.doors-hero__description {
  max-width: 670px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.doors-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.doors-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.doors-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.71rem;
  font-weight: 750;
  line-height: 1.38;
}

.doors-hero__highlights svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.doors-hero__media {
  position: relative;
  width: min(100%, 570px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.doors-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.doors-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.doors-hero__image.rogers-media-placeholder {
  border-color: var(--rw-border);
}

.doors-hero__image .rogers-media-placeholder__content {
  gap: 9px;
  padding: clamp(22px, 3vw, 34px);
}

.doors-hero__image .rogers-media-placeholder__label {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.doors-hero__image .rogers-media-placeholder__group p {
  font-size: clamp(0.68rem, 0.78vw, 0.76rem);
  line-height: 1.42;
}

.doors-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(300px, 72%);
  flex-direction: column;
  gap: 4px;
  padding: 17px 20px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.doors-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.doors-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.34;
}

/* ==========================================================================
     59. Door Systems
     ========================================================================== */

.doors-systems {
  position: relative;
  background: var(--rw-white);
}

.doors-systems__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.door-system-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.door-system-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-7px);
}

.door-system-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.door-system-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.3), transparent 48%);
  content: "";
  opacity: 0.32;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.door-system-card:hover .door-system-card__media::after {
  opacity: 0.64;
}

.door-system-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  transition: transform 580ms var(--rw-ease-out);
}

.door-system-card:hover .door-system-card__image {
  transform: scale(1.045);
}

.door-system-card__image.rogers-media-placeholder {
  border: 0;
  border-radius: 0;
}

.door-system-card__image .rogers-media-placeholder__content {
  gap: 8px;
  padding: 22px;
}

.door-system-card__image .rogers-media-placeholder__type {
  padding: 5px 7px;
  font-size: 0.54rem;
}

.door-system-card__image .rogers-media-placeholder__label {
  font-size: 1.05rem;
}

.door-system-card__image .rogers-media-placeholder__path {
  padding: 5px 7px;
  font-size: 0.58rem;
}

.door-system-card__image .rogers-media-placeholder__group span {
  font-size: 0.54rem;
}

.door-system-card__image .rogers-media-placeholder__group p {
  font-size: 0.67rem;
  line-height: 1.4;
}

.door-system-card__image .rogers-media-placeholder__specs {
  font-size: 0.57rem;
}

.door-system-card__number {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border: 6px solid var(--rw-white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(50%);
  transition: transform var(--rw-transition);
}

.door-system-card:hover .door-system-card__number {
  transform: translateY(50%) rotate(7deg) scale(1.06);
}

.door-system-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(30px, 3.5vw, 42px);
}

.door-system-card h3 {
  max-width: 21ch;
  padding-right: 44px;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
  line-height: 1.18;
}

.door-system-card h3 a:hover {
  color: var(--rw-red);
}

.door-system-card__content > p {
  margin-bottom: 23px;
  color: var(--rw-text);
  font-size: 0.85rem;
  line-height: 1.68;
}

.door-system-card__facts {
  display: grid;
  margin: 0 0 24px;
  border-top: 1px solid var(--rw-border);
}

.door-system-card__facts > div {
  display: grid;
  grid-template-columns:
    minmax(82px, 0.42fr)
    minmax(0, 1.58fr);
  gap: 16px;
  padding-block: 13px;
  border-bottom: 1px solid var(--rw-border);
}

.door-system-card__facts dt {
  color: var(--rw-muted);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.085em;
  line-height: 1.4;
  text-transform: uppercase;
}

.door-system-card__facts dd {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.73rem;
  font-weight: 650;
  line-height: 1.5;
}

.door-system-card__features {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 27px;
  list-style: none;
}

.door-system-card__features li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--rw-ink);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.48;
}

.door-system-card__features svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.door-system-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.79rem;
  font-weight: 850;
  line-height: 1.3;
}

.door-system-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.door-system-card__link:hover {
  color: var(--rw-red-dark);
}

.door-system-card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     60. Door Comparison
     ========================================================================== */

.doors-comparison {
  position: relative;
}

.doors-comparison__table-wrap {
  overflow-x: auto;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
  scrollbar-width: thin;
  scrollbar-color: var(--rw-border) transparent;
}

.doors-comparison__table {
  width: 100%;
  min-width: 790px;
  border-collapse: collapse;
}

.doors-comparison__table th,
.doors-comparison__table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rw-border);
  color: var(--rw-text);
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: left;
  vertical-align: middle;
}

.doors-comparison__table thead th {
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-bottom-color: var(--rw-charcoal);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.doors-comparison__table tbody th {
  width: 25%;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.9rem;
  font-weight: 800;
}

.doors-comparison__table tbody tr:last-child th,
.doors-comparison__table tbody tr:last-child td {
  border-bottom: 0;
}

.doors-comparison__table tbody tr {
  transition: background-color var(--rw-transition-fast);
}

.doors-comparison__table tbody tr:hover {
  background: var(--rw-red-soft);
}

.doors-comparison__table td:last-child,
.doors-comparison__table th:last-child {
  width: 70px;
  text-align: center;
}

.doors-comparison__table td:last-child a {
  display: grid;
  width: 38px;
  height: 38px;
  margin-inline: auto;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(23, 25, 28, 0.04);
}

.doors-comparison__table td:last-child a:hover {
  background: var(--rw-red);
  color: var(--rw-white);
  border-color: var(--rw-red);
  transform: translateX(3px);
}

.doors-comparison__table td:last-child svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
     61. Door Performance and Customization
     ========================================================================== */

.doors-performance {
  position: relative;
  overflow: hidden;
}

.doors-performance::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.doors-performance::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.doors-performance__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.94fr)
    minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(52px, 8vw, 116px);
}

.doors-performance__media {
  position: relative;
  padding: 0 0 clamp(40px, 5vw, 66px) clamp(26px, 3vw, 46px);
}

.doors-performance__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.doors-performance__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-large);
}

.doors-performance__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  max-width: 280px;
  flex-direction: column;
  gap: 5px;
  padding: 19px 22px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 18px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.doors-performance__badge span {
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.doors-performance__badge strong {
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.doors-performance__content {
  max-width: 700px;
}

.doors-performance__content > .eyebrow {
  color: var(--rw-yellow);
}

.doors-performance__content > .eyebrow::before {
  background: var(--rw-red);
}

.doors-performance__content h2 {
  max-width: 700px;
  margin-bottom: 21px;
  color: var(--rw-white);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.doors-performance__content > .lead {
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.doors-performance__list {
  display: grid;
  padding: 0;
  margin: 0 0 33px;
  border-top: 1px solid var(--rw-border-dark);
  list-style: none;
}

.doors-performance__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding-block: 17px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--rw-border-dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.doors-performance__list svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: rgba(241, 210, 0, 0.13);
  color: var(--rw-yellow);
  border-radius: 50%;
}

/* ==========================================================================
     62. Door Selection Guidance
     ========================================================================== */

.doors-guidance {
  position: relative;
  background: var(--rw-white);
}

.doors-guidance__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.doors-guidance__content {
  max-width: 700px;
}

.doors-guidance__content h2 {
  margin-bottom: 21px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.doors-guidance__content > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--rw-text);
  font-size: clamp(0.96rem, 1.2vw, 1.05rem);
  line-height: 1.74;
}

.doors-guidance__steps {
  display: grid;
  margin-bottom: 32px;
  border-top: 1px solid var(--rw-border);
}

.doors-guidance__steps > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  padding-block: 18px;
  border-bottom: 1px solid var(--rw-border);
}

.doors-guidance__steps > div > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  place-items: center;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 9px;
  font-family: var(--rw-font-mono);
  font-size: 0.66rem;
  font-weight: 900;
}

.doors-guidance__steps strong {
  display: block;
  margin-bottom: 5px;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.95rem;
  line-height: 1.32;
}

.doors-guidance__steps p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.79rem;
  line-height: 1.6;
}

.doors-guidance__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 25px;
}

.doors-guidance__media {
  position: relative;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 3vw, 42px) 0 0;
}

.doors-guidance__media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 68%;
  background: var(--rw-yellow-soft);
  content: "";
}

.doors-guidance__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 30px 2px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.doors-guidance__caption {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(350px, 78%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  margin: -34px 0 0 auto;
  background: var(--rw-white);
  border-left: 4px solid var(--rw-red);
  box-shadow: var(--rw-shadow-small);
}

.doors-guidance__caption span {
  color: var(--rw-muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.doors-guidance__caption strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.95rem;
  line-height: 1.34;
}

/* ==========================================================================
     63. Door Projects
     ========================================================================== */

.doors-projects {
  position: relative;
}

.doors-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.doors-project-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.doors-project-card:hover {
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.doors-project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.doors-project-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.32), transparent 48%);
  content: "";
  opacity: 0.34;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.doors-project-card:hover .doors-project-card__media::after {
  opacity: 0.64;
}

.doors-project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--rw-ease-out);
}

.doors-project-card:hover .doors-project-card__image {
  transform: scale(1.045);
}

.doors-project-card__placeholder {
  display: flex;
  height: 100%;
  min-height: 245px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.04), transparent 44%),
    var(--rw-warm-gray);
  text-align: center;
}

.doors-project-card__placeholder span {
  color: var(--rw-red);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.doors-project-card__placeholder strong {
  max-width: 20ch;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.3;
}

.doors-project-card__market {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 6px 10px;
  background: rgba(23, 25, 28, 0.9);
  color: var(--rw-white);
  border-left: 3px solid var(--rw-yellow);
  border-radius: 2px 7px 7px 2px;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.doors-project-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 30px);
}

.doors-project-card__location {
  margin-bottom: 11px;
  color: var(--rw-red);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.doors-project-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  line-height: 1.22;
}

.doors-project-card h3 a:hover {
  color: var(--rw-red);
}

.doors-project-card__content > p:not(.doors-project-card__location) {
  margin-bottom: 21px;
  color: var(--rw-text);
  font-size: 0.81rem;
  line-height: 1.65;
}

.doors-project-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.77rem;
  font-weight: 850;
}

.doors-project-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.doors-project-card__link:hover {
  color: var(--rw-red-dark);
}

.doors-project-card__link:hover svg {
  transform: translateX(4px);
}

.doors-projects__empty {
  display: flex;
  width: min(100%, 760px);
  min-height: 360px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 7vw, 72px);
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 46%),
    var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-large);
  text-align: center;
}

.doors-projects__empty h3 {
  max-width: 560px;
  margin-bottom: 15px;
  font-size: clamp(1.65rem, 2.35vw, 2.25rem);
  line-height: 1.12;
}

.doors-projects__empty > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 27px;
  color: var(--rw-text);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ==========================================================================
     64. Doors Final CTA
     ========================================================================== */

.doors-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.doors-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.doors-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.doors-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.doors-cta__content,
.doors-cta__actions {
  position: relative;
  z-index: 1;
}

.doors-cta__content {
  max-width: 760px;
}

.doors-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.doors-cta h2 {
  max-width: 710px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.doors-cta__content > p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.98rem;
  line-height: 1.72;
}

.doors-cta__actions {
  display: flex;
  min-width: 235px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     65. Doors Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .doors-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .doors-performance__grid,
  .doors-guidance__grid {
    gap: 60px;
  }

  .doors-projects__grid {
    gap: 22px;
  }
}

@media (max-width: 1023px) {
  .doors-page #door-systems {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .doors-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .doors-hero__grid,
  .doors-performance__grid,
  .doors-guidance__grid {
    grid-template-columns: 1fr;
  }

  .doors-hero__content,
  .doors-performance__content,
  .doors-guidance__content {
    max-width: 800px;
  }

  .doors-hero__media,
  .doors-performance__media,
  .doors-guidance__media {
    width: min(100%, 780px);
  }

  .doors-hero__media {
    justify-self: center;
  }

  .doors-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .doors-section-heading__side {
    max-width: 690px;
    justify-self: start;
  }

  .doors-performance__grid,
  .doors-guidance__grid {
    gap: 54px;
  }

  .doors-performance__media,
  .doors-guidance__media {
    justify-self: start;
  }

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

  .doors-project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .doors-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .doors-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .doors-hero::before {
    width: 56%;
  }

  .doors-hero__title {
    max-width: 16ch;
  }

  .doors-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .doors-hero__actions .button {
    width: 100%;
  }

  .doors-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .doors-hero__media {
    padding: 0 0 42px 18px;
  }

  .doors-hero__note {
    width: min(285px, 84%);
    padding: 15px 17px;
  }

  .doors-systems__grid,
  .doors-projects__grid {
    grid-template-columns: 1fr;
  }

  .doors-project-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .door-system-card__content {
    padding: 29px 22px 31px;
  }

  .door-system-card__facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .doors-comparison__table th,
  .doors-comparison__table td {
    padding: 17px 18px;
  }

  .doors-performance__media {
    padding: 0 0 40px 18px;
  }

  .doors-performance__badge {
    max-width: 240px;
    padding: 16px 18px;
  }

  .doors-performance__content .button {
    width: 100%;
  }

  .doors-guidance__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .doors-guidance__actions .button {
    width: 100%;
  }

  .doors-guidance__media {
    padding: 20px 20px 0 0;
  }

  .doors-guidance__caption {
    width: min(315px, 90%);
  }

  .doors-project-card__content {
    padding: 24px 22px 27px;
  }

  .doors-projects__empty {
    min-height: 330px;
    padding: 40px 22px;
    border-radius: var(--rw-radius-medium);
  }

  .doors-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .doors-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .doors-cta__actions {
    flex-direction: column;
  }

  .doors-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .doors-hero__media,
  .doors-performance__media {
    padding-left: 12px;
  }

  .doors-hero__note {
    right: -2px;
    width: min(255px, 88%);
  }

  .door-system-card h3 {
    padding-right: 34px;
  }

  .door-system-card__number {
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .doors-performance__badge {
    right: -2px;
    max-width: 215px;
  }

  .doors-guidance__steps > div {
    gap: 13px;
  }

  .doors-guidance__caption {
    width: min(285px, 94%);
    padding: 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .door-system-card:hover,
  .doors-project-card:hover,
  .doors-comparison__table td:last-child a:hover {
    transform: none;
  }

  .door-system-card:hover .door-system-card__image,
  .doors-project-card:hover .doors-project-card__image {
    transform: none;
  }

  .door-system-card:hover .door-system-card__number {
    transform: translateY(50%);
  }

  .door-system-card__link:hover svg,
  .doors-project-card__link:hover svg,
  .doors-text-link:hover svg {
    transform: none;
  }
}

/* ==========================================================================
     66. Door Detail Shared Components
     ========================================================================== */

.door-detail-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.door-detail-page #sliding-door-configurations {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.door-detail-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.door-detail-section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.door-detail-section-heading > p {
  max-width: 530px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.94rem, 1.15vw, 1.04rem);
  line-height: 1.72;
}

/* ==========================================================================
     67. Door Detail Hero
     ========================================================================== */

.door-detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.door-detail-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.door-detail-hero::after {
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.door-detail-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.door-detail-hero__content {
  max-width: 780px;
}

.door-detail-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.45;
}

.door-detail-breadcrumbs a:hover {
  color: var(--rw-red);
}

.door-detail-breadcrumbs span[aria-current="page"] {
  max-width: 42ch;
  overflow: hidden;
  color: var(--rw-ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.door-detail-hero__content > .eyebrow {
  margin-bottom: 14px;
}

.door-detail-hero__title {
  max-width: 15ch;
  margin-bottom: var(--rw-hero-title-margin);
}

.door-detail-hero__description {
  max-width: 680px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: var(--rw-hero-description-line-height);
}

.door-detail-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.door-detail-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.door-detail-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.71rem;
  font-weight: 750;
  line-height: 1.38;
}

.door-detail-hero__highlights svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.door-detail-hero__media {
  position: relative;
  width: min(100%, 570px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.door-detail-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.door-detail-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.door-detail-hero__image.rogers-media-placeholder {
  border-color: var(--rw-border);
}

.door-detail-hero__image .rogers-media-placeholder__content {
  gap: 9px;
  padding: clamp(22px, 3vw, 34px);
}

.door-detail-hero__image .rogers-media-placeholder__label {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.door-detail-hero__image .rogers-media-placeholder__group p {
  font-size: clamp(0.68rem, 0.78vw, 0.76rem);
  line-height: 1.42;
}

.door-detail-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(310px, 74%);
  flex-direction: column;
  gap: 4px;
  padding: 17px 20px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.door-detail-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.door-detail-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.34;
}

/* ==========================================================================
     68. Door Detail Overview
     ========================================================================== */

.door-detail-overview {
  position: relative;
  background: var(--rw-white);
}

.door-detail-overview__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(300px, 0.82fr);
  align-items: start;
  gap: clamp(50px, 8vw, 116px);
}

.door-detail-overview__content {
  max-width: 760px;
}

.door-detail-overview__content h2 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.door-detail-overview__content > .lead {
  margin-bottom: 24px;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.door-detail-overview__content > p:last-child {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.9rem;
  line-height: 1.76;
}

.door-detail-overview__facts {
  display: grid;
  overflow: hidden;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.door-detail-overview__facts > div {
  display: grid;
  grid-template-columns:
    minmax(90px, 0.68fr)
    minmax(0, 1.32fr);
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 18px 22px;
  background: var(--rw-white);
  border-bottom: 1px solid var(--rw-border);
}

.door-detail-overview__facts > div:last-child {
  border-bottom: 0;
}

.door-detail-overview__facts span {
  color: var(--rw-muted);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.door-detail-overview__facts strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* ==========================================================================
     69. Door Detail Configurations
     ========================================================================== */

.door-detail-configurations {
  position: relative;
}

.door-detail-configurations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--rw-border);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
}

.door-configuration-card {
  position: relative;
  min-width: 0;
  min-height: 285px;
  padding: clamp(27px, 3vw, 38px);
  background: var(--rw-white);
  transition:
    background-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.door-configuration-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 74%,
    var(--rw-yellow) 74% 100%
  );
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition:
    opacity var(--rw-transition),
    transform var(--rw-transition);
}

.door-configuration-card:hover {
  z-index: 1;
  background: var(--rw-off-white);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.door-configuration-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.door-configuration-card__number {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.door-configuration-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.22rem, 1.7vw, 1.5rem);
  line-height: 1.2;
}

.door-configuration-card p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.8rem;
  line-height: 1.68;
}

/* ==========================================================================
     70. Door Detail Performance
     ========================================================================== */

.door-detail-performance {
  position: relative;
  overflow: hidden;
}

.door-detail-performance::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.door-detail-performance::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.door-detail-performance__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.94fr)
    minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(52px, 8vw, 116px);
}

.door-detail-performance__media {
  position: relative;
  padding: 0 0 clamp(40px, 5vw, 66px) clamp(26px, 3vw, 46px);
}

.door-detail-performance__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.door-detail-performance__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-large);
}

.door-detail-performance__image.rogers-media-placeholder {
  border-color: rgba(255, 255, 255, 0.16);
}

.door-detail-performance__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  max-width: 285px;
  flex-direction: column;
  gap: 5px;
  padding: 19px 22px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 18px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.door-detail-performance__badge span {
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.door-detail-performance__badge strong {
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.door-detail-performance__content {
  max-width: 700px;
}

.door-detail-performance__content > .eyebrow {
  color: var(--rw-yellow);
}

.door-detail-performance__content > .eyebrow::before {
  background: var(--rw-red);
}

.door-detail-performance__content h2 {
  max-width: 700px;
  margin-bottom: 21px;
  color: var(--rw-white);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.door-detail-performance__content > .lead {
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.door-detail-performance__list {
  display: grid;
  padding: 0;
  margin: 0 0 33px;
  border-top: 1px solid var(--rw-border-dark);
  list-style: none;
}

.door-detail-performance__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding-block: 17px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--rw-border-dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.door-detail-performance__list svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: rgba(241, 210, 0, 0.13);
  color: var(--rw-yellow);
  border-radius: 50%;
}

/* ==========================================================================
     71. Door Detail Applications
     ========================================================================== */

.door-detail-applications {
  position: relative;
  background: var(--rw-white);
}

.door-detail-applications__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.94fr)
    minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.door-detail-applications__content {
  max-width: 700px;
}

.door-detail-applications__content h2 {
  margin-bottom: 29px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.door-detail-applications__list {
  display: grid;
  border-top: 1px solid var(--rw-border);
}

.door-detail-applications__list > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  padding-block: 18px;
  border-bottom: 1px solid var(--rw-border);
}

.door-detail-applications__list > div > svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  padding: 4px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.door-detail-applications__list h3 {
  margin-bottom: 5px;
  font-size: 0.96rem;
  line-height: 1.35;
}

.door-detail-applications__list p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.79rem;
  line-height: 1.62;
}

.door-detail-applications__media {
  position: relative;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 3vw, 42px) 0 0;
}

.door-detail-applications__media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 68%;
  background: var(--rw-yellow-soft);
  content: "";
}

.door-detail-applications__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 30px 2px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

/* ==========================================================================
     72. Door Detail Selection Guidance
     ========================================================================== */

.door-detail-benefits {
  position: relative;
}

.door-detail-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.door-detail-benefits__column {
  position: relative;
  min-width: 0;
  padding: clamp(30px, 4vw, 48px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
}

.door-detail-benefits__column--positive {
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-color: var(--rw-charcoal);
}

.door-detail-benefits__column::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.door-detail-benefits__column--positive::before {
  background: linear-gradient(
    90deg,
    var(--rw-yellow) 0 76%,
    var(--rw-red) 76% 100%
  );
}

.door-detail-benefits__label {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--rw-red);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.door-detail-benefits__column--positive .door-detail-benefits__label {
  color: var(--rw-yellow);
}

.door-detail-benefits__column ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.door-detail-benefits__column li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding-block: 16px;
  color: var(--rw-ink);
  border-bottom: 1px solid var(--rw-border);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.52;
}

.door-detail-benefits__column li:first-child {
  padding-top: 0;
}

.door-detail-benefits__column li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.door-detail-benefits__column li svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.door-detail-benefits__column--positive li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: var(--rw-border-dark);
}

.door-detail-benefits__column--positive li svg {
  background: rgba(241, 210, 0, 0.13);
  color: var(--rw-yellow);
}

/* ==========================================================================
     73. Door Detail Project Path
     ========================================================================== */

.door-detail-path {
  position: relative;
  background: var(--rw-white);
}

.door-detail-path__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.door-detail-path__content {
  max-width: 690px;
}

.door-detail-path__content h2 {
  margin-bottom: 21px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.door-detail-path__content > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--rw-text);
  font-size: clamp(0.96rem, 1.2vw, 1.05rem);
  line-height: 1.74;
}

.door-detail-path__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.door-detail-path__links {
  display: grid;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.door-detail-path__links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 20px;
  min-height: 112px;
  padding: 22px 24px;
  color: var(--rw-ink);
  border-bottom: 1px solid var(--rw-border);
}

.door-detail-path__links a:last-child {
  border-bottom: 0;
}

.door-detail-path__links a:hover {
  background: var(--rw-off-white);
  color: var(--rw-red);
}

.door-detail-path__links span {
  grid-column: 1;
  color: var(--rw-muted);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.door-detail-path__links strong {
  grid-column: 1;
  max-width: 44ch;
  color: inherit;
  font-family: var(--rw-font-heading);
  font-size: 0.9rem;
  line-height: 1.38;
}

.door-detail-path__links svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 20px;
  height: 20px;
  color: var(--rw-red);
  transition: transform var(--rw-transition-fast);
}

.door-detail-path__links a:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     74. Door Detail Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .door-detail-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .door-detail-overview__grid,
  .door-detail-performance__grid,
  .door-detail-applications__grid,
  .door-detail-path__grid {
    gap: 58px;
  }

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

@media (max-width: 1023px) {
  .door-detail-page #sliding-door-configurations {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .door-detail-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .door-detail-hero__grid,
  .door-detail-overview__grid,
  .door-detail-performance__grid,
  .door-detail-applications__grid,
  .door-detail-path__grid {
    grid-template-columns: 1fr;
  }

  .door-detail-hero__content,
  .door-detail-overview__content,
  .door-detail-performance__content,
  .door-detail-applications__content,
  .door-detail-path__content {
    max-width: 810px;
  }

  .door-detail-hero__media,
  .door-detail-performance__media,
  .door-detail-applications__media {
    width: min(100%, 780px);
  }

  .door-detail-hero__media {
    justify-self: center;
  }

  .door-detail-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .door-detail-section-heading > p {
    max-width: 690px;
    justify-self: start;
  }

  .door-detail-overview__facts,
  .door-detail-path__links {
    width: min(100%, 760px);
  }

  .door-detail-performance__media,
  .door-detail-applications__media {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .door-detail-hero::before {
    width: 56%;
  }

  .door-detail-breadcrumbs span[aria-current="page"] {
    max-width: 24ch;
  }

  .door-detail-hero__title {
    max-width: 16ch;
  }

  .door-detail-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .door-detail-hero__actions .button {
    width: 100%;
  }

  .door-detail-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .door-detail-hero__media {
    padding: 0 0 42px 18px;
  }

  .door-detail-hero__note {
    width: min(285px, 84%);
    padding: 15px 17px;
  }

  .door-detail-overview__facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 0;
    padding: 16px 19px;
  }

  .door-detail-configurations__grid,
  .door-detail-benefits__grid {
    grid-template-columns: 1fr;
  }

  .door-configuration-card {
    min-height: auto;
    padding: 29px 23px 31px;
  }

  .door-configuration-card__number {
    margin-bottom: 23px;
  }

  .door-detail-performance__media {
    padding: 0 0 40px 18px;
  }

  .door-detail-performance__badge {
    max-width: 245px;
    padding: 16px 18px;
  }

  .door-detail-performance__content .button {
    width: 100%;
  }

  .door-detail-applications__media {
    padding: 20px 20px 0 0;
  }

  .door-detail-benefits__column {
    padding: 30px 23px;
  }

  .door-detail-path__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .door-detail-path__actions .button {
    width: 100%;
  }

  .door-detail-path__links a {
    min-height: 105px;
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .door-detail-hero__media,
  .door-detail-performance__media {
    padding-left: 12px;
  }

  .door-detail-hero__note {
    right: -2px;
    width: min(255px, 88%);
  }

  .door-detail-performance__badge {
    right: -2px;
    max-width: 220px;
  }

  .door-detail-applications__list > div {
    gap: 12px;
  }

  .door-detail-path__links a {
    grid-template-columns: minmax(0, 1fr) 20px;
    gap: 5px 12px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .door-configuration-card:hover,
  .door-detail-path__links a:hover svg {
    transform: none;
  }
}

/* ==========================================================================
     75. Projects Shared Components
     ========================================================================== */

.projects-page {
  width: 100%;
  background: var(--rw-white);
}

.projects-page #project-results {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 32px);
}

.projects-page select,
.projects-page input {
  width: 100%;
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-small);
  outline: 0;
}

.projects-page select:hover,
.projects-page input:hover {
  border-color: rgba(204, 13, 16, 0.42);
}

.projects-page select:focus,
.projects-page input:focus {
  border-color: var(--rw-red);
  box-shadow: 0 0 0 4px rgba(204, 13, 16, 0.1);
}

.projects-page select {
  min-height: 50px;
  padding: 0 42px 0 15px;
  background-color: var(--rw-white);
  cursor: pointer;
}

.projects-page input {
  min-height: 50px;
  padding: 0 15px;
  background: var(--rw-white);
}

.projects-page input::placeholder {
  color: #92969c;
}

/* ==========================================================================
     76. Projects Hero
     ========================================================================== */

.projects-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 58%,
    var(--rw-off-white) 58%,
    var(--rw-off-white) 100%
  );
}

.projects-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.projects-hero::after {
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.projects-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.projects-hero__content {
  max-width: 760px;
}

.projects-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.projects-hero__description {
  max-width: 660px;
  margin-bottom: var(--rw-hero-description-margin);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.projects-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.projects-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
  border-top: 1px solid var(--rw-border);
  border-bottom: 1px solid var(--rw-border);
}

.projects-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 82px;
  padding: 16px 22px 16px 0;
}

.projects-hero__stat + .projects-hero__stat {
  padding-left: 26px;
  border-left: 1px solid var(--rw-border);
}

.projects-hero__stat strong {
  color: var(--rw-red);
  font-family: var(--rw-font-heading);
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  line-height: 1;
}

.projects-hero__stat span {
  color: var(--rw-muted);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.4;
}

.projects-hero__media {
  position: relative;
  width: min(100%, 540px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.projects-hero__media::before {
  position: absolute;
  top: clamp(30px, 4vw, 54px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.15);
  content: "";
  pointer-events: none;
}

.projects-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.projects-hero__media-note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: min(285px, 68%);
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.projects-hero__media-note span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.projects-hero__media-note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.35;
}

/* ==========================================================================
     77. Projects Filters
     ========================================================================== */

.projects-filters {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(36px, 5vw, 62px);
  background: linear-gradient(
    to bottom,
    var(--rw-off-white) 0 50%,
    var(--rw-white) 50% 100%
  );
}

.projects-filters__panel {
  padding: clamp(25px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-medium);
}

.projects-filters__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 27px;
}

.projects-filters__heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
}

.projects-filters__eyebrow {
  margin-bottom: 7px;
  color: var(--rw-red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.projects-filters__clear {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--rw-red);
  font-size: 0.79rem;
  font-weight: 850;
}

.projects-filters__clear:hover {
  color: var(--rw-red-dark);
  transform: translateX(-3px);
}

.projects-filter-form {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.7fr)
    minmax(180px, 0.75fr)
    minmax(170px, 0.7fr)
    auto;
  align-items: end;
  gap: 15px;
}

.projects-filter-form__field {
  min-width: 0;
}

.projects-filter-form__field label {
  display: block;
  margin-bottom: 7px;
  color: var(--rw-ink);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.projects-filter-form__search {
  position: relative;
}

.projects-filter-form__search svg {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  width: 19px;
  height: 19px;
  color: var(--rw-muted);
  pointer-events: none;
  transform: translateY(-50%);
}

.projects-filter-form__search input {
  padding-left: 44px;
}

.projects-filter-form__submit .button {
  width: 100%;
  min-height: 50px;
  white-space: nowrap;
}

.projects-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  margin-top: 23px;
  border-top: 1px solid var(--rw-border);
}

.projects-active-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 6px 11px;
  background: var(--rw-red-soft);
  color: var(--rw-red-dark);
  border: 1px solid rgba(204, 13, 16, 0.13);
  border-radius: var(--rw-radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
}

/* ==========================================================================
     78. Projects Results
     ========================================================================== */

.projects-results {
  position: relative;
  background: var(--rw-white);
}

.projects-results__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.projects-results__header h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.projects-results__count {
  flex-shrink: 0;
  margin: 0 0 6px;
  color: var(--rw-muted);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.4;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.7vw, 35px);
}

/* ==========================================================================
     79. Project Cards
     ========================================================================== */

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 22px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.project-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-7px);
}

.project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.project-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.35), transparent 48%);
  content: "";
  opacity: 0.3;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.project-card:hover .project-card__media::after {
  opacity: 0.62;
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--rw-ease-out);
}

.project-card:hover .project-card__image {
  transform: scale(1.045);
}

.project-card__placeholder {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 250px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 27px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.04), transparent 46%),
    var(--rw-warm-gray);
  color: var(--rw-ink);
  text-align: center;
}

.project-card__placeholder::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 35, 40, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 35, 40, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  pointer-events: none;
}

.project-card__placeholder > * {
  position: relative;
  z-index: 1;
}

.project-card__placeholder-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 3px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 14px;
  box-shadow: var(--rw-shadow-small);
}

.project-card__placeholder-icon svg {
  width: 25px;
  height: 25px;
}

.project-card__placeholder strong {
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.project-card__placeholder small {
  max-width: 260px;
  color: var(--rw-muted);
  font-size: 0.69rem;
  line-height: 1.5;
}

.project-card__market {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 6px 10px;
  background: rgba(23, 25, 28, 0.9);
  color: var(--rw-white);
  border-left: 3px solid var(--rw-yellow);
  border-radius: 2px 7px 7px 2px;
  box-shadow: 0 8px 18px rgba(23, 25, 28, 0.18);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.project-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(23px, 2.8vw, 31px);
}

.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-bottom: 15px;
  color: var(--rw-red);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-card__meta span + span {
  position: relative;
}

.project-card__meta span + span::before {
  position: absolute;
  top: 50%;
  left: -9px;
  width: 3px;
  height: 3px;
  background: var(--rw-yellow);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.project-card__title {
  margin-bottom: 13px;
  font-size: clamp(1.28rem, 1.8vw, 1.65rem);
  line-height: 1.2;
}

.project-card__title a:hover {
  color: var(--rw-red);
}

.project-card__summary {
  margin-bottom: 20px;
  color: var(--rw-text);
  font-size: 0.83rem;
  line-height: 1.68;
}

.project-card__services {
  padding: 13px 14px;
  margin: 0 0 22px;
  background: var(--rw-off-white);
  color: var(--rw-text);
  border-left: 3px solid var(--rw-yellow);
  border-radius: 2px var(--rw-radius-small) var(--rw-radius-small) 2px;
  font-size: 0.72rem;
  line-height: 1.55;
}

.project-card__services span {
  display: block;
  margin-bottom: 3px;
  color: var(--rw-muted);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.79rem;
  font-weight: 850;
  line-height: 1.3;
}

.project-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.project-card__link:hover {
  color: var(--rw-red-dark);
}

.project-card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     80. Projects Pagination
     ========================================================================== */

.projects-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(44px, 6vw, 72px);
}

.projects-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 13px;
  margin: 4px;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-small);
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1;
}

.projects-pagination a.page-numbers:hover {
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.28);
  transform: translateY(-2px);
}

.projects-pagination .page-numbers.current {
  background: var(--rw-red);
  color: var(--rw-white);
  border-color: var(--rw-red);
  box-shadow: 0 8px 18px rgba(204, 13, 16, 0.2);
}

.projects-pagination .prev,
.projects-pagination .next {
  padding-inline: 17px;
}

/* ==========================================================================
     81. Projects Empty State
     ========================================================================== */

.projects-empty-state {
  display: flex;
  width: min(100%, 760px);
  min-height: 410px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(42px, 7vw, 78px);
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 46%),
    var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-large);
  text-align: center;
}

.projects-empty-state__icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 20px;
  box-shadow: var(--rw-shadow-small);
}

.projects-empty-state__icon svg {
  width: 31px;
  height: 31px;
}

.projects-empty-state__eyebrow {
  margin-bottom: 9px;
  color: var(--rw-red);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.projects-empty-state h2 {
  max-width: 590px;
  margin-bottom: 17px;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
}

.projects-empty-state > p:not(.projects-empty-state__eyebrow) {
  max-width: 570px;
  margin-bottom: 28px;
  color: var(--rw-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
     82. Projects CTA
     ========================================================================== */

.projects-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.projects-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  overflow: hidden;
  padding: clamp(44px, 6vw, 76px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.projects-cta__panel::before {
  position: absolute;
  top: -150px;
  right: -90px;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.projects-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 135px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.projects-cta__content,
.projects-cta__actions {
  position: relative;
  z-index: 1;
}

.projects-cta__content {
  max-width: 760px;
}

.projects-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.projects-cta h2 {
  max-width: 710px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.projects-cta__content > p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.98rem;
  line-height: 1.72;
}

.projects-cta__actions {
  display: flex;
  min-width: 220px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     83. Projects Responsive
     ========================================================================== */

@media (max-width: 1199px) {
  .projects-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
    gap: var(--rw-hero-grid-gap);
  }

  .projects-filter-form {
    grid-template-columns:
      minmax(260px, 1.4fr)
      repeat(2, minmax(155px, 0.7fr));
  }

  .projects-filter-form__submit {
    grid-column: 1 / -1;
  }

  .projects-filter-form__submit .button {
    width: auto;
    min-width: 180px;
  }

  .projects-grid {
    gap: 22px;
  }
}

@media (max-width: 1023px) {
  .projects-page #project-results {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .projects-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .projects-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .projects-hero__content {
    max-width: 820px;
  }

  .projects-hero__media {
    width: min(100%, 780px);
    justify-self: center;
  }

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

  .projects-filter-form__field--search {
    grid-column: 1 / -1;
  }

  .projects-filter-form__submit {
    grid-column: 1 / -1;
  }

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

  .projects-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .projects-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .projects-hero::before {
    width: 56%;
  }

  .projects-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .projects-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .projects-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .projects-hero__actions .button {
    width: 100%;
  }

  .projects-hero__stats {
    grid-template-columns: 1fr;
  }

  .projects-hero__stat {
    min-height: auto;
    padding: 17px 0;
  }

  .projects-hero__stat + .projects-hero__stat {
    padding-left: 0;
    border-top: 1px solid var(--rw-border);
    border-left: 0;
  }

  .projects-hero__media {
    padding: 0 0 42px 20px;
  }

  .projects-hero__media-note {
    width: min(270px, 80%);
    padding: 15px 17px;
  }

  .projects-filters {
    padding-bottom: 34px;
  }

  .projects-filters__panel {
    padding: 23px 19px;
  }

  .projects-filters__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .projects-filter-form {
    grid-template-columns: 1fr;
  }

  .projects-filter-form__field--search,
  .projects-filter-form__submit {
    grid-column: auto;
  }

  .projects-filter-form__submit .button {
    width: 100%;
  }

  .projects-results__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .projects-results__count {
    margin-bottom: 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card__content {
    padding: 24px 22px 27px;
  }

  .projects-pagination {
    flex-wrap: wrap;
  }

  .projects-pagination .page-numbers {
    min-width: 39px;
    min-height: 39px;
    padding: 7px 11px;
  }

  .projects-empty-state {
    min-height: 360px;
    padding: 42px 22px;
    border-radius: var(--rw-radius-medium);
  }

  .projects-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .projects-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .projects-cta__actions {
    flex-direction: column;
  }

  .projects-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .projects-hero__media {
    padding-left: 13px;
  }

  .projects-hero__media-note {
    right: -2px;
    width: min(245px, 86%);
  }

  .projects-active-filters {
    align-items: stretch;
    flex-direction: column;
  }

  .projects-active-filters span {
    justify-content: center;
    text-align: center;
  }

  .project-card__placeholder {
    min-height: 225px;
  }

  .project-card__meta {
    gap: 6px 14px;
  }

  .projects-pagination .prev,
  .projects-pagination .next {
    width: 100%;
  }
}

/* ==========================================================================
     84. Single Project Shared Components
     ========================================================================== */

.single-project-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.single-project-page #project-overview {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.single-project-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(38px, 5vw, 68px);
}

.single-project-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.single-project-section-heading > p {
  max-width: 520px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.94rem, 1.2vw, 1.06rem);
  line-height: 1.75;
}

.single-project-rich-text {
  color: var(--rw-text);
  font-size: 0.98rem;
  line-height: 1.78;
}

.single-project-rich-text > *:last-child {
  margin-bottom: 0;
}

.single-project-rich-text h2,
.single-project-rich-text h3,
.single-project-rich-text h4 {
  margin-top: 1.55em;
  margin-bottom: 0.65em;
}

.single-project-rich-text h2:first-child,
.single-project-rich-text h3:first-child,
.single-project-rich-text h4:first-child {
  margin-top: 0;
}

.single-project-rich-text ul,
.single-project-rich-text ol {
  display: grid;
  gap: 8px;
  padding-left: 1.25rem;
  margin-bottom: 1.5em;
}

.single-project-rich-text a {
  color: var(--rw-red);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.single-project-rich-text a:hover {
  color: var(--rw-red-dark);
}

/* ==========================================================================
     85. Single Project Hero
     ========================================================================== */

.single-project-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 55%,
    var(--rw-off-white) 55%,
    var(--rw-off-white) 100%
  );
}

.single-project-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.single-project-hero::after {
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.single-project-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(440px, 1.08fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.single-project-hero__content {
  min-width: 0;
  max-width: 700px;
}

.single-project-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.single-project-breadcrumbs a:hover {
  color: var(--rw-red);
}

.single-project-breadcrumbs span[aria-current="page"] {
  max-width: 36ch;
  overflow: hidden;
  color: var(--rw-ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single-project-hero__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
}

.single-project-hero__categories span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 6px 10px;
  background: var(--rw-red-soft);
  color: var(--rw-red-dark);
  border: 1px solid rgba(204, 13, 16, 0.14);
  border-radius: var(--rw-radius-pill);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.single-project-hero__title {
  max-width: 15ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.single-project-hero__summary {
  max-width: 650px;
  margin-bottom: var(--rw-hero-description-margin);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.single-project-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.single-project-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--rw-border);
  border-bottom: 1px solid var(--rw-border);
}

.single-project-hero__facts > div {
  min-width: 0;
  padding: 15px 18px 15px 0;
}

.single-project-hero__facts > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--rw-border);
}

.single-project-hero__facts dt {
  margin-bottom: 4px;
  color: var(--rw-muted);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.single-project-hero__facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
}

.single-project-hero__media {
  position: relative;
  width: min(100%, 640px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(26px, 3vw, 48px);
}

.single-project-hero__media::before {
  position: absolute;
  top: clamp(30px, 4vw, 54px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.single-project-hero__image,
.single-project-hero__placeholder {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 3px 3px 34px 3px;
  box-shadow: var(--rw-shadow-large);
}

.single-project-hero__image {
  height: auto;
  object-fit: cover;
}

.single-project-hero__placeholder {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: clamp(32px, 5vw, 62px);
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.045), transparent 45%),
    var(--rw-warm-gray);
  border: 1px solid var(--rw-border);
}

.single-project-hero__placeholder::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 35, 40, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 35, 40, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

.single-project-hero__placeholder > * {
  position: relative;
  z-index: 1;
}

.single-project-hero__placeholder-type {
  padding: 7px 10px;
  background: var(--rw-red);
  color: var(--rw-white);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.single-project-hero__placeholder strong {
  max-width: 16ch;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.45rem);
  line-height: 1.08;
}

.single-project-hero__placeholder p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.86rem;
  line-height: 1.62;
}

.single-project-hero__placeholder small {
  color: var(--rw-muted);
  font-size: 0.69rem;
  font-weight: 750;
}

.single-project-hero__media-note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(310px, 68%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.single-project-hero__media-note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.single-project-hero__media-note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

/* ==========================================================================
     86. Project Overview
     ========================================================================== */

.single-project-overview {
  position: relative;
  background: var(--rw-white);
}

.single-project-overview__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(290px, 0.65fr);
  align-items: start;
  gap: clamp(52px, 8vw, 116px);
}

.single-project-overview__content {
  max-width: 780px;
}

.single-project-overview__content h2 {
  max-width: 690px;
  margin-bottom: 23px;
}

.single-project-overview__content > .lead {
  margin-bottom: 31px;
}

.single-project-overview__facts {
  position: sticky;
  top: calc(var(--rw-desktop-header-height) + 30px);
  padding: clamp(25px, 3vw, 34px);
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.single-project-overview__facts h3 {
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.single-project-overview__facts dl {
  display: grid;
  margin: 0 0 22px;
  border-top: 1px solid var(--rw-border);
}

.single-project-overview__facts dl > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding-block: 15px;
  border-bottom: 1px solid var(--rw-border);
}

.single-project-overview__facts dt {
  color: var(--rw-muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.single-project-overview__facts dd {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.81rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: right;
}

.single-project-overview__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-red);
  font-size: 0.79rem;
  font-weight: 850;
}

.single-project-overview__back svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.single-project-overview__back:hover {
  color: var(--rw-red-dark);
}

.single-project-overview__back:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     87. Services and Products
     ========================================================================== */

.single-project-services {
  position: relative;
}

.single-project-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.single-project-services__card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.single-project-services__card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.single-project-services__card:hover {
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.single-project-services__number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 850;
}

.single-project-services__card h3 {
  margin-bottom: 21px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.single-project-services__card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-project-services__card li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  color: var(--rw-ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.single-project-services__card li svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.single-project-services__text {
  color: var(--rw-text);
  font-size: 0.9rem;
  line-height: 1.75;
}

.single-project-services__text > *:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
     88. Challenge and Solution
     ========================================================================== */

.single-project-case-study {
  position: relative;
  overflow: hidden;
  background: var(--rw-white);
}

.single-project-case-study::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(241, 210, 0, 0.055),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.single-project-case-study__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
}

.single-project-case-study__card {
  position: relative;
  min-width: 0;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.single-project-case-study__card:hover {
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.single-project-case-study__card--challenge {
  background: var(--rw-off-white);
}

.single-project-case-study__card--solution {
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-color: var(--rw-charcoal);
}

.single-project-case-study__card > span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 900;
}

.single-project-case-study__card--solution > span {
  color: var(--rw-yellow);
}

.single-project-case-study__card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.single-project-case-study__card--solution h3 {
  color: var(--rw-white);
}

.single-project-case-study__card--solution .single-project-rich-text {
  color: rgba(255, 255, 255, 0.68);
}

.single-project-case-study__card--solution .single-project-rich-text h2,
.single-project-case-study__card--solution .single-project-rich-text h3,
.single-project-case-study__card--solution .single-project-rich-text h4 {
  color: var(--rw-white);
}

/* ==========================================================================
     89. Before and After
     ========================================================================== */

.single-project-before-after {
  position: relative;
}

.single-project-before-after__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.single-project-before-after__item {
  min-width: 0;
}

.single-project-before-after__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-medium);
}

.single-project-before-after__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms var(--rw-ease-out);
}

.single-project-before-after__item:hover .single-project-before-after__image {
  transform: scale(1.035);
}

.single-project-before-after__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.3), transparent 42%);
  content: "";
  pointer-events: none;
}

.single-project-before-after__media > span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 7px 12px;
  background: rgba(23, 25, 28, 0.9);
  color: var(--rw-white);
  border-left: 3px solid var(--rw-yellow);
  border-radius: 2px 7px 7px 2px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ==========================================================================
     90. Project Gallery
     ========================================================================== */

.single-project-gallery {
  position: relative;
  background: var(--rw-white);
}

.single-project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(13px, 1.8vw, 22px);
}

.single-project-gallery__item {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.06);
}

.single-project-gallery__item:nth-child(5n + 1) {
  grid-column: span 8;
  grid-row: span 2;
  aspect-ratio: 16 / 10;
}

.single-project-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter var(--rw-transition),
    transform 620ms var(--rw-ease-out);
}

.single-project-gallery__item:hover .single-project-gallery__image {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.04);
}

/* ==========================================================================
     91. Related Projects
     ========================================================================== */

.single-project-related {
  position: relative;
}

.single-project-related .single-project-section-heading {
  align-items: end;
}

.single-project-related__all {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  color: var(--rw-red);
  font-size: 0.82rem;
  font-weight: 850;
}

.single-project-related__all svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.single-project-related__all:hover {
  color: var(--rw-red-dark);
}

.single-project-related__all:hover svg {
  transform: translateX(4px);
}

.single-project-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.single-project-related-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.single-project-related-card:hover {
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.single-project-related-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.single-project-related-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.32), transparent 48%);
  content: "";
  opacity: 0.35;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.single-project-related-card:hover .single-project-related-card__media::after {
  opacity: 0.62;
}

.single-project-related-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--rw-ease-out);
}

.single-project-related-card:hover .single-project-related-card__image {
  transform: scale(1.045);
}

.single-project-related-card__placeholder {
  display: flex;
  height: 100%;
  min-height: 245px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.04), transparent 44%),
    var(--rw-warm-gray);
  text-align: center;
}

.single-project-related-card__placeholder span {
  color: var(--rw-red);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.single-project-related-card__placeholder strong {
  max-width: 20ch;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.3;
}

.single-project-related-card__market {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 6px 10px;
  background: rgba(23, 25, 28, 0.9);
  color: var(--rw-white);
  border-left: 3px solid var(--rw-yellow);
  border-radius: 2px 7px 7px 2px;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.single-project-related-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 30px);
}

.single-project-related-card__category {
  margin-bottom: 11px;
  color: var(--rw-red);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.single-project-related-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  line-height: 1.22;
}

.single-project-related-card h3 a:hover {
  color: var(--rw-red);
}

.single-project-related-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.77rem;
  font-weight: 850;
}

.single-project-related-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.single-project-related-card__link:hover {
  color: var(--rw-red-dark);
}

.single-project-related-card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     92. Single Project CTA
     ========================================================================== */

.single-project-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.single-project-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.single-project-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.single-project-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.single-project-cta__content,
.single-project-cta__actions {
  position: relative;
  z-index: 1;
}

.single-project-cta__content {
  max-width: 760px;
}

.single-project-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.single-project-cta h2 {
  max-width: 710px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.single-project-cta__content > p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.98rem;
  line-height: 1.72;
}

.single-project-cta__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     93. Single Project Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .single-project-hero__grid {
    grid-template-columns:
      minmax(0, 0.95fr)
      minmax(390px, 1.05fr);
    gap: var(--rw-hero-grid-gap);
  }

  .single-project-overview__grid {
    gap: 58px;
  }

  .single-project-related__grid {
    gap: 22px;
  }
}

@media (max-width: 1023px) {
  .single-project-page #project-overview {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .single-project-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .single-project-hero__grid,
  .single-project-overview__grid {
    grid-template-columns: 1fr;
  }

  .single-project-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .single-project-hero__content {
    max-width: 820px;
  }

  .single-project-hero__media {
    width: min(100%, 820px);
    justify-self: center;
  }

  .single-project-overview__facts {
    position: static;
    width: min(100%, 720px);
  }

  .single-project-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .single-project-section-heading > p,
  .single-project-related__all {
    justify-self: start;
  }

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

  .single-project-related-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .single-project-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .single-project-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .single-project-hero::before {
    width: 56%;
  }

  .single-project-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .single-project-breadcrumbs span[aria-current="page"] {
    max-width: 24ch;
  }

  .single-project-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .single-project-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .single-project-hero__actions .button {
    width: 100%;
  }

  .single-project-hero__facts {
    grid-template-columns: 1fr;
  }

  .single-project-hero__facts > div {
    padding: 15px 0;
  }

  .single-project-hero__facts > div + div {
    padding-left: 0;
    border-top: 1px solid var(--rw-border);
    border-left: 0;
  }

  .single-project-hero__media {
    padding: 0 0 42px 18px;
  }

  .single-project-hero__placeholder {
    min-height: 330px;
    padding: 30px 24px;
  }

  .single-project-hero__media-note {
    width: min(285px, 82%);
    padding: 15px 17px;
  }

  .single-project-overview__facts {
    padding: 24px 20px;
  }

  .single-project-overview__facts dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .single-project-overview__facts dd {
    text-align: left;
  }

  .single-project-services__grid,
  .single-project-case-study__grid,
  .single-project-before-after__grid,
  .single-project-related__grid {
    grid-template-columns: 1fr;
  }

  .single-project-services__card,
  .single-project-case-study__card {
    padding: 30px 23px;
  }

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

  .single-project-gallery__item,
  .single-project-gallery__item:nth-child(5n + 1) {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .single-project-gallery__item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .single-project-related-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .single-project-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .single-project-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .single-project-cta__actions {
    flex-direction: column;
  }

  .single-project-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .single-project-hero__media {
    padding-left: 12px;
  }

  .single-project-hero__media-note {
    right: -2px;
    width: min(250px, 88%);
  }

  .single-project-gallery__grid {
    grid-template-columns: 1fr;
  }

  .single-project-gallery__item,
  .single-project-gallery__item:first-child,
  .single-project-gallery__item:nth-child(5n + 1) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .single-project-before-after__media {
    aspect-ratio: 1 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .single-project-services__card:hover,
  .single-project-case-study__card:hover,
  .single-project-related-card:hover,
  .single-project-overview__back:hover svg,
  .single-project-related__all:hover svg,
  .single-project-related-card__link:hover svg {
    transform: none;
  }

  .single-project-before-after__item:hover .single-project-before-after__image,
  .single-project-gallery__item:hover .single-project-gallery__image,
  .single-project-related-card:hover .single-project-related-card__image {
    filter: none;
    transform: none;
  }
}

/* ==========================================================================
     94. Cross-Page Typography Normalization
     ========================================================================== */

/* Keep section headings below the visual weight of every hero H1. */
.site-main h2 {
  font-size: var(--rw-type-section-title);
  line-height: 1.08;
  letter-spacing: -0.038em;
}

.site-main h3 {
  font-size: var(--rw-type-card-title);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.site-main h4 {
  font-size: clamp(1.02rem, 1.15vw, 1.22rem);
  line-height: 1.28;
  letter-spacing: -0.018em;
}

.site-main .lead {
  font-size: var(--rw-type-lead);
  line-height: 1.68;
}

/* Hero body copy remains readable without increasing hero height. */
.home-hero__description,
.projects-hero__description,
.single-project-hero__summary,
.services-hero__description,
.windows-hero__description,
.window-detail-hero__description,
.doors-hero__description,
.door-detail-hero__description,
.blog-hero__description {
  font-size: var(--rw-type-lead);
  line-height: 1.58;
}

/* Standard section introductions and explanatory copy. */
.home-section-heading__side p,
.single-project-section-heading > p,
.services-section-heading > p,
.windows-section-heading__side p,
.window-detail-section-heading > p,
.doors-section-heading__side > p,
.door-detail-section-heading > p,
.home-commercial__content > p:not(.eyebrow),
.services-guidance__content > p:not(.eyebrow),
.services-commercial__content > p:not(.eyebrow),
.windows-guidance__content > p:not(.eyebrow),
.windows-support__content > p:not(.eyebrow),
.window-detail-path__content > p:not(.eyebrow),
.doors-guidance__content > p:not(.eyebrow),
.door-detail-path__content > p:not(.eyebrow),
.window-detail-overview__content > p:last-child,
.door-detail-overview__content > p:last-child {
  font-size: var(--rw-type-body);
  line-height: 1.72;
}

/* Feature and conversion titles may be stronger, but remain below the H1. */
.footer-conversion h2,
.home-estimate h2,
.projects-cta h2,
.single-project-cta h2,
.doors-cta h2,
.blog-cta h2 {
  font-size: var(--rw-type-feature-title);
}

/* Utility headings should not compete with primary section titles. */
.projects-filters__heading h2,
.blog-filters__heading h2 {
  font-size: var(--rw-type-filter-title);
  line-height: 1.15;
}

.projects-empty-state h2,
.blog-empty-state h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}

/* Cards use one consistent title and paragraph scale across product families. */
.home-service-card h3,
.home-project-card h3,
.project-card__title,
.single-project-services__card h3,
.single-project-related-card h3,
.services-family-card h3,
.window-type-card h3,
.windows-project-card h3,
.window-configuration-card h3,
.door-system-card h3,
.doors-project-card h3,
.door-configuration-card h3,
.blog-card__title {
  font-size: var(--rw-type-card-title);
  line-height: 1.22;
}

.home-service-card__content > p:not(.home-service-card__number),
.home-project-card__content > p,
.project-card__summary,
.services-family-card__content > p,
.window-type-card__content > p,
.windows-project-card__content > p:not(.windows-project-card__location),
.door-system-card__content > p,
.doors-project-card__content > p:not(.doors-project-card__location),
.blog-card__summary {
  font-size: var(--rw-type-card-body);
  line-height: 1.66;
}

/* Small structural headings inside lists and feature rows. */
.home-manufacturing__feature h3,
.services-window-style h3,
.services-process__grid h3,
.window-detail-applications__list h3,
.door-detail-applications__list h3 {
  font-size: var(--rw-type-subheading);
  line-height: 1.32;
}

/* Shared interaction text. */
.home-text-link,
.services-text-link,
.windows-text-link,
.doors-text-link,
.blog-text-link,
.home-service-card__link,
.home-project-card__link,
.project-card__link,
.single-project-related-card__link,
.services-family-card__link,
.window-type-card__link,
.windows-project-card__link,
.door-system-card__link,
.doors-project-card__link,
.blog-card__link {
  font-size: var(--rw-type-link);
  line-height: 1.35;
}

/* Rich editorial content needs a separate reading scale. */
.single-project-rich-text,
.single-project-services__text {
  font-size: var(--rw-type-body);
  line-height: 1.78;
}

.single-project-rich-text h2 {
  font-size: clamp(1.65rem, 2vw, 2.1rem);
}

.single-project-rich-text h3 {
  font-size: clamp(1.25rem, 1.5vw, 1.55rem);
}

/* ==========================================================================
     95. Glass & Specialty Shared Components
     ========================================================================== */

.glass-specialty-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.glass-specialty-page #specialty-services {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.glass-specialty-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.glass-specialty-section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 2.7vw, 2.95rem);
}

.glass-specialty-section-heading__side {
  max-width: 530px;
  justify-self: end;
}

.glass-specialty-section-heading__side > p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.72;
}

.glass-specialty-section-heading__side .glass-specialty-text-link {
  margin-top: 18px;
}

.glass-specialty-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-size: 0.79rem;
  font-weight: 850;
  line-height: 1.3;
}

.glass-specialty-text-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--rw-transition-fast);
}

.glass-specialty-text-link:hover {
  color: var(--rw-red-dark);
}

.glass-specialty-text-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     96. Glass & Specialty Hero
     ========================================================================== */

.glass-specialty-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.glass-specialty-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.glass-specialty-hero::after {
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.glass-specialty-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.glass-specialty-hero__content {
  max-width: 780px;
}

.glass-specialty-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.45;
}

.glass-specialty-breadcrumbs a:hover {
  color: var(--rw-red);
}

.glass-specialty-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.glass-specialty-hero__content > .eyebrow {
  margin-bottom: 14px;
}

.glass-specialty-hero__title {
  max-width: 15ch;
  margin-bottom: var(--rw-hero-title-margin);
}

.glass-specialty-hero__description {
  max-width: 680px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.glass-specialty-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.glass-specialty-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.glass-specialty-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.71rem;
  font-weight: 750;
  line-height: 1.38;
}

.glass-specialty-hero__highlights svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.glass-specialty-hero__media {
  position: relative;
  width: min(100%, 570px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.glass-specialty-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.glass-specialty-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.glass-specialty-hero__image.rogers-media-placeholder {
  border-color: var(--rw-border);
}

.glass-specialty-hero__image .rogers-media-placeholder__content {
  gap: 9px;
  padding: clamp(22px, 3vw, 34px);
}

.glass-specialty-hero__image .rogers-media-placeholder__label {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.glass-specialty-hero__image .rogers-media-placeholder__group p {
  font-size: clamp(0.68rem, 0.78vw, 0.76rem);
  line-height: 1.42;
}

.glass-specialty-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(310px, 74%);
  flex-direction: column;
  gap: 4px;
  padding: 17px 20px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.glass-specialty-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.glass-specialty-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.34;
}

/* ==========================================================================
     97. Glass & Specialty Service Cards
     ========================================================================== */

.glass-specialty-services {
  position: relative;
  background: var(--rw-white);
}

.glass-specialty-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.glass-specialty-service-card {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(215px, 0.82fr)
    minmax(0, 1.18fr);
  min-width: 0;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.glass-specialty-service-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-7px);
}

.glass-specialty-service-card__media {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.glass-specialty-service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.32), transparent 48%);
  content: "";
  opacity: 0.34;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.glass-specialty-service-card:hover
  .glass-specialty-service-card__media::after {
  opacity: 0.66;
}

.glass-specialty-service-card__image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  transition: transform 580ms var(--rw-ease-out);
}

.glass-specialty-service-card:hover .glass-specialty-service-card__image {
  transform: scale(1.045);
}

.glass-specialty-service-card__image.rogers-media-placeholder {
  border: 0;
  border-radius: 0;
}

.glass-specialty-service-card__image .rogers-media-placeholder__content {
  gap: 8px;
  padding: 22px;
}

.glass-specialty-service-card__image .rogers-media-placeholder__type {
  padding: 5px 7px;
  font-size: 0.54rem;
}

.glass-specialty-service-card__image .rogers-media-placeholder__label {
  font-size: 1.02rem;
}

.glass-specialty-service-card__image .rogers-media-placeholder__path {
  padding: 5px 7px;
  font-size: 0.57rem;
}

.glass-specialty-service-card__image .rogers-media-placeholder__group span {
  font-size: 0.53rem;
}

.glass-specialty-service-card__image .rogers-media-placeholder__group p {
  font-size: 0.65rem;
  line-height: 1.4;
}

.glass-specialty-service-card__number {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border: 5px solid var(--rw-white);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(23, 25, 28, 0.16);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  transition: transform var(--rw-transition);
}

.glass-specialty-service-card:hover .glass-specialty-service-card__number {
  transform: rotate(7deg) scale(1.06);
}

.glass-specialty-service-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(27px, 3vw, 38px);
}

.glass-specialty-service-card__icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
  place-items: center;
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-radius: 13px;
}

.glass-specialty-service-card__icon svg {
  width: 23px;
  height: 23px;
}

.glass-specialty-service-card h3 {
  max-width: 21ch;
  margin-bottom: 13px;
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
  line-height: 1.2;
}

.glass-specialty-service-card h3 a:hover {
  color: var(--rw-red);
}

.glass-specialty-service-card__content > p {
  margin-bottom: 21px;
  color: var(--rw-text);
  font-size: 0.82rem;
  line-height: 1.66;
}

.glass-specialty-service-card__facts {
  display: grid;
  margin: 0 0 22px;
  border-top: 1px solid var(--rw-border);
}

.glass-specialty-service-card__facts > div {
  display: grid;
  grid-template-columns:
    minmax(78px, 0.42fr)
    minmax(0, 1.58fr);
  gap: 14px;
  padding-block: 12px;
  border-bottom: 1px solid var(--rw-border);
}

.glass-specialty-service-card__facts dt {
  color: var(--rw-muted);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.085em;
  line-height: 1.4;
  text-transform: uppercase;
}

.glass-specialty-service-card__facts dd {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.71rem;
  font-weight: 650;
  line-height: 1.48;
}

.glass-specialty-service-card__features {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
}

.glass-specialty-service-card__features li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  color: var(--rw-ink);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.46;
}

.glass-specialty-service-card__features svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.glass-specialty-service-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
}

.glass-specialty-service-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.glass-specialty-service-card__link:hover {
  color: var(--rw-red-dark);
}

.glass-specialty-service-card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     98. Glass & Specialty Comparison
     ========================================================================== */

.glass-specialty-comparison {
  position: relative;
}

.glass-specialty-comparison__table-wrap {
  overflow-x: auto;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
  scrollbar-width: thin;
  scrollbar-color: var(--rw-border) transparent;
}

.glass-specialty-comparison__table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.glass-specialty-comparison__table th,
.glass-specialty-comparison__table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rw-border);
  color: var(--rw-text);
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: left;
  vertical-align: middle;
}

.glass-specialty-comparison__table thead th {
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-bottom-color: var(--rw-charcoal);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.glass-specialty-comparison__table tbody th {
  width: 22%;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.9rem;
  font-weight: 800;
}

.glass-specialty-comparison__table tbody tr:last-child th,
.glass-specialty-comparison__table tbody tr:last-child td {
  border-bottom: 0;
}

.glass-specialty-comparison__table tbody tr {
  transition: background-color var(--rw-transition-fast);
}

.glass-specialty-comparison__table tbody tr:hover {
  background: var(--rw-red-soft);
}

.glass-specialty-comparison__table td:last-child,
.glass-specialty-comparison__table th:last-child {
  width: 70px;
  text-align: center;
}

.glass-specialty-comparison__table td:last-child a {
  display: grid;
  width: 38px;
  height: 38px;
  margin-inline: auto;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(23, 25, 28, 0.04);
}

.glass-specialty-comparison__table td:last-child a:hover {
  background: var(--rw-red);
  color: var(--rw-white);
  border-color: var(--rw-red);
  transform: translateX(3px);
}

.glass-specialty-comparison__table td:last-child svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
     99. Glass & Specialty Capabilities
     ========================================================================== */

.glass-specialty-capabilities {
  position: relative;
  overflow: hidden;
}

.glass-specialty-capabilities::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.glass-specialty-capabilities::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.glass-specialty-capabilities__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.94fr)
    minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(52px, 8vw, 116px);
}

.glass-specialty-capabilities__media {
  position: relative;
  padding: 0 0 clamp(40px, 5vw, 66px) clamp(26px, 3vw, 46px);
}

.glass-specialty-capabilities__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.glass-specialty-capabilities__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-large);
}

.glass-specialty-capabilities__image.rogers-media-placeholder {
  border-color: rgba(255, 255, 255, 0.16);
}

.glass-specialty-capabilities__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  max-width: 285px;
  flex-direction: column;
  gap: 5px;
  padding: 19px 22px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 18px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.glass-specialty-capabilities__badge span {
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.glass-specialty-capabilities__badge strong {
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.glass-specialty-capabilities__content {
  max-width: 700px;
}

.glass-specialty-capabilities__content > .eyebrow {
  color: var(--rw-yellow);
}

.glass-specialty-capabilities__content > .eyebrow::before {
  background: var(--rw-red);
}

.glass-specialty-capabilities__content h2 {
  max-width: 700px;
  margin-bottom: 21px;
  color: var(--rw-white);
  font-size: clamp(1.95rem, 2.7vw, 2.95rem);
}

.glass-specialty-capabilities__content > .lead {
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.68;
}

.glass-specialty-capabilities__list {
  display: grid;
  padding: 0;
  margin: 0 0 33px;
  border-top: 1px solid var(--rw-border-dark);
  list-style: none;
}

.glass-specialty-capabilities__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding-block: 17px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--rw-border-dark);
  font-size: 0.81rem;
  font-weight: 700;
  line-height: 1.5;
}

.glass-specialty-capabilities__list svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: rgba(241, 210, 0, 0.13);
  color: var(--rw-yellow);
  border-radius: 50%;
}

/* ==========================================================================
     100. Glass & Specialty Selection Guidance
     ========================================================================== */

.glass-specialty-guidance {
  position: relative;
  background: var(--rw-white);
}

.glass-specialty-guidance__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.glass-specialty-guidance__content {
  max-width: 700px;
}

.glass-specialty-guidance__content h2 {
  margin-bottom: 21px;
  font-size: clamp(1.95rem, 2.7vw, 2.95rem);
}

.glass-specialty-guidance__content > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--rw-text);
  font-size: clamp(0.94rem, 1vw, 1.02rem);
  line-height: 1.72;
}

.glass-specialty-guidance__steps {
  display: grid;
  margin-bottom: 32px;
  border-top: 1px solid var(--rw-border);
}

.glass-specialty-guidance__steps > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  padding-block: 18px;
  border-bottom: 1px solid var(--rw-border);
}

.glass-specialty-guidance__steps > div > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  place-items: center;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 9px;
  font-family: var(--rw-font-mono);
  font-size: 0.66rem;
  font-weight: 900;
}

.glass-specialty-guidance__steps strong {
  display: block;
  margin-bottom: 5px;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.95rem;
  line-height: 1.32;
}

.glass-specialty-guidance__steps p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.79rem;
  line-height: 1.6;
}

.glass-specialty-guidance__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 25px;
}

.glass-specialty-guidance__media {
  position: relative;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 3vw, 42px) 0 0;
}

.glass-specialty-guidance__media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 68%;
  background: var(--rw-yellow-soft);
  content: "";
}

.glass-specialty-guidance__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 30px 2px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.glass-specialty-guidance__caption {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(350px, 78%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  margin: -34px 0 0 auto;
  background: var(--rw-white);
  border-left: 4px solid var(--rw-red);
  box-shadow: var(--rw-shadow-small);
}

.glass-specialty-guidance__caption span {
  color: var(--rw-muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.glass-specialty-guidance__caption strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.95rem;
  line-height: 1.34;
}

/* ==========================================================================
     101. Glass & Specialty Projects
     ========================================================================== */

.glass-specialty-projects {
  position: relative;
}

.glass-specialty-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.glass-specialty-project-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.glass-specialty-project-card:hover {
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.glass-specialty-project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.glass-specialty-project-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.32), transparent 48%);
  content: "";
  opacity: 0.34;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.glass-specialty-project-card:hover
  .glass-specialty-project-card__media::after {
  opacity: 0.64;
}

.glass-specialty-project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--rw-ease-out);
}

.glass-specialty-project-card:hover .glass-specialty-project-card__image {
  transform: scale(1.045);
}

.glass-specialty-project-card__placeholder {
  display: flex;
  height: 100%;
  min-height: 245px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.04), transparent 44%),
    var(--rw-warm-gray);
  text-align: center;
}

.glass-specialty-project-card__placeholder span {
  color: var(--rw-red);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.glass-specialty-project-card__placeholder strong {
  max-width: 20ch;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.3;
}

.glass-specialty-project-card__market {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 6px 10px;
  background: rgba(23, 25, 28, 0.9);
  color: var(--rw-white);
  border-left: 3px solid var(--rw-yellow);
  border-radius: 2px 7px 7px 2px;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.glass-specialty-project-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 30px);
}

.glass-specialty-project-card__location {
  margin-bottom: 11px;
  color: var(--rw-red);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.glass-specialty-project-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.2rem, 1.65vw, 1.5rem);
  line-height: 1.22;
}

.glass-specialty-project-card h3 a:hover {
  color: var(--rw-red);
}

.glass-specialty-project-card__content
  > p:not(.glass-specialty-project-card__location) {
  margin-bottom: 21px;
  color: var(--rw-text);
  font-size: 0.81rem;
  line-height: 1.65;
}

.glass-specialty-project-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.77rem;
  font-weight: 850;
}

.glass-specialty-project-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.glass-specialty-project-card__link:hover {
  color: var(--rw-red-dark);
}

.glass-specialty-project-card__link:hover svg {
  transform: translateX(4px);
}

.glass-specialty-projects__empty {
  display: flex;
  width: min(100%, 760px);
  min-height: 360px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 7vw, 72px);
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 46%),
    var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-large);
  text-align: center;
}

.glass-specialty-projects__empty h3 {
  max-width: 560px;
  margin-bottom: 15px;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.glass-specialty-projects__empty > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 27px;
  color: var(--rw-text);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ==========================================================================
     102. Glass & Specialty Final CTA
     ========================================================================== */

.glass-specialty-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.glass-specialty-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.glass-specialty-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.glass-specialty-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.glass-specialty-cta__content,
.glass-specialty-cta__actions {
  position: relative;
  z-index: 1;
}

.glass-specialty-cta__content {
  max-width: 760px;
}

.glass-specialty-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.glass-specialty-cta h2 {
  max-width: 710px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(2rem, 2.9vw, 3.15rem);
}

.glass-specialty-cta__content > p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.96rem;
  line-height: 1.72;
}

.glass-specialty-cta__actions {
  display: flex;
  min-width: 235px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     103. Glass & Specialty Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .glass-specialty-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .glass-specialty-service-card {
    grid-template-columns:
      minmax(190px, 0.76fr)
      minmax(0, 1.24fr);
  }

  .glass-specialty-capabilities__grid,
  .glass-specialty-guidance__grid {
    gap: 60px;
  }

  .glass-specialty-projects__grid {
    gap: 22px;
  }
}

@media (max-width: 1023px) {
  .glass-specialty-page #specialty-services {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .glass-specialty-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .glass-specialty-hero__grid,
  .glass-specialty-capabilities__grid,
  .glass-specialty-guidance__grid {
    grid-template-columns: 1fr;
  }

  .glass-specialty-hero__content,
  .glass-specialty-capabilities__content,
  .glass-specialty-guidance__content {
    max-width: 810px;
  }

  .glass-specialty-hero__media,
  .glass-specialty-capabilities__media,
  .glass-specialty-guidance__media {
    width: min(100%, 780px);
  }

  .glass-specialty-hero__media {
    justify-self: center;
  }

  .glass-specialty-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .glass-specialty-section-heading__side {
    max-width: 690px;
    justify-self: start;
  }

  .glass-specialty-service-card {
    grid-template-columns: 1fr;
  }

  .glass-specialty-service-card__media {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .glass-specialty-service-card__image {
    aspect-ratio: 16 / 9;
  }

  .glass-specialty-capabilities__grid,
  .glass-specialty-guidance__grid {
    gap: 54px;
  }

  .glass-specialty-capabilities__media,
  .glass-specialty-guidance__media {
    justify-self: start;
  }

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

  .glass-specialty-project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .glass-specialty-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .glass-specialty-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .glass-specialty-hero::before {
    width: 56%;
  }

  .glass-specialty-hero__title {
    max-width: 16ch;
  }

  .glass-specialty-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .glass-specialty-hero__actions .button {
    width: 100%;
  }

  .glass-specialty-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .glass-specialty-hero__media {
    padding: 0 0 42px 18px;
  }

  .glass-specialty-hero__note {
    width: min(285px, 84%);
    padding: 15px 17px;
  }

  .glass-specialty-services__grid,
  .glass-specialty-projects__grid {
    grid-template-columns: 1fr;
  }

  .glass-specialty-service-card__content {
    padding: 28px 22px 31px;
  }

  .glass-specialty-service-card__facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .glass-specialty-project-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .glass-specialty-comparison__table th,
  .glass-specialty-comparison__table td {
    padding: 17px 18px;
  }

  .glass-specialty-capabilities__media {
    padding: 0 0 40px 18px;
  }

  .glass-specialty-capabilities__badge {
    max-width: 245px;
    padding: 16px 18px;
  }

  .glass-specialty-capabilities__content .button {
    width: 100%;
  }

  .glass-specialty-guidance__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .glass-specialty-guidance__actions .button {
    width: 100%;
  }

  .glass-specialty-guidance__media {
    padding: 20px 20px 0 0;
  }

  .glass-specialty-guidance__caption {
    width: min(315px, 90%);
  }

  .glass-specialty-project-card__content {
    padding: 24px 22px 27px;
  }

  .glass-specialty-projects__empty {
    min-height: 330px;
    padding: 40px 22px;
    border-radius: var(--rw-radius-medium);
  }

  .glass-specialty-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .glass-specialty-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .glass-specialty-cta__actions {
    flex-direction: column;
  }

  .glass-specialty-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .glass-specialty-hero__media,
  .glass-specialty-capabilities__media {
    padding-left: 12px;
  }

  .glass-specialty-hero__note {
    right: -2px;
    width: min(255px, 88%);
  }

  .glass-specialty-service-card__media {
    aspect-ratio: 4 / 3;
  }

  .glass-specialty-service-card__image {
    aspect-ratio: 4 / 3;
  }

  .glass-specialty-service-card__number {
    top: 14px;
    left: 14px;
    width: 39px;
    height: 39px;
  }

  .glass-specialty-capabilities__badge {
    right: -2px;
    max-width: 220px;
  }

  .glass-specialty-guidance__steps > div {
    gap: 13px;
  }

  .glass-specialty-guidance__caption {
    width: min(285px, 94%);
    padding: 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glass-specialty-service-card:hover,
  .glass-specialty-project-card:hover,
  .glass-specialty-comparison__table td:last-child a:hover {
    transform: none;
  }

  .glass-specialty-service-card:hover .glass-specialty-service-card__image,
  .glass-specialty-project-card:hover .glass-specialty-project-card__image {
    transform: none;
  }

  .glass-specialty-service-card:hover .glass-specialty-service-card__number,
  .glass-specialty-service-card__link:hover svg,
  .glass-specialty-project-card__link:hover svg,
  .glass-specialty-text-link:hover svg {
    transform: none;
  }
}

/* ==========================================================================
     104. Glass Detail Shared Components
     ========================================================================== */

.glass-detail-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.glass-detail-services[id] {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.glass-detail-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.glass-detail-section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 2.75vw, 2.95rem);
}

.glass-detail-section-heading > p {
  max-width: 530px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.72;
}

/* ==========================================================================
     105. Glass Detail Hero
     ========================================================================== */

.glass-detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.glass-detail-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.glass-detail-hero::after {
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.glass-detail-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.glass-detail-hero__content {
  max-width: 780px;
}

.glass-detail-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.45;
}

.glass-detail-breadcrumbs a:hover {
  color: var(--rw-red);
}

.glass-detail-breadcrumbs span[aria-current="page"] {
  max-width: 42ch;
  overflow: hidden;
  color: var(--rw-ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.glass-detail-hero__content > .eyebrow {
  margin-bottom: 14px;
}

.glass-detail-hero__title {
  max-width: 15ch;
  margin-bottom: var(--rw-hero-title-margin);
}

.glass-detail-hero__description {
  max-width: 680px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: var(--rw-hero-description-line-height);
}

.glass-detail-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.glass-detail-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.glass-detail-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.71rem;
  font-weight: 750;
  line-height: 1.38;
}

.glass-detail-hero__highlights svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.glass-detail-hero__media {
  position: relative;
  width: min(100%, 570px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.glass-detail-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.glass-detail-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.glass-detail-hero__image.rogers-media-placeholder {
  border-color: var(--rw-border);
}

.glass-detail-hero__image .rogers-media-placeholder__content {
  gap: 9px;
  padding: clamp(22px, 3vw, 34px);
}

.glass-detail-hero__image .rogers-media-placeholder__label {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.glass-detail-hero__image .rogers-media-placeholder__group p {
  font-size: clamp(0.68rem, 0.78vw, 0.76rem);
  line-height: 1.42;
}

.glass-detail-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(310px, 74%);
  flex-direction: column;
  gap: 4px;
  padding: 17px 20px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.glass-detail-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.glass-detail-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.34;
}

/* ==========================================================================
     106. Glass Detail Overview
     ========================================================================== */

.glass-detail-overview {
  position: relative;
  background: var(--rw-white);
}

.glass-detail-overview__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(300px, 0.82fr);
  align-items: start;
  gap: clamp(50px, 8vw, 116px);
}

.glass-detail-overview__content {
  max-width: 760px;
}

.glass-detail-overview__content h2 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(1.95rem, 2.75vw, 2.95rem);
}

.glass-detail-overview__content > .lead {
  margin-bottom: 24px;
  font-size: clamp(0.98rem, 1.1vw, 1.07rem);
  line-height: 1.7;
}

.glass-detail-overview__content > p:last-child {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.92rem;
  line-height: 1.76;
}

.glass-detail-overview__facts {
  display: grid;
  overflow: hidden;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.glass-detail-overview__facts > div {
  display: grid;
  grid-template-columns:
    minmax(90px, 0.68fr)
    minmax(0, 1.32fr);
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 18px 22px;
  background: var(--rw-white);
  border-bottom: 1px solid var(--rw-border);
}

.glass-detail-overview__facts > div:last-child {
  border-bottom: 0;
}

.glass-detail-overview__facts span {
  color: var(--rw-muted);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.glass-detail-overview__facts strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* ==========================================================================
     107. Glass Detail Service Directions
     ========================================================================== */

.glass-detail-services {
  position: relative;
}

.glass-detail-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--rw-border);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
}

.glass-detail-service-card {
  position: relative;
  min-width: 0;
  min-height: 285px;
  padding: clamp(27px, 3vw, 38px);
  background: var(--rw-white);
  transition:
    background-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.glass-detail-service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 74%,
    var(--rw-yellow) 74% 100%
  );
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition:
    opacity var(--rw-transition),
    transform var(--rw-transition);
}

.glass-detail-service-card:hover {
  z-index: 1;
  background: var(--rw-off-white);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.glass-detail-service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.glass-detail-service-card__number {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.glass-detail-service-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.2rem, 1.55vw, 1.48rem);
  line-height: 1.2;
}

.glass-detail-service-card p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.82rem;
  line-height: 1.68;
}

/* ==========================================================================
     108. Glass Detail Performance
     ========================================================================== */

.glass-detail-performance {
  position: relative;
  overflow: hidden;
}

.glass-detail-performance::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.glass-detail-performance::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.glass-detail-performance__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.94fr)
    minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(52px, 8vw, 116px);
}

.glass-detail-performance__media {
  position: relative;
  padding: 0 0 clamp(40px, 5vw, 66px) clamp(26px, 3vw, 46px);
}

.glass-detail-performance__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.glass-detail-performance__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-large);
}

.glass-detail-performance__image.rogers-media-placeholder {
  border-color: rgba(255, 255, 255, 0.16);
}

.glass-detail-performance__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  max-width: 285px;
  flex-direction: column;
  gap: 5px;
  padding: 19px 22px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 18px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.glass-detail-performance__badge span {
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.glass-detail-performance__badge strong {
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.glass-detail-performance__content {
  max-width: 700px;
}

.glass-detail-performance__content > .eyebrow {
  color: var(--rw-yellow);
}

.glass-detail-performance__content > .eyebrow::before {
  background: var(--rw-red);
}

.glass-detail-performance__content h2 {
  max-width: 700px;
  margin-bottom: 21px;
  color: var(--rw-white);
  font-size: clamp(1.95rem, 2.75vw, 2.95rem);
}

.glass-detail-performance__content > .lead {
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.1vw, 1.07rem);
  line-height: 1.7;
}

.glass-detail-performance__list {
  display: grid;
  padding: 0;
  margin: 0 0 33px;
  border-top: 1px solid var(--rw-border-dark);
  list-style: none;
}

.glass-detail-performance__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding-block: 17px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--rw-border-dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.glass-detail-performance__list svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: rgba(241, 210, 0, 0.13);
  color: var(--rw-yellow);
  border-radius: 50%;
}

/* ==========================================================================
     109. Glass Detail Applications
     ========================================================================== */

.glass-detail-applications {
  position: relative;
  background: var(--rw-white);
}

.glass-detail-applications__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.94fr)
    minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.glass-detail-applications__content {
  max-width: 700px;
}

.glass-detail-applications__content h2 {
  margin-bottom: 29px;
  font-size: clamp(1.95rem, 2.75vw, 2.95rem);
}

.glass-detail-applications__list {
  display: grid;
  border-top: 1px solid var(--rw-border);
}

.glass-detail-applications__list > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  padding-block: 18px;
  border-bottom: 1px solid var(--rw-border);
}

.glass-detail-applications__list > div > svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  padding: 4px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.glass-detail-applications__list h3 {
  margin-bottom: 5px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.glass-detail-applications__list p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.81rem;
  line-height: 1.62;
}

.glass-detail-applications__media {
  position: relative;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 3vw, 42px) 0 0;
}

.glass-detail-applications__media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 68%;
  background: var(--rw-yellow-soft);
  content: "";
}

.glass-detail-applications__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 30px 2px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

/* ==========================================================================
     110. Glass Detail Selection Guidance
     ========================================================================== */

.glass-detail-benefits {
  position: relative;
}

.glass-detail-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.glass-detail-benefits__column {
  position: relative;
  min-width: 0;
  padding: clamp(30px, 4vw, 48px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
}

.glass-detail-benefits__column--positive {
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-color: var(--rw-charcoal);
}

.glass-detail-benefits__column::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.glass-detail-benefits__column--positive::before {
  background: linear-gradient(
    90deg,
    var(--rw-yellow) 0 76%,
    var(--rw-red) 76% 100%
  );
}

.glass-detail-benefits__label {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--rw-red);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.glass-detail-benefits__column--positive .glass-detail-benefits__label {
  color: var(--rw-yellow);
}

.glass-detail-benefits__column ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.glass-detail-benefits__column li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding-block: 16px;
  color: var(--rw-ink);
  border-bottom: 1px solid var(--rw-border);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.52;
}

.glass-detail-benefits__column li:first-child {
  padding-top: 0;
}

.glass-detail-benefits__column li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.glass-detail-benefits__column li svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.glass-detail-benefits__column--positive li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: var(--rw-border-dark);
}

.glass-detail-benefits__column--positive li svg {
  background: rgba(241, 210, 0, 0.13);
  color: var(--rw-yellow);
}

/* ==========================================================================
     111. Glass Detail Project Path
     ========================================================================== */

.glass-detail-path {
  position: relative;
  background: var(--rw-white);
}

.glass-detail-path__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.glass-detail-path__content {
  max-width: 690px;
}

.glass-detail-path__content h2 {
  margin-bottom: 21px;
  font-size: clamp(1.95rem, 2.75vw, 2.95rem);
}

.glass-detail-path__content > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--rw-text);
  font-size: clamp(0.96rem, 1.05vw, 1.03rem);
  line-height: 1.74;
}

.glass-detail-path__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.glass-detail-path__links {
  display: grid;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.glass-detail-path__links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 20px;
  min-height: 112px;
  padding: 22px 24px;
  color: var(--rw-ink);
  border-bottom: 1px solid var(--rw-border);
}

.glass-detail-path__links a:last-child {
  border-bottom: 0;
}

.glass-detail-path__links a:hover {
  background: var(--rw-off-white);
  color: var(--rw-red);
}

.glass-detail-path__links span {
  grid-column: 1;
  color: var(--rw-muted);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.glass-detail-path__links strong {
  grid-column: 1;
  max-width: 44ch;
  color: inherit;
  font-family: var(--rw-font-heading);
  font-size: 0.9rem;
  line-height: 1.38;
}

.glass-detail-path__links svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 20px;
  height: 20px;
  color: var(--rw-red);
  transition: transform var(--rw-transition-fast);
}

.glass-detail-path__links a:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     112. Glass Detail Responsive and Reduced Motion
     ========================================================================== */

@media (min-width: 1024px) and (max-height: 980px) {
  .glass-detail-section-heading h2,
  .glass-detail-overview__content h2,
  .glass-detail-performance__content h2,
  .glass-detail-applications__content h2,
  .glass-detail-path__content h2 {
    font-size: clamp(1.85rem, 2.35vw, 2.55rem);
  }
}

@media (max-width: 1199px) {
  .glass-detail-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .glass-detail-overview__grid,
  .glass-detail-performance__grid,
  .glass-detail-applications__grid,
  .glass-detail-path__grid {
    gap: 58px;
  }

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

@media (max-width: 1023px) {
  .glass-detail-services[id] {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .glass-detail-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .glass-detail-hero__grid,
  .glass-detail-overview__grid,
  .glass-detail-performance__grid,
  .glass-detail-applications__grid,
  .glass-detail-path__grid {
    grid-template-columns: 1fr;
  }

  .glass-detail-hero__content,
  .glass-detail-overview__content,
  .glass-detail-performance__content,
  .glass-detail-applications__content,
  .glass-detail-path__content {
    max-width: 810px;
  }

  .glass-detail-hero__media,
  .glass-detail-performance__media,
  .glass-detail-applications__media {
    width: min(100%, 780px);
  }

  .glass-detail-hero__media {
    justify-self: center;
  }

  .glass-detail-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .glass-detail-section-heading > p {
    max-width: 690px;
    justify-self: start;
  }

  .glass-detail-overview__facts,
  .glass-detail-path__links {
    width: min(100%, 760px);
  }

  .glass-detail-performance__media,
  .glass-detail-applications__media {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .glass-detail-hero::before {
    width: 56%;
  }

  .glass-detail-breadcrumbs span[aria-current="page"] {
    max-width: 24ch;
  }

  .glass-detail-hero__title {
    max-width: 16ch;
  }

  .glass-detail-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .glass-detail-hero__actions .button {
    width: 100%;
  }

  .glass-detail-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .glass-detail-hero__media {
    padding: 0 0 42px 18px;
  }

  .glass-detail-hero__note {
    width: min(285px, 84%);
    padding: 15px 17px;
  }

  .glass-detail-overview__facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 0;
    padding: 16px 19px;
  }

  .glass-detail-services__grid,
  .glass-detail-benefits__grid {
    grid-template-columns: 1fr;
  }

  .glass-detail-service-card {
    min-height: auto;
    padding: 29px 23px 31px;
  }

  .glass-detail-service-card__number {
    margin-bottom: 23px;
  }

  .glass-detail-performance__media {
    padding: 0 0 40px 18px;
  }

  .glass-detail-performance__badge {
    max-width: 245px;
    padding: 16px 18px;
  }

  .glass-detail-performance__content .button {
    width: 100%;
  }

  .glass-detail-applications__media {
    padding: 20px 20px 0 0;
  }

  .glass-detail-benefits__column {
    padding: 30px 23px;
  }

  .glass-detail-path__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .glass-detail-path__actions .button {
    width: 100%;
  }

  .glass-detail-path__links a {
    min-height: 105px;
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .glass-detail-hero__media,
  .glass-detail-performance__media {
    padding-left: 12px;
  }

  .glass-detail-hero__note {
    right: -2px;
    width: min(255px, 88%);
  }

  .glass-detail-performance__badge {
    right: -2px;
    max-width: 220px;
  }

  .glass-detail-applications__list > div {
    gap: 12px;
  }

  .glass-detail-path__links a {
    grid-template-columns: minmax(0, 1fr) 20px;
    gap: 5px 12px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glass-detail-service-card:hover,
  .glass-detail-path__links a:hover svg {
    transform: none;
  }
}

/* ==========================================================================
   113. Window Options & Customization Shared Components
   ========================================================================== */

.window-options-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.window-options-page #window-options-model,
.window-options-page #frame-options,
.window-options-page #grid-patterns,
.window-options-page #glass-options,
.window-options-page #combined-assemblies {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.window-options-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.window-options-section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.window-options-section-heading > p,
.window-options-section-heading > a {
  justify-self: end;
}

.window-options-section-heading > p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: var(--rw-type-body);
  line-height: 1.72;
}

.window-options-section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 870px;
  margin-inline: auto;
  text-align: center;
}

.window-options-section-heading--center > p {
  max-width: 690px;
  justify-self: center;
}

.window-options-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-size: var(--rw-type-link);
  font-weight: 850;
  line-height: 1.35;
}

.window-options-text-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.window-options-text-link:hover {
  color: var(--rw-red-dark);
}

.window-options-text-link:hover svg {
  transform: translateX(4px);
}

.window-options-page h2 {
  font-size: var(--rw-type-section-title);
}

.window-options-page h3 {
  font-size: var(--rw-type-card-title);
}

/* ==========================================================================
       114. Window Options & Customization Hero
       ========================================================================== */

.window-options-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.window-options-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.window-options-hero::after {
  position: absolute;
  right: -170px;
  bottom: -235px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.window-options-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.window-options-hero__content {
  min-width: 0;
  max-width: 780px;
}

.window-options-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.window-options-breadcrumbs a:hover {
  color: var(--rw-red);
}

.window-options-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.window-options-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.window-options-hero__description {
  max-width: 690px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-type-lead);
  line-height: 1.58;
}

.window-options-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.window-options-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.window-options-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.window-options-hero__highlights svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.window-options-hero__media {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.window-options-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.window-options-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.window-options-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(320px, 72%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.window-options-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.window-options-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

/* ==========================================================================
       115. Window Style Foundation Cards
       ========================================================================== */

.window-options-styles {
  position: relative;
  background: var(--rw-white);
}

.window-options-styles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.window-options-style-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 17px;
  min-width: 0;
  min-height: 190px;
  padding: clamp(25px, 3vw, 34px);
  overflow: hidden;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.045);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.window-options-style-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left;
  transition:
    opacity var(--rw-transition-fast),
    transform var(--rw-transition);
}

.window-options-style-card:hover,
.window-options-style-card:focus-visible {
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.window-options-style-card:hover::before,
.window-options-style-card:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.window-options-style-card__number {
  display: inline-flex;
  padding-top: 3px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.2;
}

.window-options-style-card__content {
  min-width: 0;
}

.window-options-style-card__content h3 {
  margin-bottom: 11px;
  color: inherit;
  font-size: var(--rw-type-card-title);
  line-height: 1.22;
}

.window-options-style-card__content p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: var(--rw-type-card-body);
  line-height: 1.66;
}

.window-options-style-card__arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--rw-muted);
}

.window-options-style-card__arrow svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.window-options-style-card:hover .window-options-style-card__arrow,
.window-options-style-card:focus-visible .window-options-style-card__arrow {
  color: var(--rw-red);
}

.window-options-style-card:hover .window-options-style-card__arrow svg,
.window-options-style-card:focus-visible .window-options-style-card__arrow svg {
  transform: translateX(4px);
}

/* ==========================================================================
       116. Interactive 3D Window Frame Presentation
       ========================================================================== */

.window-options-model {
  position: relative;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.window-options-model::before {
  position: absolute;
  top: -170px;
  right: -100px;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.12), transparent 68%);
  content: "";
  pointer-events: none;
}

.window-options-model::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 145px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.window-options-model__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.window-options-model__viewer {
  position: relative;
  min-width: 0;
  padding: 0 0 clamp(42px, 5vw, 68px) clamp(26px, 3vw, 46px);
}

.window-options-model__viewer::before {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

/* Interactive model surfaces retain the dark product-viewer treatment. */
.window-options-model__canvas,
.window-options-model__viewer > model-viewer,
.window-options-model__viewer > .rogers-model {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: clamp(400px, 44vw, 600px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-charcoal-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-large);
}

/*
   * The poster uses the universal image/placeholder presentation.
   * Keeping it separate prevents the dark model-viewer background and forced
   * minimum height from overriding the global compact placeholder system.
   */
.window-options-model__poster {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 44%),
    var(--rw-warm-gray);
  border: 1px solid var(--rw-border);
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-large);
  object-fit: cover;
}

.window-options-model__poster.rogers-media-placeholder {
  min-height: 0 !important;
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 44%),
    var(--rw-warm-gray) !important;
  color: var(--rw-ink);
  border-color: var(--rw-border);
}

.window-options-model__status {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(330px, 70%);
  flex-direction: column;
  gap: 5px;
  padding: 18px 22px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 18px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.window-options-model__status span {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.window-options-model__status strong {
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

.window-options-model__content {
  max-width: 700px;
}

.window-options-model__content h2 {
  margin-bottom: 22px;
  color: var(--rw-white);
}

.window-options-model__content > .lead {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
}

.window-options-model__list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--rw-border-dark);
  list-style: none;
}

.window-options-model__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding-block: 16px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--rw-border-dark);
  font-size: var(--rw-type-card-body);
  font-weight: 650;
  line-height: 1.55;
}

.window-options-model__list svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: rgba(241, 210, 0, 0.13);
  color: var(--rw-yellow);
  border-radius: 50%;
}

/* ==========================================================================
       117. Main Customization Groups
       ========================================================================== */

.window-options-groups {
  position: relative;
  background: var(--rw-white);
}

.window-options-groups__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.7vw, 34px);
}

.window-options-group-card {
  position: relative;
  min-width: 0;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.window-options-group-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.window-options-group-card:hover {
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.window-options-group-card__number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.2;
}

.window-options-group-card h3 {
  margin-bottom: 15px;
  font-size: var(--rw-type-card-title);
}

.window-options-group-card > p {
  margin-bottom: 23px;
  color: var(--rw-text);
  font-size: var(--rw-type-card-body);
  line-height: 1.68;
}

.window-options-group-card ul {
  display: grid;
  gap: 11px;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid var(--rw-border);
  list-style: none;
}

.window-options-group-card li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--rw-ink);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.5;
}

.window-options-group-card li svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

/* ==========================================================================
       118. Frame, Glass and Visible Detail Coordination
       ========================================================================== */

.window-options-details {
  position: relative;
  overflow: hidden;
}

.window-options-details__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.window-options-details__media {
  position: relative;
  padding: 0 0 clamp(40px, 5vw, 66px) clamp(26px, 3vw, 46px);
}

.window-options-details__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  background: var(--rw-red-soft);
  content: "";
  pointer-events: none;
}

.window-options-details__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.window-options-details__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(285px, 68%);
  flex-direction: column;
  gap: 5px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.window-options-details__badge span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.window-options-details__badge strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.35;
}

.window-options-details__content {
  max-width: 720px;
}

.window-options-details__content h2 {
  margin-bottom: 22px;
}

.window-options-details__content > .lead {
  margin-bottom: 30px;
}

.window-options-details__list {
  display: grid;
  border-top: 1px solid var(--rw-border);
}

.window-options-details__list > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  padding-block: 18px;
  border-bottom: 1px solid var(--rw-border);
}

.window-options-details__list > div > span {
  padding-top: 3px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.67rem;
  font-weight: 850;
  line-height: 1.25;
}

.window-options-details__list h3 {
  margin-bottom: 5px;
  font-size: var(--rw-type-subheading);
  line-height: 1.32;
}

.window-options-details__list p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: var(--rw-type-card-body);
  line-height: 1.62;
}

/* ==========================================================================
       119. Combined Window Configurations
       ========================================================================== */

.window-options-configurations {
  position: relative;
  background: var(--rw-white);
}

.window-options-configurations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(17px, 2vw, 25px);
}

.window-options-configuration-card {
  position: relative;
  min-width: 0;
  min-height: 255px;
  padding: clamp(27px, 3vw, 36px);
  overflow: hidden;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  transition:
    background-color var(--rw-transition),
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.window-options-configuration-card::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(204, 13, 16, 0.11);
  border-radius: 50%;
  content: "";
}

.window-options-configuration-card:hover {
  background: var(--rw-white);
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.window-options-configuration-card > span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.69rem;
  font-weight: 850;
  line-height: 1.2;
}

.window-options-configuration-card h3 {
  max-width: 18ch;
  margin-bottom: 13px;
  font-size: var(--rw-type-card-title);
}

.window-options-configuration-card p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: var(--rw-type-card-body);
  line-height: 1.67;
}

/* ==========================================================================
       120. Measurement and Selection Guidance
       ========================================================================== */

.window-options-guidance {
  position: relative;
  overflow: hidden;
}

.window-options-guidance::before {
  position: absolute;
  top: -180px;
  left: -130px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(204, 13, 16, 0.07), transparent 68%);
  content: "";
  pointer-events: none;
}

.window-options-guidance__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(54px, 8vw, 118px);
}

.window-options-guidance__content {
  position: sticky;
  top: calc(var(--rw-desktop-header-height) + 30px);
  max-width: 660px;
}

.window-options-guidance__content h2 {
  margin-bottom: 22px;
}

.window-options-guidance__content > .lead {
  margin-bottom: 30px;
}

.window-options-guidance__steps {
  display: grid;
  border-top: 1px solid var(--rw-border);
}

.window-options-guidance-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px solid var(--rw-border);
}

.window-options-guidance-step > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--rw-charcoal);
  color: var(--rw-yellow);
  border-radius: 12px;
  font-family: var(--rw-font-mono);
  font-size: 0.67rem;
  font-weight: 850;
  line-height: 1;
}

.window-options-guidance-step h3 {
  margin-bottom: 7px;
  font-size: var(--rw-type-subheading);
  line-height: 1.32;
}

.window-options-guidance-step p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: var(--rw-type-card-body);
  line-height: 1.64;
}

/* ==========================================================================
       121. Window Options Projects
       ========================================================================== */

.window-options-projects {
  position: relative;
  background: var(--rw-white);
}

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

.window-options-projects__empty {
  display: flex;
  width: min(100%, 760px);
  min-height: 390px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(42px, 7vw, 76px);
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 46%),
    var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-large);
  text-align: center;
}

.window-options-projects__empty > span {
  margin-bottom: 10px;
  color: var(--rw-red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.window-options-projects__empty h3 {
  max-width: 590px;
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.35vw, 2.25rem);
  line-height: 1.12;
}

.window-options-projects__empty p {
  max-width: 560px;
  margin-bottom: 27px;
  color: var(--rw-text);
  font-size: var(--rw-type-body);
  line-height: 1.7;
}

/* ==========================================================================
       122. Window Options Final CTA
       ========================================================================== */

.window-options-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.window-options-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.window-options-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.window-options-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.window-options-cta__content,
.window-options-cta__actions {
  position: relative;
  z-index: 1;
}

.window-options-cta__content {
  max-width: 770px;
}

.window-options-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.window-options-cta h2 {
  max-width: 720px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: var(--rw-type-feature-title);
}

.window-options-cta__content > p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: var(--rw-type-body);
  line-height: 1.72;
}

.window-options-cta__actions {
  display: flex;
  min-width: 230px;
  flex-direction: column;
  gap: 11px;
}

.window-options-cta__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--rw-type-link);
  font-weight: 850;
  line-height: 1.35;
}

.window-options-cta__contact svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.window-options-cta__contact:hover {
  color: var(--rw-yellow);
}

.window-options-cta__contact:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
       123. Window Options Responsive and Reduced Motion
       ========================================================================== */

@media (max-width: 1199px) {
  .window-options-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

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

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

  .window-options-model__grid,
  .window-options-details__grid,
  .window-options-guidance__grid {
    gap: 58px;
  }
}

@media (max-width: 1023px) {
  .window-options-page #window-options-model,
  .window-options-page #frame-options,
  .window-options-page #grid-patterns,
  .window-options-page #glass-options,
  .window-options-page #combined-assemblies {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .window-options-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .window-options-hero__grid,
  .window-options-model__grid,
  .window-options-details__grid,
  .window-options-guidance__grid {
    grid-template-columns: 1fr;
  }

  .window-options-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .window-options-hero__content {
    max-width: 820px;
  }

  .window-options-hero__media {
    width: min(100%, 780px);
    justify-self: center;
  }

  .window-options-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .window-options-section-heading > p,
  .window-options-section-heading > a {
    justify-self: start;
  }

  .window-options-section-heading--center {
    justify-items: center;
  }

  .window-options-section-heading--center > p {
    justify-self: center;
  }

  .window-options-model__viewer,
  .window-options-details__media {
    width: min(100%, 780px);
  }

  .window-options-model__content,
  .window-options-details__content,
  .window-options-guidance__content {
    max-width: 780px;
  }

  .window-options-guidance__content {
    position: static;
  }

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

  .window-options-projects__grid .project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .window-options-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .window-options-cta__actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .window-options-cta__contact {
    flex-basis: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .window-options-hero::before {
    width: 56%;
  }

  .window-options-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .window-options-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .window-options-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .window-options-hero__actions .button {
    width: 100%;
  }

  .window-options-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .window-options-hero__media {
    padding: 0 0 42px 18px;
  }

  .window-options-hero__note {
    width: min(285px, 82%);
    padding: 15px 17px;
  }

  .window-options-styles__grid,
  .window-options-groups__grid,
  .window-options-configurations__grid,
  .window-options-projects__grid {
    grid-template-columns: 1fr;
  }

  .window-options-style-card {
    min-height: auto;
    padding: 25px 22px 27px;
  }

  .window-options-model__viewer {
    padding: 0 0 42px 18px;
  }

  .window-options-model__canvas,
  .window-options-model__viewer > model-viewer,
  .window-options-model__viewer > .rogers-model {
    min-height: 340px;
  }

  .window-options-model__poster {
    min-height: 0;
  }

  .window-options-model__status {
    width: min(285px, 82%);
    padding: 15px 17px;
  }

  .window-options-model__content .button {
    width: 100%;
  }

  .window-options-group-card {
    padding: 30px 23px;
  }

  .window-options-details__media {
    padding: 0 0 40px 18px;
  }

  .window-options-details__badge {
    width: min(255px, 80%);
    padding: 15px 17px;
  }

  .window-options-configuration-card {
    min-height: auto;
    padding: 29px 23px 31px;
  }

  .window-options-configuration-card > span {
    margin-bottom: 24px;
  }

  .window-options-guidance__content .button {
    width: 100%;
  }

  .window-options-guidance-step {
    gap: 15px;
    padding-block: 20px;
  }

  .window-options-guidance-step > span {
    width: 38px;
    height: 38px;
  }

  .window-options-projects__grid .project-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .window-options-projects__empty {
    min-height: 350px;
    padding: 42px 22px;
    border-radius: var(--rw-radius-medium);
  }

  .window-options-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .window-options-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .window-options-cta__actions {
    flex-direction: column;
  }

  .window-options-cta__actions .button {
    width: 100%;
  }

  .window-options-cta__contact {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .window-options-breadcrumbs {
    font-size: 0.67rem;
  }

  .window-options-hero__media,
  .window-options-model__viewer,
  .window-options-details__media {
    padding-left: 12px;
  }

  .window-options-hero__note,
  .window-options-model__status,
  .window-options-details__badge {
    right: -2px;
    width: min(250px, 88%);
  }

  .window-options-style-card {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 11px;
  }

  .window-options-style-card__number {
    grid-column: 1 / -1;
  }

  .window-options-details__list > div {
    gap: 13px;
  }

  .window-options-guidance-step {
    grid-template-columns: 1fr;
  }

  .window-options-guidance-step > span {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .window-options-text-link:hover svg,
  .window-options-style-card:hover,
  .window-options-style-card:hover .window-options-style-card__arrow svg,
  .window-options-group-card:hover,
  .window-options-configuration-card:hover,
  .window-options-cta__contact:hover svg {
    transform: none;
  }
}

/* ==========================================================================
   124. Contractors & Commercial Shared Components
   ========================================================================== */

.commercial-page {
  width: 100%;
  overflow: clip;
  background: var(--rw-white);
}

.commercial-page svg {
  flex-shrink: 0;
}

.commercial-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.commercial-section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.commercial-section-heading > p,
.commercial-section-heading > a {
  max-width: 520px;
  justify-self: end;
}

.commercial-section-heading > p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.94rem, 1.2vw, 1.06rem);
  line-height: 1.75;
}

.commercial-section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  width: min(100%, 900px);
  margin-inline: auto;
  text-align: center;
}

.commercial-section-heading--center > p {
  max-width: 700px;
  justify-self: center;
}

.commercial-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-size: 0.79rem;
  font-weight: 850;
  line-height: 1.3;
}

.commercial-text-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.commercial-text-link:hover {
  color: var(--rw-red-dark);
}

.commercial-text-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   125. Contractors & Commercial Hero
   ========================================================================== */

.commercial-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.commercial-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.commercial-hero::after {
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 570px;
  height: 570px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.commercial-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.commercial-hero__content {
  max-width: 780px;
}

.commercial-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.commercial-breadcrumbs a:hover {
  color: var(--rw-red);
}

.commercial-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.commercial-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.commercial-hero__description {
  max-width: 680px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.commercial-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.commercial-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.commercial-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.commercial-hero__highlights li > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 8px;
}

.commercial-hero__highlights svg {
  width: 16px;
  height: 16px;
}

.commercial-hero__media {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.commercial-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 54px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.commercial-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.commercial-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(330px, 75%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.commercial-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.commercial-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.35;
}

/* ==========================================================================
   126. Commercial Audience Cards
   ========================================================================== */

.commercial-audiences {
  position: relative;
  background: var(--rw-white);
}

.commercial-audiences__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.7vw, 35px);
}

.commercial-audience-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 42px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 23px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.commercial-audience-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.commercial-audience-card:hover {
  border-color: rgba(204, 13, 16, 0.27);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.commercial-audience-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.commercial-audience-card__icon,
.commercial-capability-card__icon,
.commercial-information-card__icon {
  display: grid;
  place-items: center;
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-radius: 13px;
}

.commercial-audience-card__icon {
  width: 50px;
  height: 50px;
}

.commercial-audience-card__icon svg,
.commercial-capability-card__icon svg,
.commercial-information-card__icon svg {
  width: 25px;
  height: 25px;
}

.commercial-audience-card__number,
.commercial-capability-card__number {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 850;
}

.commercial-audience-card__label {
  margin-bottom: 9px;
  color: var(--rw-red);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.commercial-audience-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.28rem, 1.8vw, 1.58rem);
  line-height: 1.2;
}

.commercial-audience-card > p:last-child {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.86rem;
  line-height: 1.7;
}

/* ==========================================================================
   127. Commercial Capabilities
   ========================================================================== */

.commercial-capabilities {
  position: relative;
}

.commercial-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.commercial-capability-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.commercial-capability-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.commercial-capability-card:hover {
  border-color: rgba(204, 13, 16, 0.27);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.commercial-capability-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.commercial-capability-card__icon {
  width: 48px;
  height: 48px;
}

.commercial-capability-card h3,
.commercial-capability-card > p,
.commercial-capability-card ul,
.commercial-capability-card .commercial-text-link {
  position: relative;
  z-index: 1;
}

.commercial-capability-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.38rem, 2vw, 1.85rem);
  line-height: 1.18;
}

.commercial-capability-card > p {
  margin-bottom: 24px;
  color: var(--rw-text);
  font-size: 0.88rem;
  line-height: 1.7;
}

.commercial-capability-card ul {
  display: grid;
  gap: 11px;
  padding: 20px 0 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--rw-border);
  list-style: none;
}

.commercial-capability-card li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--rw-ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}

.commercial-capability-card li > span {
  display: grid;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  place-items: center;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.commercial-capability-card li svg {
  width: 13px;
  height: 13px;
}

.commercial-capability-card .commercial-text-link {
  align-self: flex-start;
  margin-top: auto;
}

/* ==========================================================================
   128. Commercial Coordination Process
   ========================================================================== */

.commercial-coordination {
  position: relative;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.commercial-coordination::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.commercial-coordination::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.commercial-coordination__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(52px, 8vw, 116px);
}

.commercial-coordination__media {
  position: relative;
  padding: 0 0 clamp(42px, 5vw, 68px) clamp(26px, 3vw, 46px);
}

.commercial-coordination__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.commercial-coordination__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-large);
}

.commercial-coordination__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  max-width: 300px;
  flex-direction: column;
  gap: 5px;
  padding: 19px 22px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 18px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.commercial-coordination__badge span {
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.commercial-coordination__badge strong {
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.commercial-coordination__content .eyebrow {
  color: var(--rw-yellow);
}

.commercial-coordination__content .eyebrow::before {
  background: var(--rw-red);
}

.commercial-coordination__content h2 {
  margin-bottom: 21px;
  color: var(--rw-white);
}

.commercial-coordination__content .lead {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
}

.commercial-coordination__steps {
  display: grid;
  border-top: 1px solid var(--rw-border-dark);
}

.commercial-coordination-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding-block: 18px;
  border-bottom: 1px solid var(--rw-border-dark);
}

.commercial-coordination-step > span {
  padding-top: 3px;
  color: var(--rw-yellow);
  font-family: var(--rw-font-mono);
  font-size: 0.67rem;
  font-weight: 850;
}

.commercial-coordination-step h3 {
  margin-bottom: 6px;
  color: var(--rw-white);
  font-size: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.commercial-coordination-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ==========================================================================
   129. Commercial Project Information
   ========================================================================== */

.commercial-information {
  position: relative;
  background: var(--rw-white);
}

.commercial-information__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.045);
}

.commercial-information-card {
  position: relative;
  min-width: 0;
  padding: clamp(27px, 3vw, 38px);
  background: var(--rw-white);
}

.commercial-information-card + .commercial-information-card {
  border-left: 1px solid var(--rw-border);
}

.commercial-information-card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 23px;
  transition:
    background-color var(--rw-transition-fast),
    color var(--rw-transition-fast),
    transform var(--rw-transition-fast);
}

.commercial-information-card:hover .commercial-information-card__icon {
  background: var(--rw-red);
  color: var(--rw-white);
  transform: translateY(-3px);
}

.commercial-information-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  line-height: 1.25;
}

.commercial-information-card p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.8rem;
  line-height: 1.65;
}

/* ==========================================================================
   130. Commercial Applications
   ========================================================================== */

.commercial-applications {
  position: relative;
}

.commercial-applications__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.commercial-applications__content {
  max-width: 720px;
}

.commercial-applications__content h2 {
  margin-bottom: 22px;
}

.commercial-applications__content > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--rw-text);
  font-size: clamp(0.94rem, 1.2vw, 1.04rem);
  line-height: 1.75;
}

.commercial-applications__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  padding: 0;
  margin: 0 0 31px;
  list-style: none;
}

.commercial-applications__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--rw-ink);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.commercial-applications__list li > span {
  display: grid;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  place-items: center;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.commercial-applications__list svg {
  width: 13px;
  height: 13px;
}

.commercial-applications__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 25px;
}

.commercial-applications__media {
  position: relative;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 3vw, 42px) 0 0;
}

.commercial-applications__media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 68%;
  background: var(--rw-yellow-soft);
  content: "";
}

.commercial-applications__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 30px 2px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

/* ==========================================================================
   131. Commercial Projects
   ========================================================================== */

.commercial-projects {
  position: relative;
  background: var(--rw-white);
}

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

.commercial-projects__empty {
  display: flex;
  width: min(100%, 760px);
  min-height: 360px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 7vw, 72px);
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 46%),
    var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-large);
  text-align: center;
}

.commercial-projects__empty > span {
  margin-bottom: 9px;
  color: var(--rw-red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.commercial-projects__empty h3 {
  max-width: 590px;
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.commercial-projects__empty p {
  max-width: 560px;
  margin-bottom: 27px;
  color: var(--rw-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==========================================================================
     132. Commercial Contact and Locations
     ========================================================================== */

.commercial-contact {
  position: relative;
}

.commercial-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.7vw, 34px);
}

.commercial-contact-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 42px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 22px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.commercial-contact-card:hover {
  border-color: rgba(204, 13, 16, 0.25);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.commercial-contact-card__eyebrow {
  margin-bottom: 9px;
  color: var(--rw-red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.commercial-contact-card h3 {
  margin-bottom: 17px;
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
  line-height: 1.2;
}

.commercial-contact-card address {
  margin-bottom: 17px;
  color: var(--rw-text);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.65;
}

.commercial-contact-card__phone,
.commercial-contact-card__email {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 20px;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
}

.commercial-contact-card__phone:hover,
.commercial-contact-card__email:hover {
  color: var(--rw-red);
}

.commercial-contact-card dl {
  display: grid;
  margin: 0 0 25px;
  border-top: 1px solid var(--rw-border);
}

.commercial-contact-card dl > div {
  display: grid;
  grid-template-columns: minmax(88px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  padding-block: 10px;
  border-bottom: 1px solid var(--rw-border);
}

.commercial-contact-card dt {
  color: var(--rw-muted);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.commercial-contact-card dd {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
}

.commercial-contact-card .commercial-text-link {
  align-self: flex-start;
  margin-top: auto;
}

.commercial-contact-card--email {
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-color: var(--rw-charcoal);
}

.commercial-contact-card--email:hover {
  border-color: var(--rw-charcoal-soft);
}

.commercial-contact-card--email .commercial-contact-card__eyebrow {
  color: var(--rw-yellow);
}

.commercial-contact-card--email h3 {
  color: var(--rw-white);
}

.commercial-contact-card--email > p:not(.commercial-contact-card__eyebrow) {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  line-height: 1.7;
}

.commercial-contact-card--email .commercial-contact-card__email {
  color: var(--rw-white);
}

.commercial-contact-card--email .commercial-contact-card__email:hover {
  color: var(--rw-yellow);
}

.commercial-contact-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  margin-top: auto;
}

.commercial-contact-card--email .commercial-text-link {
  color: var(--rw-white);
}

.commercial-contact-card--email .commercial-text-link:hover {
  color: var(--rw-yellow);
}

/* ==========================================================================
     133. Contractors & Commercial Final CTA
     ========================================================================== */

.commercial-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.commercial-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.commercial-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.commercial-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.commercial-cta__content,
.commercial-cta__actions {
  position: relative;
  z-index: 1;
}

.commercial-cta__content {
  max-width: 780px;
}

.commercial-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.commercial-cta h2 {
  max-width: 730px;
  margin-bottom: 17px;
  color: var(--rw-white);
}

.commercial-cta__content > p {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.94rem;
  line-height: 1.72;
}

.commercial-cta__actions {
  display: flex;
  min-width: 235px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     134. Contractors & Commercial Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .commercial-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .commercial-audiences__grid,
  .commercial-contact__grid {
    gap: 20px;
  }

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

  .commercial-information-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--rw-border);
  }

  .commercial-information-card:nth-child(4) {
    border-top: 1px solid var(--rw-border);
  }
}

@media (max-width: 1023px) {
  .commercial-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .commercial-hero__grid,
  .commercial-coordination__grid,
  .commercial-applications__grid {
    grid-template-columns: 1fr;
  }

  .commercial-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .commercial-hero__content {
    max-width: 840px;
  }

  .commercial-hero__media {
    width: min(100%, 800px);
    justify-self: center;
  }

  .commercial-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .commercial-section-heading > p,
  .commercial-section-heading > a {
    justify-self: start;
  }

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

  .commercial-audience-card:last-child {
    grid-column: 1 / -1;
  }

  .commercial-coordination__media,
  .commercial-applications__media {
    width: min(100%, 780px);
  }

  .commercial-coordination__content,
  .commercial-applications__content {
    max-width: 790px;
  }

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

  .commercial-projects__grid .project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

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

  .commercial-contact-card--email {
    grid-column: 1 / -1;
  }

  .commercial-contact-card--email .commercial-contact-card__actions {
    flex-direction: row;
    align-items: center;
  }

  .commercial-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .commercial-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .commercial-hero::before {
    width: 56%;
  }

  .commercial-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .commercial-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .commercial-hero__actions .button {
    width: 100%;
  }

  .commercial-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .commercial-hero__media {
    padding: 0 0 42px 18px;
  }

  .commercial-hero__note {
    width: min(300px, 84%);
    padding: 15px 17px;
  }

  .commercial-audiences__grid,
  .commercial-capabilities__grid,
  .commercial-projects__grid,
  .commercial-contact__grid {
    grid-template-columns: 1fr;
  }

  .commercial-audience-card:last-child,
  .commercial-projects__grid .project-card:last-child:nth-child(odd),
  .commercial-contact-card--email {
    grid-column: auto;
  }

  .commercial-audience-card,
  .commercial-capability-card,
  .commercial-contact-card {
    padding: 28px 23px;
  }

  .commercial-coordination__grid,
  .commercial-applications__grid {
    gap: 46px;
  }

  .commercial-coordination__media {
    padding: 0 0 40px 18px;
  }

  .commercial-coordination__badge {
    max-width: 245px;
    padding: 16px 18px;
  }

  .commercial-information__grid {
    grid-template-columns: 1fr;
  }

  .commercial-information-card + .commercial-information-card,
  .commercial-information-card:nth-child(3),
  .commercial-information-card:nth-child(4) {
    border-top: 1px solid var(--rw-border);
    border-left: 0;
  }

  .commercial-applications__list {
    grid-template-columns: 1fr;
  }

  .commercial-applications__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .commercial-applications__actions .button {
    width: 100%;
  }

  .commercial-applications__media {
    padding: 20px 20px 0 0;
  }

  .commercial-projects__empty {
    min-height: 330px;
    padding: 40px 22px;
    border-radius: var(--rw-radius-medium);
  }

  .commercial-contact-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .commercial-contact-card dd {
    text-align: left;
  }

  .commercial-contact-card--email .commercial-contact-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .commercial-contact-card--email .button {
    width: 100%;
  }

  .commercial-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .commercial-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .commercial-cta__actions {
    flex-direction: column;
  }

  .commercial-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .commercial-hero__media {
    padding-left: 12px;
  }

  .commercial-hero__note {
    right: -2px;
    width: min(270px, 88%);
  }

  .commercial-coordination__badge {
    right: -2px;
    max-width: 215px;
  }

  .commercial-coordination-step {
    gap: 13px;
  }

  .commercial-information-card {
    padding: 25px 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .commercial-audience-card:hover,
  .commercial-capability-card:hover,
  .commercial-contact-card:hover,
  .commercial-information-card:hover .commercial-information-card__icon,
  .commercial-text-link:hover svg {
    transform: none;
  }
}

/* ==========================================================================
     135. Find the Right Window Shared Components
     ========================================================================== */

.window-finder-page {
  width: 100%;
  overflow: clip;
  background: var(--rw-white);
}

.window-finder-page #window-priorities {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.window-finder-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.window-finder-section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.window-finder-section-heading > p {
  max-width: 540px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.94rem, 1.2vw, 1.04rem);
  line-height: 1.72;
}

.window-finder-section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 870px;
  margin-inline: auto;
  text-align: center;
}

.window-finder-section-heading--center > p {
  max-width: 700px;
  justify-self: center;
}

.window-finder-section-heading--light h2,
.window-finder-section-heading--light > div,
.window-finder-section-heading--light .eyebrow {
  color: var(--rw-white);
}

.window-finder-section-heading--light > p {
  color: rgba(255, 255, 255, 0.66);
}

.window-finder-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.window-finder-breadcrumbs a:hover {
  color: var(--rw-red);
}

/* ==========================================================================
     136. Find the Right Window Hero
     ========================================================================== */

.window-finder-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.window-finder-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.window-finder-hero::after {
  position: absolute;
  right: -175px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.window-finder-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.window-finder-hero__content {
  max-width: 780px;
}

.window-finder-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.window-finder-hero__description {
  max-width: 680px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.window-finder-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.window-finder-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.window-finder-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.window-finder-hero__highlights svg {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.window-finder-hero__media {
  position: relative;
  width: min(100%, 550px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.window-finder-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.window-finder-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.window-finder-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(315px, 72%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.window-finder-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.window-finder-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

/* ==========================================================================
     137. Window Decision Framework
     ========================================================================== */

.window-finder-framework {
  position: relative;
}

.window-finder-framework__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.window-finder-framework__content {
  max-width: 720px;
}

.window-finder-framework__content h2 {
  margin-bottom: 22px;
}

.window-finder-framework__content > .lead {
  margin-bottom: 31px;
}

.window-finder-framework__questions {
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rw-border);
  list-style: none;
}

.window-finder-framework__questions li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding-block: 17px;
  border-bottom: 1px solid var(--rw-border);
}

.window-finder-framework__questions span {
  padding-top: 2px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.67rem;
  font-weight: 850;
}

.window-finder-framework__questions p {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.55;
}

.window-finder-framework__media {
  position: relative;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 3vw, 42px) 0 0;
}

.window-finder-framework__media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 68%;
  background: var(--rw-yellow-soft);
  content: "";
}

.window-finder-framework__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 30px 2px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.window-finder-framework__badge {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(350px, 82%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  margin: -34px 0 0 auto;
  background: var(--rw-white);
  border-left: 4px solid var(--rw-red);
  box-shadow: var(--rw-shadow-small);
}

.window-finder-framework__badge span {
  color: var(--rw-muted);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.window-finder-framework__badge strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.96rem;
  line-height: 1.35;
}

/* ==========================================================================
     138. Window Priority Paths
     ========================================================================== */

.window-finder-priorities {
  position: relative;
  background: var(--rw-white);
}

.window-finder-priorities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.window-finder-priority-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(26px, 3vw, 36px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.window-finder-priority-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.window-finder-priority-card:hover {
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.window-finder-priority-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.window-finder-priority-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-radius: 13px;
}

.window-finder-priority-card__icon svg {
  width: 25px;
  height: 25px;
}

.window-finder-priority-card__number {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 850;
}

.window-finder-priority-card__label {
  margin-bottom: 9px;
  color: var(--rw-red);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.window-finder-priority-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.18;
}

.window-finder-priority-card > p:not(.window-finder-priority-card__label) {
  margin-bottom: 22px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.68;
}

.window-finder-priority-card__recommendation {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 16px;
  margin-top: auto;
  background: var(--rw-off-white);
  border-left: 3px solid var(--rw-yellow);
  border-radius: 2px var(--rw-radius-small) var(--rw-radius-small) 2px;
}

.window-finder-priority-card__recommendation span {
  color: var(--rw-muted);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.window-finder-priority-card__recommendation strong {
  color: var(--rw-ink);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* ==========================================================================
     139. Window Style Comparison
     ========================================================================== */

.window-finder-comparison {
  position: relative;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.window-finder-comparison::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.window-finder-comparison::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 145px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.window-finder-comparison > .site-container {
  position: relative;
  z-index: 1;
}

.window-finder-comparison__table-wrap {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rw-border-dark);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-large);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.window-finder-comparison__table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  line-height: 1.5;
}

.window-finder-comparison__table th,
.window-finder-comparison__table td {
  padding: 18px 20px;
  border-right: 1px solid var(--rw-border-dark);
  border-bottom: 1px solid var(--rw-border-dark);
  text-align: left;
  vertical-align: top;
}

.window-finder-comparison__table tr > *:last-child {
  border-right: 0;
}

.window-finder-comparison__table tbody tr:last-child > * {
  border-bottom: 0;
}

.window-finder-comparison__table thead th {
  background: rgba(255, 255, 255, 0.075);
  color: var(--rw-white);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.window-finder-comparison__table tbody th {
  width: 190px;
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.9rem;
  line-height: 1.35;
}

.window-finder-comparison__table tbody th a:hover {
  color: var(--rw-yellow);
}

.window-finder-comparison__table tbody tr {
  transition: background-color var(--rw-transition-fast);
}

.window-finder-comparison__table tbody tr:hover {
  background: rgba(255, 255, 255, 0.045);
}

.window-finder-comparison__note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  max-width: 920px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--rw-border-dark);
}

.window-finder-comparison__note span {
  color: var(--rw-yellow);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.window-finder-comparison__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.65;
}

/* ==========================================================================
     140. Room and Opening Guidance
     ========================================================================== */

.window-finder-rooms {
  position: relative;
}

.window-finder-rooms__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.window-finder-rooms__media {
  position: relative;
  padding: 0 0 clamp(34px, 4vw, 54px) clamp(30px, 4vw, 54px);
}

.window-finder-rooms__media::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 76%;
  background: var(--rw-red-soft);
  content: "";
}

.window-finder-rooms__media::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 115px;
  background: var(--rw-red);
  content: "";
}

.window-finder-rooms__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 30px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.window-finder-rooms__content h2 {
  margin-bottom: 22px;
}

.window-finder-rooms__content > .lead {
  margin-bottom: 29px;
}

.window-finder-rooms__list {
  display: grid;
  border-top: 1px solid var(--rw-border);
}

.window-finder-room-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  padding-block: 17px;
  border-bottom: 1px solid var(--rw-border);
}

.window-finder-room-item > span {
  padding-top: 2px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.67rem;
  font-weight: 850;
}

.window-finder-room-item h3 {
  margin-bottom: 5px;
  font-size: 0.97rem;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.window-finder-room-item p {
  margin-bottom: 7px;
  color: var(--rw-text);
  font-size: 0.78rem;
  line-height: 1.58;
}

.window-finder-room-item strong {
  color: var(--rw-red-dark);
  font-size: 0.71rem;
  line-height: 1.45;
}

/* ==========================================================================
     141. Window Style Cards
     ========================================================================== */

.window-finder-styles {
  position: relative;
  background: var(--rw-white);
}

.window-finder-styles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 30px);
}

.window-finder-style-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.045);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.window-finder-style-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--rw-red);
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transition:
    opacity var(--rw-transition-fast),
    transform var(--rw-transition-fast);
}

.window-finder-style-card:hover {
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.window-finder-style-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.window-finder-style-card__number {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 11px;
  font-family: var(--rw-font-mono);
  font-size: 0.65rem;
  font-weight: 850;
}

.window-finder-style-card__content {
  min-width: 0;
}

.window-finder-style-card h3 {
  margin-bottom: 10px;
  color: inherit;
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  line-height: 1.2;
}

.window-finder-style-card__content > p {
  margin-bottom: 16px;
  color: var(--rw-text);
  font-size: 0.81rem;
  line-height: 1.65;
}

.window-finder-style-card__content ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.window-finder-style-card__content li {
  display: grid;
  grid-template-columns: minmax(80px, auto) minmax(0, 1fr);
  gap: 11px;
  color: var(--rw-text);
  font-size: 0.68rem;
  line-height: 1.45;
}

.window-finder-style-card__content li span {
  color: var(--rw-muted);
  font-weight: 850;
  text-transform: uppercase;
}

.window-finder-style-card__content li strong {
  color: var(--rw-ink);
  font-weight: 750;
}

.window-finder-style-card__arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--rw-red);
}

.window-finder-style-card__arrow svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.window-finder-style-card:hover .window-finder-style-card__arrow svg {
  transform: translateX(4px);
}

.window-finder-styles__all {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5vw, 54px);
}

/* ==========================================================================
     142. Window Selection Process
     ========================================================================== */

.window-finder-process {
  position: relative;
}

.window-finder-process__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border: 1px solid var(--rw-border);
  list-style: none;
}

.window-finder-process-card {
  position: relative;
  min-width: 0;
  min-height: 260px;
  padding: clamp(24px, 2.7vw, 34px);
  background: var(--rw-white);
}

.window-finder-process-card + .window-finder-process-card {
  border-left: 1px solid var(--rw-border);
}

.window-finder-process-card::after {
  position: absolute;
  right: -9px;
  top: 50%;
  z-index: 2;
  width: 17px;
  height: 17px;
  background: var(--rw-white);
  border-top: 1px solid var(--rw-border);
  border-right: 1px solid var(--rw-border);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.window-finder-process-card:last-child::after {
  display: none;
}

.window-finder-process-card__number {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 850;
}

.window-finder-process-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.02rem, 1.5vw, 1.3rem);
  line-height: 1.24;
}

.window-finder-process-card p {
  margin: 0;
  color: var(--rw-text);
  font-size: 0.78rem;
  line-height: 1.62;
}

/* ==========================================================================
     143. Find the Right Window Resources
     ========================================================================== */

.window-finder-resources {
  position: relative;
  background: var(--rw-white);
}

.window-finder-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.window-finder-resource-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 42px);
  overflow: hidden;
  background: var(--rw-off-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  transition:
    background-color var(--rw-transition),
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.window-finder-resource-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.window-finder-resource-card:hover {
  background: var(--rw-white);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.window-finder-resource-card > span {
  margin-bottom: 25px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 850;
}

.window-finder-resource-card h3 {
  margin-bottom: 14px;
  color: inherit;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.window-finder-resource-card p {
  margin-bottom: 24px;
  color: var(--rw-text);
  font-size: 0.83rem;
  line-height: 1.68;
}

.window-finder-resource-card > strong {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.78rem;
  font-weight: 850;
}

.window-finder-resource-card > strong svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.window-finder-resource-card:hover > strong svg {
  transform: translateX(4px);
}

/* ==========================================================================
     144. Find the Right Window Final CTA
     ========================================================================== */

.window-finder-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.window-finder-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.window-finder-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.window-finder-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.window-finder-cta__content,
.window-finder-cta__actions {
  position: relative;
  z-index: 1;
}

.window-finder-cta__content {
  max-width: 770px;
}

.window-finder-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.window-finder-cta h2 {
  max-width: 720px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.window-finder-cta__content > p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.96rem;
  line-height: 1.72;
}

.window-finder-cta__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     145. Find the Right Window Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .window-finder-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  }

  .window-finder-priorities__grid,
  .window-finder-resources__grid {
    gap: 20px;
  }

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

  .window-finder-process-card:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--rw-border);
  }

  .window-finder-process-card:nth-child(4),
  .window-finder-process-card:nth-child(5) {
    border-top: 1px solid var(--rw-border);
  }

  .window-finder-process-card:nth-child(3)::after,
  .window-finder-process-card:last-child::after {
    display: none;
  }
}

@media (max-width: 1023px) {
  .window-finder-page #window-priorities {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .window-finder-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .window-finder-hero__grid,
  .window-finder-framework__grid,
  .window-finder-rooms__grid {
    grid-template-columns: 1fr;
  }

  .window-finder-hero__content {
    max-width: 820px;
  }

  .window-finder-hero__media {
    width: min(100%, 780px);
    justify-self: center;
  }

  .window-finder-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .window-finder-section-heading > p {
    max-width: 680px;
    justify-self: start;
  }

  .window-finder-section-heading--center > p {
    justify-self: center;
  }

  .window-finder-framework__content,
  .window-finder-rooms__content {
    max-width: 780px;
  }

  .window-finder-framework__media,
  .window-finder-rooms__media {
    width: min(100%, 780px);
  }

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

  .window-finder-styles__grid {
    grid-template-columns: 1fr;
  }

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

  .window-finder-process-card:nth-child(3),
  .window-finder-process-card:nth-child(5) {
    border-left: 0;
  }

  .window-finder-process-card:nth-child(3),
  .window-finder-process-card:nth-child(4),
  .window-finder-process-card:nth-child(5) {
    border-top: 1px solid var(--rw-border);
  }

  .window-finder-process-card:nth-child(2)::after,
  .window-finder-process-card:nth-child(4)::after {
    display: none;
  }

  .window-finder-process-card:nth-child(3)::after {
    display: block;
  }

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

  .window-finder-resource-card:last-child {
    grid-column: 1 / -1;
  }

  .window-finder-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .window-finder-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .window-finder-hero::before {
    width: 56%;
  }

  .window-finder-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .window-finder-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .window-finder-hero__actions .button {
    width: 100%;
  }

  .window-finder-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .window-finder-hero__media {
    padding: 0 0 42px 18px;
  }

  .window-finder-hero__note {
    width: min(285px, 82%);
    padding: 15px 17px;
  }

  .window-finder-framework__media {
    padding: 20px 20px 0 0;
  }

  .window-finder-framework__badge {
    width: min(315px, 90%);
  }

  .window-finder-priorities__grid,
  .window-finder-resources__grid {
    grid-template-columns: 1fr;
  }

  .window-finder-priority-card {
    padding: 27px 22px;
  }

  .window-finder-comparison__table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .window-finder-comparison__table {
    display: block;
    min-width: 0;
  }

  .window-finder-comparison__table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .window-finder-comparison__table tbody,
  .window-finder-comparison__table tr,
  .window-finder-comparison__table th,
  .window-finder-comparison__table td {
    display: block;
    width: 100%;
  }

  .window-finder-comparison__table tbody {
    display: grid;
    gap: 16px;
  }

  .window-finder-comparison__table tbody tr {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--rw-border-dark);
    border-radius: var(--rw-radius-medium);
  }

  .window-finder-comparison__table th,
  .window-finder-comparison__table td {
    padding: 13px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--rw-border-dark);
  }

  .window-finder-comparison__table tbody th {
    width: 100%;
    padding-block: 17px;
    background: rgba(255, 255, 255, 0.075);
  }

  .window-finder-comparison__table td {
    display: grid;
    grid-template-columns: minmax(105px, 0.7fr) minmax(0, 1.3fr);
    gap: 15px;
  }

  .window-finder-comparison__table td::before {
    color: var(--rw-yellow);
    content: attr(data-label);
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .window-finder-comparison__table tr > *:last-child {
    border-bottom: 0;
  }

  .window-finder-comparison__note {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .window-finder-rooms__media {
    padding: 0 0 28px 22px;
  }

  .window-finder-style-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 24px 20px;
  }

  .window-finder-style-card__arrow {
    position: absolute;
    top: 22px;
    right: 18px;
  }

  .window-finder-style-card__content {
    padding-right: 25px;
  }

  .window-finder-style-card__content li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .window-finder-process__grid {
    grid-template-columns: 1fr;
  }

  .window-finder-process-card {
    min-height: auto;
    padding: 25px 22px;
    border-top: 1px solid var(--rw-border);
    border-left: 0 !important;
  }

  .window-finder-process-card:first-child {
    border-top: 0;
  }

  .window-finder-process-card::after {
    display: none !important;
  }

  .window-finder-resource-card:last-child {
    grid-column: auto;
  }

  .window-finder-resource-card {
    min-height: 270px;
    padding: 29px 23px;
  }

  .window-finder-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .window-finder-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .window-finder-cta__actions {
    flex-direction: column;
  }

  .window-finder-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .window-finder-hero__media {
    padding-left: 12px;
  }

  .window-finder-hero__note {
    right: -2px;
    width: min(250px, 88%);
  }

  .window-finder-framework__questions li,
  .window-finder-room-item {
    gap: 12px;
  }

  .window-finder-priority-card__topline {
    margin-bottom: 18px;
  }

  .window-finder-comparison__table td {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .window-finder-priority-card:hover,
  .window-finder-style-card:hover,
  .window-finder-resource-card:hover,
  .window-finder-style-card:hover .window-finder-style-card__arrow svg,
  .window-finder-resource-card:hover > strong svg {
    transform: none;
  }
}

/* ==========================================================================
     146. Product Guide Shared Components
     ========================================================================== */

.product-guide-page {
  width: 100%;
  overflow: clip;
  background: var(--rw-white);
}

.product-guide-page [id] {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 30px);
}

.product-guide-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-guide-breadcrumbs a:hover {
  color: var(--rw-red);
}

.product-guide-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.product-guide-section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.product-guide-section-heading > p {
  max-width: 520px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.94rem, 1.2vw, 1.06rem);
  line-height: 1.72;
}

.product-guide-section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.product-guide-section-heading--dark h2 {
  color: var(--rw-white);
}

.product-guide-section-heading--dark > p {
  color: rgba(255, 255, 255, 0.66);
}

.product-guide-page a svg {
  flex-shrink: 0;
}

/* ==========================================================================
     147. Product Guide Hero
     ========================================================================== */

.product-guide-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.product-guide-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.product-guide-hero::after {
  position: absolute;
  right: -175px;
  bottom: -245px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.product-guide-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.product-guide-hero__content {
  max-width: 780px;
}

.product-guide-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.product-guide-hero__description {
  max-width: 680px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.product-guide-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.product-guide-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-guide-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.product-guide-hero__highlights svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.product-guide-hero__media {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.product-guide-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.product-guide-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.product-guide-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(320px, 72%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.product-guide-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-guide-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

/* ==========================================================================
     148. Product Guide Quick Start
     ========================================================================== */

.product-guide-start {
  position: relative;
  background: var(--rw-white);
}

.product-guide-start__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(52px, 8vw, 120px);
}

.product-guide-start__content {
  max-width: 680px;
}

.product-guide-start__content h2 {
  margin-bottom: 23px;
}

.product-guide-start__content .lead {
  margin-bottom: 0;
}

.product-guide-start__steps {
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rw-border);
  list-style: none;
}

.product-guide-start__steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding-block: 20px;
  border-bottom: 1px solid var(--rw-border);
}

.product-guide-start__steps span {
  padding-top: 2px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 850;
}

.product-guide-start__steps p {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.9rem;
  font-weight: 680;
  line-height: 1.65;
}

/* ==========================================================================
     149. Product Family Overview
     ========================================================================== */

.product-guide-families {
  position: relative;
}

.product-guide-families__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.product-guide-family-card {
  display: grid;
  grid-template-columns:
    minmax(210px, 0.72fr)
    minmax(0, 1.28fr);
  min-width: 0;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.product-guide-family-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.product-guide-family-card__media {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.product-guide-family-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.26), transparent 48%);
  content: "";
  opacity: 0.36;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.product-guide-family-card:hover .product-guide-family-card__media::after {
  opacity: 0.62;
}

.product-guide-family-card__image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  transition: transform 560ms var(--rw-ease-out);
}

.product-guide-family-card:hover .product-guide-family-card__image {
  transform: scale(1.04);
}

.product-guide-family-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(25px, 3vw, 36px);
}

.product-guide-family-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.product-guide-family-card__topline > span {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 850;
}

.product-guide-family-card__topline small {
  color: var(--rw-muted);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.product-guide-family-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.42rem, 2vw, 1.9rem);
  line-height: 1.18;
}

.product-guide-family-card h3 a:hover {
  color: var(--rw-red);
}

.product-guide-family-card__content > p {
  margin-bottom: 19px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.68;
}

.product-guide-family-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.product-guide-family-card li {
  position: relative;
  padding-left: 15px;
  color: var(--rw-text);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-guide-family-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--rw-red);
  content: "";
}

.product-guide-family-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: auto;
}

.product-guide-family-card__actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--rw-red);
  font-size: 0.75rem;
  font-weight: 850;
}

.product-guide-family-card__actions svg {
  width: 17px;
  height: 17px;
  transition: transform var(--rw-transition-fast);
}

.product-guide-family-card__actions a:hover {
  color: var(--rw-red-dark);
}

.product-guide-family-card__actions a:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     150. Windows Product Guide
     ========================================================================== */

.product-guide-windows {
  position: relative;
  background: var(--rw-white);
}

.product-guide-windows__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}

.product-guide-window-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 42px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 21px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.product-guide-window-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.product-guide-window-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.product-guide-window-card__number {
  display: inline-flex;
  margin-bottom: 19px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.69rem;
  font-weight: 850;
}

.product-guide-window-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.34rem, 1.9vw, 1.72rem);
  line-height: 1.2;
}

.product-guide-window-card dl {
  display: grid;
  margin: 0 0 18px;
  border-top: 1px solid var(--rw-border);
}

.product-guide-window-card dl > div {
  display: grid;
  grid-template-columns: minmax(80px, 0.7fr) minmax(0, 1.3fr);
  gap: 15px;
  padding-block: 12px;
  border-bottom: 1px solid var(--rw-border);
}

.product-guide-window-card dt {
  color: var(--rw-muted);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-guide-window-card dd {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: right;
}

.product-guide-window-card > p {
  margin-bottom: 23px;
  color: var(--rw-text);
  font-size: 0.82rem;
  line-height: 1.66;
}

.product-guide-window-card > a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-guide-window-card > a svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.product-guide-window-card > a:hover {
  color: var(--rw-red-dark);
}

.product-guide-window-card > a:hover svg {
  transform: translateX(4px);
}

.product-guide-inline-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: clamp(28px, 4vw, 44px);
  margin-top: clamp(35px, 5vw, 58px);
  background: var(--rw-yellow-soft);
  border: 1px solid rgba(241, 210, 0, 0.38);
  border-left: 5px solid var(--rw-yellow);
  border-radius: 2px var(--rw-radius-medium) var(--rw-radius-medium) 2px;
}

.product-guide-inline-path div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.product-guide-inline-path span {
  color: var(--rw-red);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-guide-inline-path strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.35;
}

/* ==========================================================================
     151. Doors Product Guide
     ========================================================================== */

.product-guide-doors {
  position: relative;
  overflow: hidden;
}

.product-guide-doors::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.product-guide-doors::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.product-guide-doors .site-container {
  position: relative;
  z-index: 1;
}

.product-guide-doors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.product-guide-door-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(32px, 4.5vw, 56px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--rw-border-dark);
  border-radius: var(--rw-radius-medium);
  transition:
    background-color var(--rw-transition),
    border-color var(--rw-transition),
    transform var(--rw-transition);
}

.product-guide-door-card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(241, 210, 0, 0.36);
  transform: translateY(-5px);
}

.product-guide-door-card__number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--rw-yellow);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 850;
}

.product-guide-door-card h3 {
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.product-guide-door-card > p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  line-height: 1.72;
}

.product-guide-door-card dl {
  display: grid;
  margin: 0 0 26px;
  border-top: 1px solid var(--rw-border-dark);
}

.product-guide-door-card dl > div {
  display: grid;
  grid-template-columns: minmax(100px, 0.62fr) minmax(0, 1.38fr);
  gap: 18px;
  padding-block: 14px;
  border-bottom: 1px solid var(--rw-border-dark);
}

.product-guide-door-card dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-guide-door-card dd {
  margin: 0;
  color: var(--rw-white);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}

.product-guide-door-card > a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-yellow);
  font-size: 0.8rem;
  font-weight: 850;
}

.product-guide-door-card > a svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.product-guide-door-card > a:hover {
  color: var(--rw-white);
}

.product-guide-door-card > a:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     152. Glass & Specialty Product Guide
     ========================================================================== */

.product-guide-glass {
  position: relative;
  background: var(--rw-white);
}

.product-guide-glass__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-guide-glass-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding: clamp(25px, 3vw, 36px);
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 5px 18px rgba(23, 25, 28, 0.04);
}

.product-guide-glass-card:hover {
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-4px);
}

.product-guide-glass-card > span {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.69rem;
  font-weight: 850;
}

.product-guide-glass-card h3 {
  margin-bottom: 8px;
  color: inherit;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.22;
}

.product-guide-glass-card p {
  margin: 0;
  color: var(--rw-text);
  font-size: 0.81rem;
  line-height: 1.62;
}

.product-guide-glass-card > svg {
  width: 21px;
  height: 21px;
  color: var(--rw-red);
  transition: transform var(--rw-transition-fast);
}

.product-guide-glass-card:hover > svg {
  transform: translateX(5px);
}

.product-guide-commercial-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(30px, 4.5vw, 52px);
  margin-top: clamp(30px, 4.5vw, 54px);
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-left: 5px solid var(--rw-red);
  border-radius: 2px var(--rw-radius-medium) var(--rw-radius-medium) 2px;
}

.product-guide-commercial-note h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.24;
}

/* ==========================================================================
     153. Window Options & Customization Guide
     ========================================================================== */

.product-guide-options {
  position: relative;
}

.product-guide-options__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.product-guide-options__media {
  position: relative;
  padding: 0 0 clamp(34px, 4vw, 54px) clamp(28px, 3vw, 46px);
}

.product-guide-options__media::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 76%;
  background: var(--rw-yellow-soft);
  content: "";
}

.product-guide-options__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 30px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.product-guide-options__content h2 {
  margin-bottom: 22px;
}

.product-guide-options__content > .lead {
  margin-bottom: 30px;
}

.product-guide-options__list {
  display: grid;
  margin-bottom: 32px;
  border-top: 1px solid var(--rw-border);
}

.product-guide-options__list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  padding-block: 18px;
  border-bottom: 1px solid var(--rw-border);
}

.product-guide-options__list article > span {
  padding-top: 2px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 850;
}

.product-guide-options__list h3 {
  margin-bottom: 5px;
  font-size: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.product-guide-options__list p {
  margin: 0;
  color: var(--rw-text);
  font-size: 0.79rem;
  line-height: 1.6;
}

/* ==========================================================================
     154. Product Document Library
     ========================================================================== */

.product-guide-documents {
  position: relative;
  background: var(--rw-white);
}

.product-guide-documents__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}

.product-guide-document-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 19px;
  min-width: 0;
  padding: clamp(25px, 3.4vw, 38px);
  overflow: hidden;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.product-guide-document-card.is-available:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.product-guide-document-card.is-unavailable {
  background: linear-gradient(135deg, var(--rw-off-white), var(--rw-white));
}

.product-guide-document-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 14px;
  box-shadow: var(--rw-shadow-small);
}

.product-guide-document-card__icon svg {
  width: 25px;
  height: 25px;
}

.product-guide-document-card__content {
  min-width: 0;
}

.product-guide-document-card__status {
  display: block;
  margin-bottom: 8px;
  color: var(--rw-red);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-guide-document-card.is-unavailable
  .product-guide-document-card__status {
  color: var(--rw-muted);
}

.product-guide-document-card h3 {
  margin-bottom: 9px;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.25;
}

.product-guide-document-card p {
  margin-bottom: 14px;
  color: var(--rw-text);
  font-size: 0.81rem;
  line-height: 1.62;
}

.product-guide-document-card code {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 6px 8px;
  overflow-wrap: anywhere;
  background: var(--rw-white);
  color: var(--rw-muted);
  border: 1px solid var(--rw-border);
  border-radius: 5px;
  font-family: var(--rw-font-mono);
  font-size: 0.62rem;
  line-height: 1.45;
}

.product-guide-document-card__action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 19px;
  margin-top: 4px;
  color: var(--rw-red);
  border-top: 1px solid var(--rw-border);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-guide-document-card__action svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.product-guide-document-card__action:hover {
  color: var(--rw-red-dark);
}

.product-guide-document-card__action:hover svg {
  transform: translateX(4px);
}

.product-guide-document-card__action--disabled {
  color: var(--rw-muted);
  cursor: default;
}

/* ==========================================================================
     155. Product Guide Project Checklist and Helpful Paths
     ========================================================================== */

.product-guide-checklist {
  position: relative;
}

.product-guide-checklist__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(54px, 8vw, 120px);
}

.product-guide-checklist__content {
  max-width: 690px;
}

.product-guide-checklist__content h2 {
  margin-bottom: 22px;
}

.product-guide-checklist__content .lead {
  margin-bottom: 31px;
}

.product-guide-checklist__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.product-guide-checklist__items {
  display: grid;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.product-guide-checklist__items article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  padding: clamp(22px, 3vw, 30px);
}

.product-guide-checklist__items article + article {
  border-top: 1px solid var(--rw-border);
}

.product-guide-checklist__items article > span {
  padding-top: 2px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 850;
}

.product-guide-checklist__items h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  line-height: 1.32;
}

.product-guide-checklist__items p {
  margin: 0;
  color: var(--rw-text);
  font-size: 0.8rem;
  line-height: 1.62;
}

.product-guide-paths {
  position: relative;
  background: var(--rw-white);
}

.product-guide-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-guide-paths__grid > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 5px 18px rgba(23, 25, 28, 0.04);
}

.product-guide-paths__grid > a:hover {
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-4px);
}

.product-guide-paths__grid > a > span {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 850;
}

.product-guide-paths__grid h3 {
  margin-bottom: 7px;
  color: inherit;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.22;
}

.product-guide-paths__grid p {
  margin: 0;
  color: var(--rw-text);
  font-size: 0.8rem;
  line-height: 1.6;
}

.product-guide-paths__grid > a > svg {
  width: 21px;
  height: 21px;
  color: var(--rw-red);
  transition: transform var(--rw-transition-fast);
}

.product-guide-paths__grid > a:hover > svg {
  transform: translateX(5px);
}

/* ==========================================================================
     156. Product Guide Final CTA
     ========================================================================== */

.product-guide-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.product-guide-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.product-guide-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.product-guide-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.product-guide-cta__content,
.product-guide-cta__actions {
  position: relative;
  z-index: 1;
}

.product-guide-cta__content {
  max-width: 780px;
}

.product-guide-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-guide-cta h2 {
  max-width: 730px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.product-guide-cta__content > p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.98rem;
  line-height: 1.72;
}

.product-guide-cta__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     157. Product Guide Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .product-guide-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .product-guide-family-card {
    grid-template-columns: minmax(175px, 0.68fr) minmax(0, 1.32fr);
  }

  .product-guide-windows__grid {
    gap: 20px;
  }

  .product-guide-window-card {
    padding: 28px 24px 31px;
  }
}

@media (max-width: 1023px) {
  .product-guide-page [id] {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .product-guide-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .product-guide-hero__grid,
  .product-guide-start__grid,
  .product-guide-options__grid,
  .product-guide-checklist__grid {
    grid-template-columns: 1fr;
  }

  .product-guide-hero__media {
    width: min(100%, 780px);
    justify-self: center;
  }

  .product-guide-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-guide-section-heading > p {
    max-width: 680px;
    justify-self: start;
  }

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

  .product-guide-family-card {
    grid-template-columns: 1fr;
  }

  .product-guide-family-card__media {
    aspect-ratio: 16 / 9;
  }

  .product-guide-family-card__image {
    aspect-ratio: 16 / 9;
  }

  .product-guide-options__media {
    width: min(100%, 760px);
  }

  .product-guide-options__content,
  .product-guide-checklist__content {
    max-width: 760px;
  }

  .product-guide-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-guide-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .product-guide-hero::before {
    width: 56%;
  }

  .product-guide-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .product-guide-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .product-guide-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-guide-hero__actions .button {
    width: 100%;
  }

  .product-guide-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-guide-hero__media {
    padding: 0 0 42px 18px;
  }

  .product-guide-hero__note {
    width: min(285px, 82%);
    padding: 15px 17px;
  }

  .product-guide-start__steps li {
    gap: 14px;
  }

  .product-guide-families__grid,
  .product-guide-windows__grid,
  .product-guide-doors__grid,
  .product-guide-glass__grid,
  .product-guide-documents__grid,
  .product-guide-paths__grid {
    grid-template-columns: 1fr;
  }

  .product-guide-family-card__content,
  .product-guide-window-card,
  .product-guide-door-card {
    padding: 27px 22px 30px;
  }

  .product-guide-inline-path,
  .product-guide-commercial-note {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-guide-inline-path .button,
  .product-guide-commercial-note .button {
    width: 100%;
  }

  .product-guide-glass-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    padding: 23px 19px;
  }

  .product-guide-options__media {
    padding: 0 0 30px 20px;
  }

  .product-guide-checklist__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-guide-checklist__actions .button {
    width: 100%;
  }

  .product-guide-document-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 24px 20px;
  }

  .product-guide-paths__grid > a {
    padding: 23px 20px;
  }

  .product-guide-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .product-guide-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .product-guide-cta__actions {
    flex-direction: column;
  }

  .product-guide-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .product-guide-hero__media {
    padding-left: 12px;
  }

  .product-guide-hero__note {
    right: -2px;
    width: min(250px, 88%);
  }

  .product-guide-family-card__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .product-guide-family-card__topline small {
    text-align: left;
  }

  .product-guide-window-card dl > div,
  .product-guide-door-card dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .product-guide-window-card dd,
  .product-guide-door-card dd {
    text-align: left;
  }

  .product-guide-glass-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .product-guide-glass-card > svg {
    display: none;
  }

  .product-guide-document-card {
    grid-template-columns: 1fr;
  }

  .product-guide-document-card__icon {
    width: 48px;
    height: 48px;
  }

  .product-guide-paths__grid > a {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .product-guide-paths__grid > a > svg {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-guide-family-card:hover,
  .product-guide-window-card:hover,
  .product-guide-door-card:hover,
  .product-guide-glass-card:hover,
  .product-guide-document-card.is-available:hover,
  .product-guide-paths__grid > a:hover,
  .product-guide-family-card__actions a:hover svg,
  .product-guide-window-card > a:hover svg,
  .product-guide-door-card > a:hover svg,
  .product-guide-glass-card:hover > svg,
  .product-guide-document-card__action:hover svg,
  .product-guide-paths__grid > a:hover > svg {
    transform: none;
  }

  .product-guide-family-card:hover .product-guide-family-card__image {
    transform: none;
  }
}

/* ==========================================================================
     158. Blog Shared Components
     ========================================================================== */

.blog-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.blog-page #latest-articles {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.blog-page input,
.blog-page select {
  width: 100%;
  min-height: 50px;
  color: var(--rw-ink);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-small);
  outline: 0;
}

.blog-page input {
  padding: 0 15px;
}

.blog-page select {
  padding: 0 42px 0 15px;
  cursor: pointer;
}

.blog-page input::placeholder {
  color: #92969c;
}

.blog-page input:hover,
.blog-page select:hover {
  border-color: rgba(204, 13, 16, 0.42);
}

.blog-page input:focus,
.blog-page select:focus {
  border-color: var(--rw-red);
  box-shadow: 0 0 0 4px rgba(204, 13, 16, 0.1);
}

.blog-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-weight: 850;
}

.blog-text-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--rw-transition-fast);
}

.blog-text-link:hover {
  color: var(--rw-red-dark);
}

.blog-text-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     159. Blog Hero
     ========================================================================== */

.blog-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.blog-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.blog-hero::after {
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.blog-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.blog-hero__content {
  max-width: 780px;
}

.blog-hero__content > .eyebrow {
  margin-bottom: var(--rw-hero-breadcrumb-margin);
}

.blog-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.blog-hero__description {
  max-width: 680px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
}

.blog-hero__actions {
  margin-bottom: 0;
}

.blog-hero__media {
  position: relative;
  width: min(100%, 570px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.blog-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.blog-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.blog-hero__image.rogers-media-placeholder {
  border-color: var(--rw-border);
}

.blog-hero__image .rogers-media-placeholder__content {
  gap: 9px;
  padding: clamp(22px, 3vw, 34px);
}

.blog-hero__image .rogers-media-placeholder__label {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.blog-hero__image .rogers-media-placeholder__group p {
  font-size: clamp(0.68rem, 0.78vw, 0.76rem);
  line-height: 1.42;
}

.blog-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(310px, 74%);
  flex-direction: column;
  gap: 4px;
  padding: 17px 20px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.blog-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.34;
}

/* ==========================================================================
     160. Blog Featured Article
     ========================================================================== */

.blog-featured {
  position: relative;
  background: var(--rw-white);
}

.blog-featured__card {
  display: grid;
  grid-template-columns:
    minmax(360px, 0.92fr)
    minmax(0, 1.08fr);
  min-height: 470px;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 28px 3px;
  box-shadow: var(--rw-shadow-large);
}

.blog-featured__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--rw-charcoal-soft);
}

.blog-featured__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 56%,
    rgba(23, 25, 28, 0.42)
  );
  content: "";
  pointer-events: none;
}

.blog-featured__image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  transition: transform 620ms var(--rw-ease-out);
}

.blog-featured__card:hover .blog-featured__image {
  transform: scale(1.035);
}

.blog-featured__image.rogers-media-placeholder {
  border: 0;
}

.blog-featured__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 78px);
}

.blog-featured__content::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}

.blog-featured__content > * {
  position: relative;
  z-index: 1;
}

.blog-featured__eyebrow {
  margin-bottom: 10px;
  color: var(--rw-yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-featured__category {
  display: inline-flex;
  align-self: flex-start;
  min-height: 29px;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--rw-border-dark);
  border-radius: var(--rw-radius-pill);
  font-size: var(--rw-type-meta);
  font-weight: 800;
  line-height: 1.2;
}

.blog-featured__category:hover {
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-color: var(--rw-yellow);
}

.blog-featured__content h2 {
  max-width: 720px;
  margin-bottom: 19px;
  color: var(--rw-white);
  font-size: var(--rw-type-feature-title);
}

.blog-featured__content h2 a:hover {
  color: var(--rw-yellow);
}

.blog-featured__content > p:not(.blog-featured__eyebrow) {
  max-width: 680px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--rw-type-body);
  line-height: 1.72;
}

.blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--rw-type-meta);
  font-weight: 700;
  line-height: 1.4;
}

.blog-featured .blog-text-link {
  color: var(--rw-white);
}

.blog-featured .blog-text-link:hover {
  color: var(--rw-yellow);
}

/* ==========================================================================
     161. Blog Filters
     ========================================================================== */

.blog-filters {
  position: relative;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    var(--rw-off-white) 0 50%,
    var(--rw-white) 50% 100%
  );
}

.blog-filters__panel {
  padding: clamp(25px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-medium);
}

.blog-filters__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 27px;
}

.blog-filters__heading .eyebrow {
  margin-bottom: 7px;
}

.blog-filters__heading h2 {
  margin-bottom: 0;
}

.blog-filters__clear {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--rw-red);
  font-size: var(--rw-type-link);
  font-weight: 850;
  line-height: 1.35;
}

.blog-filters__clear:hover {
  color: var(--rw-red-dark);
  transform: translateX(-3px);
}

.blog-filter-form {
  display: grid;
  grid-template-columns:
    minmax(300px, 1.65fr)
    minmax(210px, 0.8fr)
    auto;
  align-items: end;
  gap: 15px;
}

.blog-filter-form__field {
  min-width: 0;
}

.blog-filter-form__field label {
  display: block;
  margin-bottom: 7px;
  color: var(--rw-ink);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.blog-filter-form__search {
  position: relative;
}

.blog-filter-form__search svg {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  width: 19px;
  height: 19px;
  color: var(--rw-muted);
  pointer-events: none;
  transform: translateY(-50%);
}

.blog-filter-form__search input {
  padding-left: 44px;
}

.blog-filter-form__submit .button {
  width: 100%;
  min-height: 50px;
  white-space: nowrap;
}

/* ==========================================================================
     162. Blog Results and Article Cards
     ========================================================================== */

.blog-results {
  position: relative;
  background: var(--rw-white);
}

.blog-results__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.blog-results__header h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.blog-results__count {
  flex-shrink: 0;
  margin: 0 0 6px;
  color: var(--rw-muted);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.4;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.7vw, 35px);
}

.blog-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 22px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.blog-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-7px);
}

.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.blog-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.34), transparent 48%);
  content: "";
  opacity: 0.28;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.blog-card:hover .blog-card__media::after {
  opacity: 0.6;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 540ms var(--rw-ease-out);
}

.blog-card:hover .blog-card__image {
  transform: scale(1.045);
}

.blog-card__image.rogers-media-placeholder {
  border: 0;
}

.blog-card__image .rogers-media-placeholder__content {
  gap: 8px;
  padding: 22px;
}

.blog-card__image .rogers-media-placeholder__type {
  padding: 5px 7px;
  font-size: 0.54rem;
}

.blog-card__image .rogers-media-placeholder__label {
  font-size: 1.05rem;
}

.blog-card__image .rogers-media-placeholder__path {
  padding: 5px 7px;
  font-size: 0.58rem;
}

.blog-card__image .rogers-media-placeholder__group span {
  font-size: 0.54rem;
}

.blog-card__image .rogers-media-placeholder__group p {
  font-size: 0.67rem;
  line-height: 1.4;
}

.blog-card__fallback {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 245px;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.045), transparent 46%),
    var(--rw-warm-gray);
  color: var(--rw-red);
  text-align: center;
}

.blog-card__fallback span {
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.blog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(23px, 2.8vw, 31px);
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-bottom: 15px;
  color: var(--rw-muted);
  font-size: var(--rw-type-meta);
  font-weight: 750;
  line-height: 1.35;
}

.blog-card__meta > * + * {
  position: relative;
}

.blog-card__meta > * + *::before {
  position: absolute;
  top: 50%;
  left: -9px;
  width: 3px;
  height: 3px;
  background: var(--rw-yellow);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.blog-card__meta a {
  color: var(--rw-red);
  font-weight: 850;
}

.blog-card__meta a:hover {
  color: var(--rw-red-dark);
}

.blog-card__title {
  margin-bottom: 13px;
}

.blog-card__title a:hover {
  color: var(--rw-red);
}

.blog-card__summary {
  margin-bottom: 22px;
  color: var(--rw-text);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-weight: 850;
}

.blog-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.blog-card__link:hover {
  color: var(--rw-red-dark);
}

.blog-card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     163. Blog Pagination and Empty State
     ========================================================================== */

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(44px, 6vw, 72px);
}

.blog-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination .page-numbers li {
  margin: 0;
}

.blog-pagination a.page-numbers,
.blog-pagination span.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-small);
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1;
}

.blog-pagination a.page-numbers:hover {
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.28);
  transform: translateY(-2px);
}

.blog-pagination span.page-numbers.current {
  background: var(--rw-red);
  color: var(--rw-white);
  border-color: var(--rw-red);
  box-shadow: 0 8px 18px rgba(204, 13, 16, 0.2);
}

.blog-pagination .prev,
.blog-pagination .next {
  padding-inline: 17px;
}

.blog-empty-state {
  display: flex;
  width: min(100%, 760px);
  min-height: 390px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(42px, 7vw, 76px);
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 46%),
    var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-large);
  text-align: center;
}

.blog-empty-state h2 {
  max-width: 590px;
  margin-bottom: 17px;
}

.blog-empty-state > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 28px;
  color: var(--rw-text);
  font-size: var(--rw-type-body);
  line-height: 1.7;
}

/* ==========================================================================
     164. Blog Final CTA
     ========================================================================== */

.blog-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.blog-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.blog-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.blog-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.blog-cta__content,
.blog-cta__actions {
  position: relative;
  z-index: 1;
}

.blog-cta__content {
  max-width: 760px;
}

.blog-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-cta h2 {
  max-width: 710px;
  margin-bottom: 17px;
  color: var(--rw-white);
}

.blog-cta__content > p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: var(--rw-type-body);
  line-height: 1.72;
}

.blog-cta__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     165. Blog Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .blog-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .blog-featured__card {
    grid-template-columns:
      minmax(320px, 0.88fr)
      minmax(0, 1.12fr);
  }

  .blog-grid {
    gap: 22px;
  }
}

@media (max-width: 1023px) {
  .blog-page #latest-articles {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .blog-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .blog-hero__grid {
    grid-template-columns: 1fr;
  }

  .blog-hero__content {
    max-width: 820px;
  }

  .blog-hero__media {
    width: min(100%, 780px);
    justify-self: center;
  }

  .blog-featured__card {
    grid-template-columns: 1fr;
  }

  .blog-featured__media {
    min-height: 390px;
    max-height: 560px;
  }

  .blog-featured__image {
    min-height: 390px;
    aspect-ratio: 16 / 10;
  }

  .blog-featured__media::after {
    background: linear-gradient(
      to bottom,
      transparent 55%,
      rgba(23, 25, 28, 0.45)
    );
  }

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

  .blog-filter-form__field--search,
  .blog-filter-form__submit {
    grid-column: 1 / -1;
  }

  .blog-filter-form__submit .button {
    width: auto;
    min-width: 180px;
  }

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

  .blog-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .blog-hero::before {
    width: 56%;
  }

  .blog-hero__title {
    max-width: 16ch;
  }

  .blog-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-hero__actions .button {
    width: 100%;
  }

  .blog-hero__media {
    padding: 0 0 42px 18px;
  }

  .blog-hero__note {
    width: min(285px, 84%);
    padding: 15px 17px;
  }

  .blog-featured__media {
    min-height: 330px;
  }

  .blog-featured__image {
    min-height: 330px;
    aspect-ratio: 4 / 3;
  }

  .blog-featured__content {
    padding: 38px 24px 44px;
  }

  .blog-filters__panel {
    padding: 23px 19px;
  }

  .blog-filters__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .blog-filter-form {
    grid-template-columns: 1fr;
  }

  .blog-filter-form__field--search,
  .blog-filter-form__submit {
    grid-column: auto;
  }

  .blog-filter-form__submit .button {
    width: 100%;
  }

  .blog-results__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .blog-results__count {
    margin-bottom: 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card__content {
    padding: 24px 22px 27px;
  }

  .blog-pagination .page-numbers {
    gap: 6px;
  }

  .blog-pagination a.page-numbers,
  .blog-pagination span.page-numbers {
    min-width: 39px;
    min-height: 39px;
    padding: 7px 11px;
  }

  .blog-empty-state {
    min-height: 350px;
    padding: 42px 22px;
    border-radius: var(--rw-radius-medium);
  }

  .blog-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .blog-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .blog-cta__actions {
    flex-direction: column;
  }

  .blog-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .blog-hero__media {
    padding-left: 12px;
  }

  .blog-hero__note {
    right: -2px;
    width: min(255px, 88%);
  }

  .blog-featured__media,
  .blog-featured__image {
    min-height: 285px;
  }

  .blog-card__fallback {
    min-height: 225px;
  }

  .blog-card__meta {
    gap: 6px 14px;
  }

  .blog-pagination .prev,
  .blog-pagination .next {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-text-link:hover svg,
  .blog-card__link:hover svg,
  .blog-card:hover,
  .blog-pagination a.page-numbers:hover,
  .blog-filters__clear:hover {
    transform: none;
  }

  .blog-featured__card:hover .blog-featured__image,
  .blog-card:hover .blog-card__image {
    transform: none;
  }
}

/* ==========================================================================
     166. Blog System Shared Components
     ========================================================================== */

.journal-single-page,
.journal-archive-page,
.journal-search-page {
  width: 100%;
  overflow: clip;
  background: var(--rw-white);
}

.journal-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--rw-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.journal-breadcrumbs a:hover {
  color: var(--rw-red);
}

.journal-term-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  margin-bottom: 18px;
  background: var(--rw-red-soft);
  color: var(--rw-red-dark);
  border-radius: var(--rw-radius-pill);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.journal-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--rw-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.journal-section-heading,
.journal-results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.journal-section-heading h2,
.journal-results-heading h2 {
  margin-bottom: 0;
}

.journal-results-heading p {
  margin: 0;
  color: var(--rw-muted);
  font-size: 0.85rem;
  font-weight: 750;
}

.journal-section-heading__link,
.journal-sidebar__link,
.journal-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-size: 0.82rem;
  font-weight: 850;
}

.journal-section-heading__link svg,
.journal-sidebar__link svg,
.journal-card__link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform var(--rw-transition-fast);
}

.journal-section-heading__link:hover,
.journal-sidebar__link:hover,
.journal-card__link:hover {
  color: var(--rw-red-dark);
}

.journal-section-heading__link:hover svg,
.journal-sidebar__link:hover svg,
.journal-card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     167. Blog Archive Hero
     ========================================================================== */

.journal-archive-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 8vw, 110px);
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(241, 210, 0, 0.16),
      transparent 28%
    ),
    linear-gradient(130deg, var(--rw-white), var(--rw-off-white));
  border-bottom: 1px solid var(--rw-border);
}

.journal-archive-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 560px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.journal-archive-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.journal-archive-hero .journal-breadcrumbs {
  justify-content: center;
}

.journal-archive-hero h1 {
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6.3vw, 5.6rem);
}

.journal-archive-hero__description {
  max-width: 760px;
  margin-inline: auto;
  color: var(--rw-text);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.journal-archive-hero__description > *:last-child {
  margin-bottom: 0;
}

.journal-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  align-items: start;
  gap: clamp(40px, 6vw, 78px);
}

.journal-archive-main {
  min-width: 0;
}

/* ==========================================================================
     168. Blog Cards and Grids
     ========================================================================== */

.journal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

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

.journal-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
  transition:
    transform var(--rw-transition),
    box-shadow var(--rw-transition),
    border-color var(--rw-transition-fast);
}

.journal-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.journal-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.journal-card__image,
.journal-card__media .rogers-media-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.journal-card__image {
  object-fit: cover;
  transition: transform var(--rw-transition-slow);
}

.journal-card:hover .journal-card__image {
  transform: scale(1.035);
}

.journal-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px 28px;
}

.journal-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 14px;
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 760;
}

.journal-card__meta a {
  color: var(--rw-red);
}

.journal-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.18;
}

.journal-card h3 a:hover {
  color: var(--rw-red);
}

.journal-card__content > p {
  margin-bottom: 24px;
  color: var(--rw-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.journal-card__link {
  margin-top: auto;
}

.journal-pagination {
  margin-top: 48px;
}

.journal-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.journal-pagination a,
.journal-pagination span {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-small);
  font-size: 0.8rem;
  font-weight: 800;
}

.journal-pagination a:hover,
.journal-pagination .current {
  background: var(--rw-red);
  color: var(--rw-white);
  border-color: var(--rw-red);
}

/* ==========================================================================
     169. Blog Sidebar
     ========================================================================== */

.journal-sidebar {
  min-width: 0;
}

.journal-sidebar__panel {
  padding: 28px;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.journal-sidebar__panel--sticky {
  position: sticky;
  top: calc(var(--rw-desktop-header-height) + 28px);
}

.admin-bar .journal-sidebar__panel--sticky {
  top: calc(var(--rw-desktop-header-height) + 60px);
}

.journal-sidebar__eyebrow {
  margin-bottom: 10px;
  color: var(--rw-red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-sidebar h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.journal-sidebar p {
  color: var(--rw-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.journal-sidebar .button {
  width: 100%;
  margin-bottom: 16px;
}

.journal-sidebar__category-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.journal-sidebar__category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 13px;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 760;
}

.journal-sidebar__category-list a:hover,
.journal-sidebar__category-list a[aria-current="page"] {
  background: var(--rw-red-soft);
  color: var(--rw-red-dark);
  border-color: rgba(204, 13, 16, 0.24);
}

.journal-sidebar__category-list small {
  color: var(--rw-muted);
  font-size: 0.7rem;
}

/* ==========================================================================
     170. Single Post Hero
     ========================================================================== */

.journal-single-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 110px) clamp(48px, 6vw, 82px);
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(241, 210, 0, 0.15),
      transparent 28%
    ),
    linear-gradient(135deg, var(--rw-white), var(--rw-off-white));
}

.journal-single-hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(42vw, 620px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 78%,
    var(--rw-yellow) 78% 100%
  );
  content: "";
}

.journal-single-hero__inner {
  position: relative;
  z-index: 1;
}

.journal-single-hero__content {
  max-width: 980px;
}

.journal-single-hero h1 {
  max-width: 18ch;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.7vw, 5.2rem);
}

.journal-single-hero__excerpt {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--rw-text);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.72;
}

.journal-single-featured {
  padding-bottom: clamp(28px, 4vw, 52px);
  background: linear-gradient(
    to bottom,
    var(--rw-off-white) 0 48%,
    var(--rw-white) 48% 100%
  );
}

.journal-single-featured__inner {
  max-width: 1180px;
}

.journal-single-featured__image,
.journal-single-featured .rogers-media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--rw-radius-large);
  box-shadow: var(--rw-shadow-large);
  object-fit: cover;
}

/* ==========================================================================
     171. Single Post Content
     ========================================================================== */

.journal-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  align-items: start;
  gap: clamp(42px, 7vw, 92px);
}

.journal-article {
  min-width: 0;
  max-width: 820px;
}

.journal-article__content {
  color: var(--rw-text);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.82;
}

.journal-article__content > *:first-child {
  margin-top: 0;
}

.journal-article__content h2,
.journal-article__content h3,
.journal-article__content h4 {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 30px);
}

.journal-article__content h2 {
  margin: 2.1em 0 0.65em;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.journal-article__content h3 {
  margin: 1.8em 0 0.65em;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.journal-article__content h4 {
  margin: 1.6em 0 0.55em;
}

.journal-article__content p,
.journal-article__content ul,
.journal-article__content ol,
.journal-article__content blockquote,
.journal-article__content figure,
.journal-article__content table {
  margin-bottom: 1.55em;
}

.journal-article__content a {
  color: var(--rw-red);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.journal-article__content a:hover {
  color: var(--rw-red-dark);
}

.journal-page-links,
.journal-tags {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--rw-border);
}

.journal-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.journal-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journal-tags__list a {
  padding: 7px 10px;
  background: var(--rw-off-white);
  color: var(--rw-text);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-pill);
  font-size: 0.72rem;
  font-weight: 750;
}

.journal-tags__list a:hover {
  background: var(--rw-red-soft);
  color: var(--rw-red-dark);
  border-color: rgba(204, 13, 16, 0.24);
}

/* ==========================================================================
     172. Article Media and Content Blocks
     ========================================================================== */

.journal-article__content img,
.journal-article__content .wp-block-image img,
.journal-article__content .wp-block-gallery,
.journal-article__content iframe,
.journal-article__content video {
  max-width: 100%;
  border-radius: var(--rw-radius-medium);
}

.journal-article__content figure figcaption,
.journal-article__content .wp-element-caption {
  margin-top: 9px;
  color: var(--rw-muted);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.journal-article__content blockquote {
  padding: 24px 26px;
  background: var(--rw-off-white);
  border-left: 5px solid var(--rw-red);
  border-radius: 0 var(--rw-radius-medium) var(--rw-radius-medium) 0;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 650;
  line-height: 1.45;
}

.journal-article__content blockquote > *:last-child {
  margin-bottom: 0;
}

.journal-article__content ul,
.journal-article__content ol {
  padding-left: 1.35em;
}

.journal-article__content li + li {
  margin-top: 0.55em;
}

.journal-article__content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-small);
}

.journal-article__content th,
.journal-article__content td {
  min-width: 150px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--rw-border);
  text-align: left;
}

.journal-article__content th {
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.journal-article__content pre,
.journal-article__content code {
  font-family: var(--rw-font-mono);
}

.journal-article__content pre {
  max-width: 100%;
  padding: 20px;
  overflow-x: auto;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: var(--rw-radius-small);
}

/* ==========================================================================
     173. Post Navigation and Related Articles
     ========================================================================== */

.journal-post-navigation {
  background: var(--rw-off-white);
  border-block: 1px solid var(--rw-border);
}

.journal-post-navigation__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.journal-post-navigation__item {
  display: flex;
  min-height: 150px;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.journal-post-navigation__item--next {
  text-align: right;
}

.journal-post-navigation__item span {
  margin-bottom: 9px;
  color: var(--rw-red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-post-navigation__item strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.25;
}

.journal-post-navigation__item:hover {
  border-color: rgba(204, 13, 16, 0.3);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-3px);
}

.journal-related {
  background: var(--rw-white);
}

/* ==========================================================================
     174. Search and Empty States
     ========================================================================== */

.journal-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  width: min(100%, 760px);
  margin: 30px auto 0;
}

.journal-search-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-small);
  outline: 0;
}

.journal-search-form input:focus {
  border-color: var(--rw-red);
  box-shadow: 0 0 0 4px rgba(204, 13, 16, 0.1);
}

.journal-search-list {
  display: grid;
  gap: 22px;
}

.journal-search-result {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.journal-search-result__media {
  min-height: 250px;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.journal-search-result__image,
.journal-search-result__media .rogers-media-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.journal-search-result__content {
  padding: 28px 30px;
}

.journal-search-result__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-bottom: 13px;
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 780;
}

.journal-search-result h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.journal-search-result h2 a:hover {
  color: var(--rw-red);
}

.journal-search-result p {
  color: var(--rw-text);
  font-size: 0.92rem;
  line-height: 1.72;
}

.journal-empty-state {
  max-width: 820px;
  padding: clamp(34px, 6vw, 64px);
  margin-inline: auto;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-large);
  text-align: center;
}

.journal-empty-state h2 {
  margin-bottom: 18px;
}

.journal-empty-state p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
}

.journal-empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

/* ==========================================================================
     175. Blog System Responsive
     ========================================================================== */

@media (max-width: 1023px) {
  .journal-archive-layout,
  .journal-single-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .journal-sidebar__panel--sticky,
  .admin-bar .journal-sidebar__panel--sticky {
    position: static;
    top: auto;
  }

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

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

  .journal-search-result {
    grid-template-columns: minmax(210px, 0.38fr) minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .journal-breadcrumbs {
    margin-bottom: 22px;
    font-size: 0.72rem;
  }

  .journal-section-heading,
  .journal-results-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }

  .journal-archive-hero {
    padding-block: 50px 62px;
  }

  .journal-archive-hero h1,
  .journal-single-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.8rem);
  }

  .journal-card-grid,
  .journal-card-grid--two-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .journal-card__content {
    padding: 23px 20px 25px;
  }

  .journal-sidebar__panel {
    padding: 24px 20px;
  }

  .journal-sidebar__category-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .journal-single-featured__image,
  .journal-single-featured .rogers-media-placeholder {
    border-radius: var(--rw-radius-medium);
  }

  .journal-article__content {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .journal-post-navigation__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .journal-post-navigation__item--next {
    text-align: left;
  }

  .journal-search-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .journal-search-form .button {
    width: 100%;
  }

  .journal-search-result {
    grid-template-columns: minmax(0, 1fr);
  }

  .journal-search-result__media {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .journal-search-result__content {
    padding: 24px 20px 26px;
  }

  .journal-empty-state {
    padding: 34px 20px;
    border-radius: var(--rw-radius-medium);
  }

  .journal-empty-state__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .journal-empty-state__actions .button {
    width: 100%;
  }
}

/* ==========================================================================
     176. Blog System Reduced Motion and Print
     ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .journal-card,
  .journal-card__image,
  .journal-post-navigation__item,
  .journal-section-heading__link svg,
  .journal-sidebar__link svg,
  .journal-card__link svg {
    transition: none;
  }

  .journal-card:hover,
  .journal-post-navigation__item:hover {
    transform: none;
  }

  .journal-card:hover .journal-card__image,
  .journal-section-heading__link:hover svg,
  .journal-sidebar__link:hover svg,
  .journal-card__link:hover svg {
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .mobile-app-dock,
  .journal-breadcrumbs,
  .journal-sidebar,
  .journal-post-navigation,
  .journal-related {
    display: none !important;
  }

  .journal-single-hero,
  .journal-single-featured,
  .journal-single-body {
    padding: 0;
    background: #fff;
  }

  .journal-single-layout {
    display: block;
  }

  .journal-single-featured__image {
    max-height: 420px;
    box-shadow: none;
  }

  .journal-article {
    max-width: none;
  }

  .journal-article__content {
    color: #000;
    font-size: 11pt;
    line-height: 1.55;
  }
}

/* ==========================================================================
     177. About Shared Components
     ========================================================================== */

.about-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.about-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(38px, 5vw, 66px);
}

.about-section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.about-section-heading > p,
.about-section-heading > .about-text-link {
  max-width: 520px;
  justify-self: end;
  margin-bottom: 0;
}

.about-section-heading > p {
  color: var(--rw-text);
  font-size: var(--rw-body-lead-size, clamp(0.98rem, 1.1vw, 1.06rem));
  line-height: 1.72;
}

.about-section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.about-section-heading--center > p {
  max-width: 690px;
  justify-self: center;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
}

.about-text-link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.about-text-link:hover {
  color: var(--rw-red-dark);
}

.about-text-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     178. About Hero
     ========================================================================== */

.about-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.about-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.about-hero::after {
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 570px;
  height: 570px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.about-hero__content {
  max-width: 770px;
}

.about-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-breadcrumbs a:hover {
  color: var(--rw-red);
}

.about-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.about-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.about-hero__description {
  max-width: 675px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.about-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.about-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.about-hero__highlights svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.about-hero__media {
  position: relative;
  width: min(100%, 550px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.about-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.about-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.about-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(310px, 72%);
  flex-direction: column;
  gap: 4px;
  padding: 17px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.about-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 1.2rem;
  line-height: 1.12;
}

.about-hero__note small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  line-height: 1.45;
}

/* ==========================================================================
     179. About Company Story
     ========================================================================== */

.about-story {
  position: relative;
  background: var(--rw-white);
}

.about-story__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.about-story__content {
  max-width: 710px;
}

.about-story__content h2 {
  margin-bottom: 22px;
}

.about-story__content .lead {
  margin-bottom: 23px;
}

.about-story__content > p:not(.eyebrow):not(.lead) {
  margin-bottom: 18px;
  color: var(--rw-text);
  font-size: var(--rw-body-size, clamp(0.9rem, 0.8rem + 0.2vw, 0.98rem));
  line-height: 1.74;
}

.about-story__content .about-text-link {
  margin-top: 8px;
}

.about-story__media {
  position: relative;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 3vw, 42px) 0 0;
}

.about-story__media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 68%;
  background: var(--rw-yellow-soft);
  content: "";
}

.about-story__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 30px 2px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.about-story__caption {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(360px, 78%);
  flex-direction: column;
  gap: 5px;
  padding: 18px 22px;
  margin: -34px 0 0 auto;
  background: var(--rw-white);
  border-left: 4px solid var(--rw-red);
  box-shadow: var(--rw-shadow-small);
}

.about-story__caption span {
  color: var(--rw-muted);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-story__caption strong {
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

/* ==========================================================================
     180. About Company Facts
     ========================================================================== */

.about-facts {
  position: relative;
}

.about-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--rw-border);
  border: 1px solid var(--rw-border);
}

.about-fact {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 175px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  background: var(--rw-white);
  transition:
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.about-fact::after {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity var(--rw-transition),
    transform var(--rw-transition);
}

.about-fact:hover {
  z-index: 1;
  box-shadow: var(--rw-shadow-small);
  transform: translateY(-5px);
}

.about-fact:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.about-fact strong {
  color: var(--rw-red);
  font-family: var(--rw-font-heading);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1;
}

.about-fact span {
  max-width: 22ch;
  color: var(--rw-muted);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.45;
}

/* ==========================================================================
     181. About Principles
     ========================================================================== */

.about-principles {
  position: relative;
  background: var(--rw-white);
}

.about-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 30px);
}

.about-principle-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(27px, 3vw, 38px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.045);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.about-principle-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.about-principle-card:hover {
  border-color: rgba(204, 13, 16, 0.27);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.about-principle-card__number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 900;
}

.about-principle-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.14rem, 1.55vw, 1.42rem);
  line-height: 1.22;
}

.about-principle-card p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.82rem;
  line-height: 1.68;
}

/* ==========================================================================
     182. About Capabilities
     ========================================================================== */

.about-capabilities {
  position: relative;
  overflow: hidden;
}

.about-capabilities::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.about-capabilities::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.about-capabilities__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(300px, 0.78fr)
    minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(54px, 8vw, 118px);
}

.about-capabilities__intro {
  position: sticky;
  top: calc(var(--rw-desktop-header-height) + 32px);
  max-width: 610px;
}

.about-capabilities__intro h2 {
  margin-bottom: 22px;
  color: var(--rw-white);
}

.about-capabilities__intro .lead {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.66);
}

.about-capabilities__list {
  display: grid;
  border-top: 1px solid var(--rw-border-dark);
}

.about-capability {
  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;
  align-items: center;
  gap: 20px;
  min-height: 124px;
  padding-block: 24px;
  color: var(--rw-white);
  border-bottom: 1px solid var(--rw-border-dark);
}

.about-capability:hover {
  padding-inline: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.about-capability__number {
  color: var(--rw-yellow);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 850;
}

.about-capability__content h3 {
  margin-bottom: 6px;
  color: var(--rw-white);
  font-size: clamp(1.06rem, 1.5vw, 1.35rem);
  line-height: 1.25;
}

.about-capability__content p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.79rem;
  line-height: 1.58;
}

.about-capability__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--rw-border-dark);
  border-radius: 50%;
}

.about-capability__arrow svg {
  width: 17px;
  height: 17px;
  transition: transform var(--rw-transition-fast);
}

.about-capability:hover .about-capability__content h3,
.about-capability:hover .about-capability__arrow {
  color: var(--rw-yellow);
}

.about-capability:hover .about-capability__arrow {
  border-color: rgba(241, 210, 0, 0.44);
}

.about-capability:hover .about-capability__arrow svg {
  transform: translateX(3px);
}

/* ==========================================================================
     183. About Project Process
     ========================================================================== */

.about-process {
  position: relative;
  background: var(--rw-white);
}

.about-process__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.about-process__content {
  min-width: 0;
}

.about-process__content h2 {
  margin-bottom: 21px;
}

.about-process__content .lead {
  margin-bottom: 31px;
}

.about-process__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px 28px 2px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.about-process__steps {
  display: grid;
  border-top: 1px solid var(--rw-border);
}

.about-process-step {
  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr);
  gap: 20px;
  padding-block: 22px;
  border-bottom: 1px solid var(--rw-border);
}

.about-process-step > span {
  padding-top: 4px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.69rem;
  font-weight: 900;
}

.about-process-step h3 {
  margin-bottom: 7px;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.3;
}

.about-process-step p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.81rem;
  line-height: 1.62;
}

/* ==========================================================================
     184. About Locations and Service Area
     ========================================================================== */

.about-locations {
  position: relative;
}

.about-locations__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.about-location-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(27px, 3.2vw, 40px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 22px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.about-location-card:hover {
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.about-location-card__eyebrow {
  margin-bottom: 12px;
  color: var(--rw-red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-location-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.2rem, 1.65vw, 1.52rem);
  line-height: 1.22;
}

.about-location-card address {
  margin-bottom: 14px;
  color: var(--rw-text);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.62;
}

.about-location-card__phone {
  align-self: flex-start;
  margin-bottom: 22px;
  color: var(--rw-red);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.3;
}

.about-location-card__phone:hover {
  color: var(--rw-red-dark);
}

.about-location-card__hours {
  display: grid;
  margin: auto 0 0;
  border-top: 1px solid var(--rw-border);
}

.about-location-card__hours > div {
  display: grid;
  grid-template-columns: minmax(80px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding-block: 12px;
  border-bottom: 1px solid var(--rw-border);
}

.about-location-card__hours dt {
  color: var(--rw-muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-location-card__hours dd {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.77rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: right;
}

.about-location-card--service-area {
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-color: var(--rw-charcoal);
}

.about-location-card--service-area::before {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.about-location-card--service-area h3 {
  position: relative;
  color: var(--rw-white);
}

.about-location-card--service-area > p:not(.about-location-card__eyebrow) {
  position: relative;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.65;
}

.about-location-card--service-area ul {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.about-location-card--service-area li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.about-location-card--service-area li svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  background: rgba(241, 210, 0, 0.13);
  color: var(--rw-yellow);
  border-radius: 50%;
}

.about-location-card--service-area .about-text-link {
  position: relative;
  margin-top: auto;
  color: var(--rw-yellow);
}

.about-location-card--service-area .about-text-link:hover {
  color: var(--rw-white);
}

/* ==========================================================================
     185. About Featured Projects
     ========================================================================== */

.about-projects {
  position: relative;
  background: var(--rw-white);
}

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

.about-projects__empty {
  display: flex;
  width: min(100%, 760px);
  min-height: 360px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 46%),
    var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-large);
  text-align: center;
}

.about-projects__empty > span {
  margin-bottom: 10px;
  color: var(--rw-red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-projects__empty h3 {
  max-width: 600px;
  margin-bottom: 15px;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.18;
}

.about-projects__empty p {
  max-width: 560px;
  margin-bottom: 27px;
  color: var(--rw-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==========================================================================
     186. About Final CTA
     ========================================================================== */

.about-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.about-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.about-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.about-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.about-cta__content,
.about-cta__actions {
  position: relative;
  z-index: 1;
}

.about-cta__content {
  max-width: 770px;
}

.about-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-cta h2 {
  max-width: 720px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: var(--rw-title-feature-size, clamp(2.05rem, 3.4vw, 3.15rem));
}

.about-cta__content > p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.96rem;
  line-height: 1.72;
}

.about-cta__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     187. About Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .about-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .about-story__grid,
  .about-process__grid {
    gap: 60px;
  }

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

  .about-capabilities__grid {
    grid-template-columns:
      minmax(280px, 0.72fr)
      minmax(0, 1.28fr);
    gap: 58px;
  }

  .about-locations__grid,
  .about-projects__grid {
    gap: 22px;
  }
}

@media (max-width: 1023px) {
  .about-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .about-hero__grid,
  .about-story__grid,
  .about-capabilities__grid,
  .about-process__grid {
    grid-template-columns: 1fr;
  }

  .about-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .about-hero__content,
  .about-story__content,
  .about-process__content {
    max-width: 820px;
  }

  .about-hero__media,
  .about-story__media,
  .about-process__image {
    width: min(100%, 800px);
  }

  .about-hero__media {
    justify-self: center;
  }

  .about-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-section-heading > p,
  .about-section-heading > .about-text-link {
    justify-self: start;
  }

  .about-section-heading--center > p {
    justify-self: center;
  }

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

  .about-capabilities__intro {
    position: static;
    max-width: 760px;
  }

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

  .about-location-card--service-area,
  .about-projects__grid .project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .about-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .about-hero::before {
    width: 56%;
  }

  .about-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .about-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .about-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-hero__actions .button {
    width: 100%;
  }

  .about-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-hero__media {
    padding: 0 0 42px 18px;
  }

  .about-hero__note {
    width: min(285px, 82%);
    padding: 15px 17px;
  }

  .about-story__grid,
  .about-process__grid {
    gap: 44px;
  }

  .about-story__media {
    padding: 20px 20px 0 0;
  }

  .about-story__caption {
    width: min(330px, 90%);
  }

  .about-facts__grid,
  .about-principles__grid,
  .about-locations__grid,
  .about-projects__grid {
    grid-template-columns: 1fr;
  }

  .about-fact {
    min-height: 140px;
    padding: 26px 23px;
  }

  .about-principle-card {
    padding: 28px 23px;
  }

  .about-capabilities__grid {
    gap: 42px;
  }

  .about-capability {
    gap: 14px;
    min-height: 112px;
    padding-block: 20px;
  }

  .about-capability:hover {
    padding-inline: 9px;
  }

  .about-process-step {
    gap: 15px;
    padding-block: 19px;
  }

  .about-location-card,
  .about-location-card--service-area,
  .about-projects__grid .project-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .about-location-card {
    padding: 28px 23px;
  }

  .about-projects__empty {
    min-height: 330px;
    padding: 40px 22px;
    border-radius: var(--rw-radius-medium);
  }

  .about-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .about-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .about-cta__actions {
    flex-direction: column;
  }

  .about-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .about-hero__media {
    padding-left: 12px;
  }

  .about-hero__note {
    right: -2px;
    width: min(250px, 88%);
  }

  .about-facts__grid {
    gap: 0;
  }

  .about-capability {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .about-capability__arrow {
    display: none;
  }

  .about-location-card__hours > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-location-card__hours dd {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-text-link:hover svg,
  .about-fact:hover,
  .about-principle-card:hover,
  .about-capability:hover .about-capability__arrow svg,
  .about-location-card:hover {
    transform: none;
  }
}

/* ==========================================================================
     188. Global Contact Form 7 System
     ========================================================================== */

/*
   * Shared form system for:
   * - Contact
   * - Request an Estimate
   * - Future Contact Form 7 forms
   *
   * Required wrapper:
   * .rw-form
   *
   * Optional desktop columns:
   * .rw-form--two-columns
   */

/* ---------------------------------------------------------
  188.1 Contact Form 7 Base
  --------------------------------------------------------- */

.wpcf7 {
  width: 100%;
  max-width: 100%;
}

.wpcf7 form {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.wpcf7 form * {
  box-sizing: border-box;
}

/* Defensive cleanup for previously cached CF7 markup */
.wpcf7 form > br,
.wpcf7 .rw-form > br,
.wpcf7 .rw-form__field > br,
.wpcf7 .rw-form__field label > br {
  display: none !important;
}

.wpcf7 form > p:empty,
.wpcf7 .rw-form > p:empty,
.wpcf7 .rw-form__field > p:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
  188.2 Shared Form Grid
  --------------------------------------------------------- */

.wpcf7 .rw-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

.wpcf7 .rw-form__field {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.wpcf7 .rw-form__field--full {
  grid-column: 1 / -1;
}

/* ---------------------------------------------------------
  188.3 Labels
  --------------------------------------------------------- */

.wpcf7 .rw-form__field > label {
  display: block;
  margin: 0 0 9px;
  padding: 0;
  color: var(--rw-dark, #202124);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.wpcf7 .rw-form__required {
  color: var(--rw-red, #cc0d10);
}

.wpcf7 .rw-form__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ---------------------------------------------------------
  188.4 Text Fields, Selects and Textareas
  --------------------------------------------------------- */

.wpcf7 .rw-form input[type="text"],
.wpcf7 .rw-form input[type="email"],
.wpcf7 .rw-form input[type="tel"],
.wpcf7 .rw-form input[type="url"],
.wpcf7 .rw-form input[type="number"],
.wpcf7 .rw-form input[type="date"],
.wpcf7 .rw-form input[type="time"],
.wpcf7 .rw-form input[type="search"],
.wpcf7 .rw-form input[type="password"],
.wpcf7 .rw-form select,
.wpcf7 .rw-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 13px 15px;
  color: var(--rw-dark, #202124);
  background: var(--rw-white, #ffffff);
  border: 1px solid var(--rw-border, #d9d9d9);
  border-radius: 6px;
  outline: none;
  box-shadow: none;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.wpcf7 .rw-form input[type="text"],
.wpcf7 .rw-form input[type="email"],
.wpcf7 .rw-form input[type="tel"],
.wpcf7 .rw-form input[type="url"],
.wpcf7 .rw-form input[type="number"],
.wpcf7 .rw-form input[type="date"],
.wpcf7 .rw-form input[type="time"],
.wpcf7 .rw-form input[type="search"],
.wpcf7 .rw-form input[type="password"],
.wpcf7 .rw-form select {
  min-height: 50px;
}

.wpcf7 .rw-form textarea {
  min-height: 150px;
  resize: vertical;
}

.wpcf7 .rw-form select {
  cursor: pointer;
}

.wpcf7 .rw-form input::placeholder,
.wpcf7 .rw-form textarea::placeholder {
  color: #7b7d80;
  opacity: 1;
}

.wpcf7 .rw-form input:hover,
.wpcf7 .rw-form select:hover,
.wpcf7 .rw-form textarea:hover {
  border-color: #b8b9bb;
}

.wpcf7 .rw-form input:focus,
.wpcf7 .rw-form select:focus,
.wpcf7 .rw-form textarea:focus {
  border-color: var(--rw-red, #cc0d10);
  box-shadow: 0 0 0 3px rgba(204, 13, 16, 0.12);
}

/* ---------------------------------------------------------
  188.5 File Upload
  --------------------------------------------------------- */

.wpcf7 .rw-form input[type="file"] {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 8px;
  color: var(--rw-dark, #202124);
  background: var(--rw-white, #ffffff);
  border: 1px solid var(--rw-border, #d9d9d9);
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}

.wpcf7 .rw-form input[type="file"]::file-selector-button {
  min-height: 32px;
  margin: 0 12px 0 0;
  padding: 6px 12px;
  color: var(--rw-dark, #202124);
  background: var(--rw-off-white, #f5f5f5);
  border: 1px solid var(--rw-border, #d9d9d9);
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.wpcf7 .rw-form input[type="file"]::file-selector-button:hover {
  color: var(--rw-white, #ffffff);
  background: var(--rw-red, #cc0d10);
  border-color: var(--rw-red, #cc0d10);
}

/* ---------------------------------------------------------
  188.6 Supporting and Legal Text
  --------------------------------------------------------- */

.wpcf7 .rw-form__help,
.wpcf7 .rw-form__notice {
  display: block;
  margin: 9px 0 0;
  color: #66686b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.wpcf7 .rw-form__field--notice {
  margin-top: 2px;
}

.wpcf7 .rw-form__field--notice .rw-form__notice {
  margin-top: 0;
}

.wpcf7 .rw-form__notice a {
  color: var(--rw-red, #cc0d10);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wpcf7 .rw-form__notice a:hover {
  color: var(--rw-dark, #202124);
}

/* ---------------------------------------------------------
  188.7 Checkboxes and Radio Buttons
  --------------------------------------------------------- */

.wpcf7 .rw-form .wpcf7-list-item {
  display: block;
  margin: 0 0 10px;
}

.wpcf7 .rw-form .wpcf7-list-item:last-child {
  margin-bottom: 0;
}

.wpcf7 .rw-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  cursor: pointer;
}

.wpcf7 .rw-form input[type="checkbox"],
.wpcf7 .rw-form input[type="radio"] {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--rw-red, #cc0d10);
  cursor: pointer;
}

/* ---------------------------------------------------------
  188.8 Submit Button
  --------------------------------------------------------- */

.wpcf7 .rw-form__field--submit {
  margin-top: 2px;
}

.wpcf7 .rw-form input[type="submit"],
.wpcf7 .rw-form .rw-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 0;
  padding: 13px 24px;
  color: var(--rw-white, #ffffff);
  background: var(--rw-red, #cc0d10);
  border: 1px solid var(--rw-red, #cc0d10);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(204, 13, 16, 0.2);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.wpcf7 .rw-form input[type="submit"]:hover,
.wpcf7 .rw-form .rw-form__submit:hover {
  background: #a90a0d;
  border-color: #a90a0d;
  box-shadow: 0 12px 28px rgba(204, 13, 16, 0.28);
  transform: translateY(-1px);
}

.wpcf7 .rw-form input[type="submit"]:focus-visible,
.wpcf7 .rw-form .rw-form__submit:focus-visible {
  outline: 3px solid rgba(241, 210, 0, 0.65);
  outline-offset: 3px;
}

.wpcf7 form.submitting .rw-form input[type="submit"] {
  opacity: 0.7;
  pointer-events: none;
}

/* ---------------------------------------------------------
  188.9 Loading Spinner
  --------------------------------------------------------- */

.wpcf7 .rw-form .wpcf7-spinner {
  display: inline-block;
  margin: 0 0 0 12px;
  vertical-align: middle;
}

/* ---------------------------------------------------------
  188.10 Validation
  --------------------------------------------------------- */

.wpcf7 .rw-form .wpcf7-not-valid {
  border-color: var(--rw-red, #cc0d10);
  box-shadow: 0 0 0 3px rgba(204, 13, 16, 0.08);
}

.wpcf7 .rw-form .wpcf7-not-valid-tip {
  display: block;
  margin: 7px 0 0;
  color: var(--rw-red, #cc0d10);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

/* ---------------------------------------------------------
  188.11 Response Messages
  --------------------------------------------------------- */

.wpcf7 form .wpcf7-response-output {
  width: 100%;
  margin: 22px 0 0;
  padding: 14px 16px;
  color: var(--rw-dark, #202124);
  background: var(--rw-off-white, #f5f5f5);
  border: 1px solid var(--rw-border, #d9d9d9);
  border-left-width: 4px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #f1f8f2;
  border-color: #378a4a;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  background: #fff8e5;
  border-color: #d49c00;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  background: #fff1f1;
  border-color: var(--rw-red, #cc0d10);
}

/* ---------------------------------------------------------
  188.12 Tablet and Mobile
  --------------------------------------------------------- */

@media (max-width: 767px) {
  .wpcf7 .rw-form,
  .wpcf7 .rw-form--two-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .wpcf7 .rw-form__field--full {
    grid-column: auto;
  }

  .wpcf7 .rw-form input[type="submit"],
  .wpcf7 .rw-form .rw-form__submit {
    width: 100%;
  }

  .wpcf7 .rw-form .wpcf7-spinner {
    display: block;
    margin: 12px 0 0;
  }
}

/* ---------------------------------------------------------
  188.13 Reduced Motion
  --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .wpcf7 .rw-form input,
  .wpcf7 .rw-form select,
  .wpcf7 .rw-form textarea,
  .wpcf7 .rw-form input[type="submit"],
  .wpcf7 .rw-form .rw-form__submit {
    scroll-behavior: auto;
    transition: none;
  }

  .wpcf7 .rw-form input[type="submit"]:hover,
  .wpcf7 .rw-form .rw-form__submit:hover {
    transform: none;
  }
}

/* ---------------------------------------------------------
  188.14 Shared Checkbox and Radio Choice Grid
  --------------------------------------------------------- */

/*
   * Contact Form 7 coloca la clase rw-form__choices
   * directamente en el span .wpcf7-form-control.
   */

.wpcf7 .rw-form .wpcf7-form-control.rw-form__choices {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 22px;
  width: 100%;
  margin: 0;
  padding: 18px;
  background: var(--rw-off-white, #f5f5f5);
  border: 1px solid var(--rw-border, #d9d9d9);
  border-radius: 6px;
}

/* Cada opción */
.wpcf7 .rw-form .wpcf7-form-control.rw-form__choices .wpcf7-list-item {
  display: block;
  min-width: 0;
  margin: 0 !important;
  padding: 0;
}

/* Checkbox y texto alineados */
.wpcf7 .rw-form .wpcf7-form-control.rw-form__choices .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--rw-dark, #202124);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

/* Texto de cada opción */
.wpcf7 .rw-form .wpcf7-form-control.rw-form__choices .wpcf7-list-item-label {
  display: block;
  min-width: 0;
}

/* Checkbox */
.wpcf7 .rw-form .wpcf7-form-control.rw-form__choices input[type="checkbox"],
.wpcf7 .rw-form .wpcf7-form-control.rw-form__choices input[type="radio"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--rw-red, #cc0d10);
  cursor: pointer;
}

/* Tablet: dos columnas */
@media (min-width: 768px) and (max-width: 1023px) {
  .wpcf7 .rw-form .wpcf7-form-control.rw-form__choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Móvil: una columna */
@media (max-width: 767px) {
  .wpcf7 .rw-form .wpcf7-form-control.rw-form__choices {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }
}

/* ==========================================================================
     189. Contact Shared Components
     ========================================================================== */

.contact-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.contact-page #contact-form {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.contact-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(38px, 5vw, 68px);
}

.contact-section-heading > div {
  min-width: 0;
}

.contact-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-section-heading > p {
  max-width: 520px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.72;
}

.contact-section-heading--center {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  width: min(100%, 880px);
  margin-inline: auto;
  text-align: center;
}

.contact-section-heading--center > p {
  max-width: 680px;
  justify-self: center;
}

.contact-page address {
  font-style: normal;
}

/* ==========================================================================
     190. Contact Hero
     ========================================================================== */

.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.contact-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.contact-hero::after {
  position: absolute;
  right: -175px;
  bottom: -245px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.contact-hero__content {
  min-width: 0;
  max-width: 760px;
}

.contact-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-breadcrumbs a:hover {
  color: var(--rw-red);
}

.contact-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.contact-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.contact-hero__description {
  max-width: 670px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.contact-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.contact-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.contact-hero__highlights svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.contact-hero__media {
  position: relative;
  width: min(100%, 540px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.contact-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.contact-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.contact-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(315px, 74%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.contact-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-hero__note a {
  overflow-wrap: anywhere;
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.contact-hero__note a:hover {
  color: var(--rw-yellow);
}

/* ==========================================================================
     191. Contact Paths
     ========================================================================== */

.contact-paths {
  position: relative;
}

.contact-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}

.contact-path-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(27px, 3vw, 38px);
  overflow: hidden;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 23px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.contact-path-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.contact-path-card:hover,
.contact-path-card:focus-visible {
  color: var(--rw-ink);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.contact-path-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-radius: 14px;
  transition:
    background-color var(--rw-transition-fast),
    color var(--rw-transition-fast),
    transform var(--rw-transition-fast);
}

.contact-path-card:hover .contact-path-card__icon {
  background: var(--rw-red);
  color: var(--rw-white);
  transform: rotate(-3deg) scale(1.04);
}

.contact-path-card__icon svg {
  width: 25px;
  height: 25px;
}

.contact-path-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--rw-red);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-path-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.2rem, 1.55vw, 1.48rem);
  line-height: 1.22;
}

.contact-path-card > p {
  margin-bottom: 24px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.68;
}

.contact-path-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  max-width: 100%;
  margin-top: auto;
  overflow-wrap: anywhere;
  color: var(--rw-red);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.4;
}

.contact-path-card__link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.contact-path-card:hover .contact-path-card__link {
  color: var(--rw-red-dark);
}

.contact-path-card:hover .contact-path-card__link svg {
  transform: translateX(4px);
}

/* ==========================================================================
     192. Contact Form
     ========================================================================== */

.contact-form-section {
  position: relative;
  background: var(--rw-white);
}

.contact-form-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(241, 210, 0, 0.055),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.contact-form-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 0.84fr)
    minmax(420px, 1.16fr);
  align-items: start;
  gap: clamp(50px, 7vw, 108px);
}

.contact-form-section__intro {
  position: sticky;
  top: calc(var(--rw-desktop-header-height) + 30px);
  max-width: 590px;
}

.contact-form-section__intro h2 {
  max-width: 560px;
  margin-bottom: 20px;
}

.contact-form-section__intro > .lead {
  margin-bottom: 29px;
  color: var(--rw-text);
}

.contact-form-section__points {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 30px;
  border-top: 1px solid var(--rw-border);
  list-style: none;
}

.contact-form-section__points li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding-block: 15px;
  color: var(--rw-ink);
  border-bottom: 1px solid var(--rw-border);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-form-section__points svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.contact-form-section__response-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px 19px;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px var(--rw-radius-small) var(--rw-radius-small) 2px;
}

.contact-form-section__response-note > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 11px;
}

.contact-form-section__response-note svg {
  width: 20px;
  height: 20px;
}

.contact-form-section__response-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--rw-ink);
  font-size: 0.8rem;
  line-height: 1.35;
}

.contact-form-section__response-note p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.75rem;
  line-height: 1.55;
}

.contact-form-panel {
  min-width: 0;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-large);
}

.contact-form-panel__header {
  position: relative;
  padding: clamp(25px, 3vw, 36px);
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.contact-form-panel__header::after {
  position: absolute;
  top: -95px;
  right: -80px;
  width: 245px;
  height: 245px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.15), transparent 68%);
  content: "";
  pointer-events: none;
}

.contact-form-panel__header > * {
  position: relative;
  z-index: 1;
}

.contact-form-panel__header > span {
  display: block;
  margin-bottom: 8px;
  color: var(--rw-yellow);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form-panel__header h3 {
  margin-bottom: 9px;
  color: var(--rw-white);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
}

.contact-form-panel__header p {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.77rem;
  line-height: 1.55;
}

.contact-form-panel__body {
  padding: clamp(25px, 3.5vw, 42px);
}

.contact-form-panel__shortcode {
  min-width: 0;
}

.contact-form-panel__shortcode > *:last-child {
  margin-bottom: 0;
}

/* Field controls, validation and response messages use the shared
   * Global Contact Form 7 System. */

.contact-form-panel__empty {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(204, 13, 16, 0.035), transparent 46%),
    var(--rw-off-white);
  border: 1px dashed var(--rw-border);
  border-radius: var(--rw-radius-medium);
  text-align: center;
}

.contact-form-panel__empty-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 21px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 18px;
  box-shadow: var(--rw-shadow-small);
}

.contact-form-panel__empty-icon svg {
  width: 30px;
  height: 30px;
}

.contact-form-panel__empty > strong {
  margin-bottom: 10px;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: clamp(1.25rem, 1.8vw, 1.58rem);
  line-height: 1.25;
}

.contact-form-panel__empty > p {
  max-width: 500px;
  margin-bottom: 24px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.65;
}

.contact-form-panel__empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ==========================================================================
     193. Contact Locations
     ========================================================================== */

.contact-locations {
  position: relative;
}

.contact-locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.contact-location-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.contact-location-card:hover {
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.contact-location-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.contact-location-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.3), transparent 48%);
  content: "";
  opacity: 0.45;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.contact-location-card:hover .contact-location-card__media::after {
  opacity: 0.68;
}

.contact-location-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 560ms var(--rw-ease-out);
}

.contact-location-card:hover .contact-location-card__image {
  transform: scale(1.04);
}

.contact-location-card__city {
  position: absolute;
  bottom: 17px;
  left: 17px;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 11px;
  background: rgba(23, 25, 28, 0.92);
  color: var(--rw-white);
  border-left: 3px solid var(--rw-yellow);
  border-radius: 2px 7px 7px 2px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-location-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(25px, 3vw, 36px);
}

.contact-location-card__heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 21px;
}

.contact-location-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-radius: 13px;
}

.contact-location-card__icon svg {
  width: 23px;
  height: 23px;
}

.contact-location-card__heading > div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--rw-muted);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-location-card__heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
}

.contact-location-card address {
  display: grid;
  gap: 3px;
  margin-bottom: 17px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.55;
}

.contact-location-card__phone {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-bottom: 21px;
  color: var(--rw-red);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.35;
}

.contact-location-card__phone:hover {
  color: var(--rw-red-dark);
}

.contact-location-card__phone svg {
  width: 19px;
  height: 19px;
}

.contact-location-card__hours {
  display: grid;
  margin: 0 0 25px;
  border-top: 1px solid var(--rw-border);
}

.contact-location-card__hours > div {
  display: grid;
  grid-template-columns: minmax(95px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding-block: 11px;
  border-bottom: 1px solid var(--rw-border);
}

.contact-location-card__hours dt {
  color: var(--rw-muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-location-card__hours dd {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: right;
}

.contact-location-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.contact-location-card__actions .button {
  flex: 1 1 170px;
}

/* ==========================================================================
     194. Contact Service Area
     ========================================================================== */

.contact-service-area {
  position: relative;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.contact-service-area::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.contact-service-area::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.contact-service-area__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.06fr)
    minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 8vw, 118px);
}

.contact-service-area__content {
  max-width: 720px;
}

.contact-service-area__content .eyebrow {
  color: var(--rw-yellow);
}

.contact-service-area__content h2 {
  margin-bottom: 22px;
  color: var(--rw-white);
}

.contact-service-area__content > .lead {
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.67);
}

.contact-service-area__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 24px;
  padding: 0;
  margin: 0 0 31px;
  list-style: none;
}

.contact-service-area__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-service-area__list svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  background: rgba(241, 210, 0, 0.12);
  color: var(--rw-yellow);
  border-radius: 50%;
}

.contact-service-area__schedule {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--rw-border-dark);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-large);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-service-area__schedule-icon {
  display: grid;
  width: 51px;
  height: 51px;
  margin-bottom: 20px;
  place-items: center;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 14px;
}

.contact-service-area__schedule-icon svg {
  width: 25px;
  height: 25px;
}

.contact-service-area__schedule > span {
  display: block;
  margin-bottom: 7px;
  color: var(--rw-yellow);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-service-area__schedule h3 {
  margin-bottom: 19px;
  color: var(--rw-white);
  font-size: clamp(1.35rem, 1.8vw, 1.68rem);
}

.contact-service-area__schedule dl {
  display: grid;
  margin: 0 0 19px;
  border-top: 1px solid var(--rw-border-dark);
}

.contact-service-area__schedule dl > div {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 18px;
  padding-block: 13px;
  border-bottom: 1px solid var(--rw-border-dark);
}

.contact-service-area__schedule dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-service-area__schedule dd {
  margin: 0;
  color: var(--rw-white);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: right;
}

.contact-service-area__schedule > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  line-height: 1.55;
}

/* ==========================================================================
     195. Contact Preparation
     ========================================================================== */

.contact-preparation {
  position: relative;
  background: var(--rw-white);
}

.contact-preparation__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(17px, 2vw, 25px);
}

.contact-preparation-card {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 2.6vw, 33px);
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.045);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.contact-preparation-card::after {
  position: absolute;
  right: -24px;
  bottom: -25px;
  width: 95px;
  height: 95px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.12), transparent 69%);
  content: "";
  pointer-events: none;
}

.contact-preparation-card:hover {
  border-color: rgba(204, 13, 16, 0.25);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.contact-preparation-card > span {
  display: inline-flex;
  margin-bottom: 19px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.contact-preparation-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.25;
}

.contact-preparation-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.79rem;
  line-height: 1.62;
}

/* ==========================================================================
     196. Contact Final CTA
     ========================================================================== */

.contact-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.contact-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.contact-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.contact-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.contact-cta__content,
.contact-cta__actions {
  position: relative;
  z-index: 1;
}

.contact-cta__content {
  max-width: 760px;
}

.contact-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-cta h2 {
  max-width: 710px;
  margin-bottom: 17px;
  color: var(--rw-white);
}

.contact-cta__content > p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.94rem;
  line-height: 1.7;
}

.contact-cta__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     197. Contact Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .contact-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .contact-form-section__grid {
    grid-template-columns:
      minmax(0, 0.82fr)
      minmax(390px, 1.18fr);
    gap: 54px;
  }

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

@media (max-width: 1023px) {
  .contact-page #contact-form {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .contact-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .contact-hero__grid,
  .contact-form-section__grid,
  .contact-service-area__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .contact-hero__content {
    max-width: 820px;
  }

  .contact-hero__media {
    width: min(100%, 780px);
    justify-self: center;
  }

  .contact-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-section-heading > p {
    max-width: 660px;
    justify-self: start;
  }

  .contact-section-heading--center > p {
    justify-self: center;
  }

  .contact-form-section__intro {
    position: static;
    max-width: 760px;
  }

  .contact-form-panel {
    width: min(100%, 780px);
  }

  .contact-service-area__content {
    max-width: 760px;
  }

  .contact-service-area__schedule {
    width: min(100%, 680px);
  }

  .contact-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .contact-hero::before {
    width: 56%;
  }

  .contact-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .contact-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .contact-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-hero__actions .button {
    width: 100%;
  }

  .contact-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-hero__media {
    padding: 0 0 42px 18px;
  }

  .contact-hero__note {
    width: min(285px, 84%);
    padding: 15px 17px;
  }

  .contact-paths__grid,
  .contact-locations__grid,
  .contact-preparation__grid {
    grid-template-columns: 1fr;
  }

  .contact-path-card {
    padding: 27px 23px 29px;
  }

  .contact-form-section__grid {
    gap: 40px;
  }

  .contact-form-panel__header,
  .contact-form-panel__body {
    padding: 25px 21px;
  }

  .contact-form-panel__empty {
    min-height: 340px;
    padding: 36px 22px;
  }

  .contact-form-panel__empty-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .contact-form-panel__empty-actions .button {
    width: 100%;
  }

  .contact-location-card__content {
    padding: 25px 22px 28px;
  }

  .contact-location-card__hours > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-location-card__hours dd {
    text-align: left;
  }

  .contact-location-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-location-card__actions .button {
    width: 100%;
  }

  .contact-service-area__grid {
    gap: 42px;
  }

  .contact-service-area__list {
    grid-template-columns: 1fr;
  }

  .contact-service-area__schedule {
    padding: 28px 23px;
  }

  .contact-service-area__schedule dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-service-area__schedule dd {
    text-align: left;
  }

  .contact-preparation-card {
    padding: 26px 22px;
  }

  .contact-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .contact-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .contact-cta__actions {
    flex-direction: column;
  }

  .contact-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .contact-hero__media {
    padding-left: 12px;
  }

  .contact-hero__note {
    right: -2px;
    width: min(255px, 89%);
  }

  .contact-path-card__link {
    align-items: flex-start;
  }

  .contact-form-section__response-note {
    grid-template-columns: 1fr;
  }

  .contact-location-card__heading {
    align-items: start;
  }

  .contact-location-card__actions .button {
    flex-basis: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-path-card:hover,
  .contact-location-card:hover,
  .contact-preparation-card:hover,
  .contact-path-card:hover .contact-path-card__icon,
  .contact-path-card:hover .contact-path-card__link svg {
    transform: none;
  }

  .contact-location-card:hover .contact-location-card__image {
    transform: none;
  }
}

/* ==========================================================================
     198. Request an Estimate Shared Components
     ========================================================================== */

.estimate-page {
  width: 100%;
  overflow: clip;
  background: var(--rw-white);
}

/* The page already contains its own project conversion flow. */
.request-an-estimate-page-active .footer-conversion {
  display: none;
}

.estimate-page #estimate-form {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 28px);
}

.estimate-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.estimate-section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.estimate-section-heading > p {
  max-width: 540px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  line-height: 1.75;
}

.estimate-section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.estimate-section-heading--center > p {
  max-width: 720px;
  justify-self: center;
}

.estimate-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.estimate-breadcrumbs a:hover {
  color: var(--rw-red);
}

/* ==========================================================================
     199. Request an Estimate Hero
     ========================================================================== */

.estimate-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.estimate-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.estimate-hero::after {
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.estimate-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.estimate-hero__content {
  max-width: 770px;
}

.estimate-hero__title {
  max-width: 15ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.estimate-hero__description {
  max-width: 680px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.estimate-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.estimate-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.estimate-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.estimate-hero__highlights svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.estimate-hero__media {
  position: relative;
  width: min(100%, 550px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.estimate-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.estimate-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.estimate-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(330px, 76%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.estimate-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.estimate-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ==========================================================================
     200. Estimate Project Type Cards
     ========================================================================== */

.estimate-types {
  position: relative;
}

.estimate-types__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.estimate-type-card {
  position: relative;
  min-width: 0;
  padding: clamp(25px, 3vw, 36px);
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 22px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.estimate-type-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.estimate-type-card:hover {
  border-color: rgba(204, 13, 16, 0.25);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.estimate-type-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.estimate-type-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-radius: 14px;
}

.estimate-type-card__icon svg {
  width: 25px;
  height: 25px;
}

.estimate-type-card__number {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.69rem;
  font-weight: 850;
}

.estimate-type-card__label {
  display: block;
  margin-bottom: 9px;
  color: var(--rw-red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.estimate-type-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.2;
}

.estimate-type-card > p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.83rem;
  line-height: 1.68;
}

/* ==========================================================================
     201. Estimate Form and Checklist
     ========================================================================== */

.estimate-form-section {
  position: relative;
  background: var(--rw-white);
}

.estimate-form-section__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(44px, 7vw, 104px);
}

.estimate-form-guide {
  min-width: 0;
}

.estimate-form-guide__inner {
  position: sticky;
  top: calc(var(--rw-desktop-header-height) + 28px);
}

.estimate-form-guide h2 {
  margin-bottom: 20px;
}

.estimate-form-guide__inner > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--rw-text);
  font-size: 0.94rem;
  line-height: 1.75;
}

.estimate-form-guide__list {
  display: grid;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--rw-border);
  list-style: none;
}

.estimate-form-guide__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  padding-block: 17px;
  border-bottom: 1px solid var(--rw-border);
}

.estimate-form-guide__list li > span {
  padding-top: 3px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.67rem;
  font-weight: 850;
}

.estimate-form-guide__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.35;
}

.estimate-form-guide__list p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.77rem;
  line-height: 1.58;
}

.estimate-form-guide__note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  background: var(--rw-yellow-soft);
  border: 1px solid rgba(241, 210, 0, 0.35);
  border-radius: var(--rw-radius-small);
}

.estimate-form-guide__note > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border-radius: 11px;
  box-shadow: var(--rw-shadow-small);
}

.estimate-form-guide__note svg {
  width: 20px;
  height: 20px;
}

.estimate-form-guide__note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--rw-ink);
  font-size: 0.8rem;
  line-height: 1.35;
}

.estimate-form-guide__note p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.73rem;
  line-height: 1.55;
}

.estimate-form-panel {
  min-width: 0;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-large);
  box-shadow: var(--rw-shadow-large);
}

.estimate-form-panel__header {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.estimate-form-panel__header::before {
  position: absolute;
  top: -130px;
  right: -90px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.16), transparent 67%);
  content: "";
  pointer-events: none;
}

.estimate-form-panel__header > * {
  position: relative;
  z-index: 1;
}

.estimate-form-panel__header > span {
  display: block;
  margin-bottom: 9px;
  color: var(--rw-yellow);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.estimate-form-panel__header h2 {
  margin-bottom: 13px;
  color: var(--rw-white);
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
}

.estimate-form-panel__header p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.65;
}

.estimate-form-panel__body {
  padding: clamp(28px, 4vw, 48px);
}

.estimate-form-panel__shortcode > *:last-child {
  margin-bottom: 0;
}

.estimate-form-panel__empty {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 5vw, 60px);
  background: var(--rw-off-white);
  border: 1px dashed var(--rw-border);
  border-radius: var(--rw-radius-medium);
  text-align: center;
}

.estimate-form-panel__empty-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 21px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 20px;
  box-shadow: var(--rw-shadow-small);
}

.estimate-form-panel__empty-icon svg {
  width: 31px;
  height: 31px;
}

.estimate-form-panel__empty > strong {
  margin-bottom: 10px;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 1.15rem;
  line-height: 1.3;
}

.estimate-form-panel__empty > p {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--rw-text);
  font-size: 0.86rem;
  line-height: 1.68;
}

.estimate-form-panel__empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

/* Field controls, validation and response messages use the shared
   * Global Contact Form 7 System. */

/* ==========================================================================
     202. Estimate Service Choices
     ========================================================================== */

.estimate-services {
  position: relative;
}

.estimate-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.estimate-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.045);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.estimate-service-card:hover {
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.estimate-service-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-radius: 15px;
}

.estimate-service-card__icon svg {
  width: 27px;
  height: 27px;
}

.estimate-service-card h3 {
  margin-bottom: 7px;
  color: inherit;
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  line-height: 1.25;
}

.estimate-service-card p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.8rem;
  line-height: 1.62;
}

.estimate-service-card__arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--rw-red);
}

.estimate-service-card__arrow svg {
  width: 19px;
  height: 19px;
  transition: transform var(--rw-transition-fast);
}

.estimate-service-card:hover .estimate-service-card__arrow svg {
  transform: translateX(4px);
}

/* ==========================================================================
     203. Estimate Process
     ========================================================================== */

.estimate-process {
  position: relative;
  overflow: hidden;
  background: var(--rw-white);
}

.estimate-process::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  background: linear-gradient(135deg, rgba(241, 210, 0, 0.05), transparent 62%);
  content: "";
  pointer-events: none;
}

.estimate-process__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--rw-border);
  border: 1px solid var(--rw-border);
}

.estimate-process-step {
  min-width: 0;
  min-height: 260px;
  padding: clamp(27px, 3.5vw, 42px);
  background: var(--rw-white);
  transition:
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.estimate-process-step:hover {
  position: relative;
  z-index: 1;
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.estimate-process-step__number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.71rem;
  font-weight: 900;
}

.estimate-process-step h3 {
  margin-bottom: 14px;
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  line-height: 1.25;
}

.estimate-process-step p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.81rem;
  line-height: 1.68;
}

/* ==========================================================================
     204. Estimate Helpful Paths
     ========================================================================== */

.estimate-paths {
  position: relative;
}

.estimate-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 34px);
}

.estimate-path-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 22px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.estimate-path-card::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}

.estimate-path-card:hover {
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.27);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.estimate-path-card__label {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: var(--rw-red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.estimate-path-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  color: inherit;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.estimate-path-card > p {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.68;
}

.estimate-path-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.78rem;
  font-weight: 850;
}

.estimate-path-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.estimate-path-card:hover .estimate-path-card__link svg {
  transform: translateX(4px);
}

/* ==========================================================================
     205. Estimate Location Support
     ========================================================================== */

.estimate-locations {
  position: relative;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.estimate-locations::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}

.estimate-locations::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.estimate-locations__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(50px, 8vw, 118px);
}

.estimate-locations__content {
  max-width: 700px;
}

.estimate-locations__content .eyebrow {
  color: var(--rw-yellow);
}

.estimate-locations__content h2 {
  margin-bottom: 20px;
  color: var(--rw-white);
}

.estimate-locations__content .lead {
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.72);
}

.estimate-locations__content > p:not(.eyebrow):not(.lead) {
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.72;
}

.estimate-locations__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.estimate-locations__cards {
  display: grid;
  gap: 15px;
}

.estimate-location-card {
  padding: clamp(22px, 3vw, 31px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--rw-border-dark);
  border-radius: var(--rw-radius-medium);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background-color var(--rw-transition),
    border-color var(--rw-transition),
    transform var(--rw-transition);
}

.estimate-location-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(241, 210, 0, 0.42);
  transform: translateX(5px);
}

.estimate-location-card__heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 17px;
}

.estimate-location-card__heading > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  background: rgba(255, 255, 255, 0.09);
  color: var(--rw-yellow);
  border-radius: 12px;
}

.estimate-location-card__heading svg {
  width: 22px;
  height: 22px;
}

.estimate-location-card__heading small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.estimate-location-card h3 {
  margin-bottom: 0;
  color: var(--rw-white);
  font-size: 1.18rem;
}

.estimate-location-card address {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.55;
}

.estimate-location-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--rw-white);
  font-size: 0.9rem;
  font-weight: 800;
}

.estimate-location-card__phone:hover {
  color: var(--rw-yellow);
}

.estimate-location-card__phone svg {
  width: 18px;
  height: 18px;
  color: var(--rw-yellow);
}

.estimate-location-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-yellow);
  font-size: 0.76rem;
  font-weight: 850;
}

.estimate-location-card__link svg {
  width: 17px;
  height: 17px;
  transition: transform var(--rw-transition-fast);
}

.estimate-location-card__link:hover {
  color: var(--rw-white);
}

.estimate-location-card__link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     206. Estimate Final Reminder
     ========================================================================== */

.estimate-final {
  padding: var(--rw-section-space) 0;
  background: var(--rw-white);
}

.estimate-final__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.estimate-final__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.estimate-final__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.estimate-final__content,
.estimate-final__actions {
  position: relative;
  z-index: 1;
}

.estimate-final__content {
  max-width: 790px;
}

.estimate-final__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.estimate-final h2 {
  max-width: 740px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.estimate-final__content > p:not(.estimate-final__eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.94rem;
  line-height: 1.72;
}

.estimate-final__actions {
  display: flex;
  min-width: 235px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     207. Request an Estimate Responsive
     ========================================================================== */

@media (max-width: 1199px) {
  .estimate-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  }

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

  .estimate-form-section__grid {
    gap: 54px;
  }
}

@media (max-width: 1023px) {
  .estimate-page #estimate-form {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .estimate-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .estimate-hero__grid,
  .estimate-form-section__grid,
  .estimate-locations__grid {
    grid-template-columns: 1fr;
  }

  .estimate-hero__media {
    width: min(100%, 780px);
    justify-self: center;
  }

  .estimate-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .estimate-section-heading > p {
    justify-self: start;
  }

  .estimate-section-heading--center > p {
    justify-self: center;
  }

  .estimate-form-guide__inner {
    position: static;
    max-width: 780px;
  }

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

  .estimate-path-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .estimate-locations__content {
    max-width: 780px;
  }

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

  .estimate-final__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .estimate-final__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .estimate-hero::before {
    width: 56%;
  }

  .estimate-hero__title {
    max-width: 16ch;
  }

  .estimate-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .estimate-hero__actions .button {
    width: 100%;
  }

  .estimate-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .estimate-hero__media {
    padding: 0 0 42px 18px;
  }

  .estimate-hero__note {
    width: min(300px, 84%);
    padding: 15px 17px;
  }

  .estimate-types__grid,
  .estimate-services__grid,
  .estimate-process__grid,
  .estimate-paths__grid,
  .estimate-locations__cards {
    grid-template-columns: 1fr;
  }

  .estimate-type-card {
    padding: 26px 22px;
  }

  .estimate-form-panel {
    border-radius: var(--rw-radius-medium);
  }

  .estimate-form-panel__header,
  .estimate-form-panel__body {
    padding: 28px 22px;
  }

  .estimate-form-panel__empty {
    min-height: 360px;
    padding: 38px 20px;
  }

  .estimate-form-panel__empty-actions {
    width: 100%;
    flex-direction: column;
  }

  .estimate-form-panel__empty-actions .button {
    width: 100%;
  }

  .estimate-service-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 15px;
    padding: 22px 19px;
  }

  .estimate-service-card__arrow {
    display: none;
  }

  .estimate-process-step {
    min-height: auto;
    padding: 28px 22px;
  }

  .estimate-process-step__number {
    margin-bottom: 24px;
  }

  .estimate-path-card,
  .estimate-path-card:last-child:nth-child(odd) {
    grid-column: auto;
    min-height: 270px;
  }

  .estimate-locations__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .estimate-locations__actions .button {
    width: 100%;
  }

  .estimate-location-card:hover {
    transform: translateY(-4px);
  }

  .estimate-final {
    padding-block: var(--rw-section-space-small);
  }

  .estimate-final__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .estimate-final__actions {
    flex-direction: column;
  }

  .estimate-final__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .estimate-hero__media {
    padding-left: 12px;
  }

  .estimate-hero__note {
    right: -2px;
    width: min(270px, 88%);
  }

  .estimate-form-guide__list li {
    gap: 11px;
  }

  .estimate-form-guide__note {
    grid-template-columns: 1fr;
  }

  .estimate-service-card {
    grid-template-columns: 1fr;
  }

  .estimate-service-card__icon {
    width: 47px;
    height: 47px;
  }

  .estimate-location-card__heading {
    align-items: start;
  }
}

/* ==========================================================================
     208. Request an Estimate Reduced Motion
     ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .estimate-type-card:hover,
  .estimate-service-card:hover,
  .estimate-process-step:hover,
  .estimate-path-card:hover,
  .estimate-location-card:hover,
  .estimate-service-card:hover .estimate-service-card__arrow svg,
  .estimate-path-card:hover .estimate-path-card__link svg,
  .estimate-location-card__link:hover svg {
    transform: none;
  }
}

/* ==========================================================================
     209. FAQ Shared Components
     ========================================================================== */

.faq-page {
  width: 100%;
  overflow: clip;
  background: var(--rw-white);
}

.faq-page #faq-categories,
.faq-page .faq-group {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 30px);
}

.faq-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(38px, 5vw, 66px);
}

.faq-section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.faq-section-heading > p {
  max-width: 540px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.72;
}

.faq-section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.faq-section-heading--center > p {
  max-width: 690px;
  justify-self: center;
}

.faq-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
}

.faq-text-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.faq-text-link:hover {
  color: var(--rw-red-dark);
}

.faq-text-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     210. FAQ Hero
     ========================================================================== */

.faq-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.faq-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.faq-hero::after {
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.faq-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.faq-hero__content {
  max-width: 760px;
}

.faq-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.faq-breadcrumbs a:hover {
  color: var(--rw-red);
}

.faq-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.faq-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.faq-hero__description {
  max-width: 670px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.faq-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.faq-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.faq-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.faq-hero__highlights svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.faq-hero__media {
  position: relative;
  width: min(100%, 540px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.faq-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.faq-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.faq-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(305px, 72%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.faq-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

/* ==========================================================================
     211. FAQ Popular Questions
     ========================================================================== */

.faq-popular {
  position: relative;
  background: var(--rw-white);
}

.faq-popular__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 34px);
}

.faq-popular-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(27px, 3vw, 38px);
  overflow: hidden;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.faq-popular-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.faq-popular-card:hover {
  border-color: rgba(204, 13, 16, 0.26);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.faq-popular-card__number {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 28px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 850;
}

.faq-popular-card__label {
  margin-bottom: 8px;
  color: var(--rw-red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.faq-popular-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.22rem, 1.75vw, 1.55rem);
  line-height: 1.2;
}

.faq-popular-card > p:not(.faq-popular-card__label) {
  margin-bottom: 24px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.68;
}

.faq-popular-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.79rem;
  font-weight: 850;
}

.faq-popular-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.faq-popular-card:hover .faq-popular-card__link svg {
  transform: translateX(4px);
}

/* ==========================================================================
     212. FAQ Category Navigation
     ========================================================================== */

.faq-navigation {
  position: relative;
}

.faq-navigation__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(32px, 4.5vw, 52px);
}

.faq-navigation__heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.faq-navigation__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-navigation-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "number title arrow"
    "number count arrow";
  align-items: center;
  gap: 4px 14px;
  min-width: 0;
  min-height: 88px;
  padding: 17px 18px;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(23, 25, 28, 0.035);
}

.faq-navigation-card:hover,
.faq-navigation-card:focus-visible {
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-small);
  transform: translateY(-3px);
}

.faq-navigation-card > span {
  grid-area: number;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border-radius: 10px;
  font-family: var(--rw-font-mono);
  font-size: 0.66rem;
  font-weight: 850;
}

.faq-navigation-card strong {
  grid-area: title;
  overflow-wrap: anywhere;
  color: inherit;
  font-family: var(--rw-font-heading);
  font-size: 0.88rem;
  line-height: 1.3;
}

.faq-navigation-card small {
  grid-area: count;
  color: var(--rw-muted);
  font-size: 0.65rem;
  line-height: 1.35;
}

.faq-navigation-card > svg {
  grid-area: arrow;
  width: 18px;
  height: 18px;
  color: var(--rw-muted);
  transition:
    color var(--rw-transition-fast),
    transform var(--rw-transition-fast);
}

.faq-navigation-card:hover > svg,
.faq-navigation-card:focus-visible > svg {
  color: var(--rw-red);
  transform: translateX(4px);
}

/* ==========================================================================
     213. FAQ Groups and Accordion
     ========================================================================== */

.faq-groups {
  position: relative;
  background: var(--rw-white);
}

.faq-groups__layout {
  display: grid;
  grid-template-columns:
    minmax(230px, 0.62fr)
    minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(45px, 7vw, 105px);
}

.faq-groups__sidebar {
  position: sticky;
  top: calc(var(--rw-desktop-header-height) + 28px);
  align-self: start;
  min-width: 0;
}

.faq-groups__sidebar-panel {
  position: static;
  padding: 22px;
  overflow: hidden;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.faq-groups__sidebar-label {
  margin-bottom: 15px;
  color: var(--rw-muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.faq-groups__sidebar nav {
  display: grid;
  border-top: 1px solid var(--rw-border);
}

.faq-groups__sidebar nav a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding-block: 13px;
  color: var(--rw-ink);
  border-bottom: 1px solid var(--rw-border);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.4;
}

.faq-groups__sidebar nav a span {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.62rem;
  font-weight: 850;
}

.faq-groups__sidebar nav a:hover {
  color: var(--rw-red);
  transform: translateX(3px);
}

.faq-groups__sidebar-contact {
  padding: 20px;
  margin-top: 22px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 10px 10px 2px;
}

.faq-groups__sidebar-contact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

.faq-groups__sidebar-contact p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.55;
}

.faq-groups__sidebar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-yellow);
  font-size: 0.73rem;
  font-weight: 850;
}

.faq-groups__sidebar-contact a svg {
  width: 17px;
  height: 17px;
  transition: transform var(--rw-transition-fast);
}

.faq-groups__sidebar-contact a:hover svg {
  transform: translateX(4px);
}

.faq-groups__content {
  min-width: 0;
}

.faq-group + .faq-group {
  padding-top: clamp(56px, 7vw, 90px);
  margin-top: clamp(56px, 7vw, 90px);
  border-top: 1px solid var(--rw-border);
}

.faq-group__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  margin-bottom: 28px;
}

.faq-group__number {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: var(--rw-red);
  color: var(--rw-white);
  border-radius: 14px;
  box-shadow: 0 9px 22px rgba(204, 13, 16, 0.18);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 850;
}

.faq-group__label {
  margin-bottom: 7px;
  color: var(--rw-red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.faq-group__header h2 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
}

.faq-group__header > div:last-child > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-accordion__item {
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(23, 25, 28, 0.035);
}

.faq-accordion__item[open] {
  border-color: rgba(204, 13, 16, 0.25);
  box-shadow: var(--rw-shadow-small);
}

.faq-accordion__item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 74px;
  padding: 16px 18px;
  color: var(--rw-ink);
  cursor: pointer;
  list-style: none;
}

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

.faq-accordion__item summary::marker {
  content: "";
}

.faq-accordion__item summary:hover {
  color: var(--rw-red);
}

.faq-accordion__question-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--rw-off-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 9px;
  font-family: var(--rw-font-mono);
  font-size: 0.62rem;
  font-weight: 850;
}

.faq-accordion__question {
  color: inherit;
  font-family: var(--rw-font-heading);
  font-size: 0.97rem;
  font-weight: 750;
  line-height: 1.38;
}

.faq-accordion__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 50%;
}

.faq-accordion__icon svg {
  width: 17px;
  height: 17px;
  transition: transform var(--rw-transition);
}

.faq-accordion__item[open] .faq-accordion__icon {
  background: var(--rw-red);
}

.faq-accordion__item[open] .faq-accordion__icon svg {
  transform: rotate(45deg);
}

.faq-accordion__answer {
  padding: 0 18px 20px 67px;
}

.faq-accordion__answer p {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.86rem;
  line-height: 1.72;
}

/* ==========================================================================
     214. FAQ Helpful Project Paths
     ========================================================================== */

.faq-paths {
  position: relative;
}

.faq-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 34px);
}

.faq-path-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3.4vw, 42px);
  overflow: hidden;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.faq-path-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 86px;
  height: 4px;
  background: var(--rw-yellow);
  content: "";
  transform: scaleX(0.35);
  transform-origin: right;
  transition: transform var(--rw-transition);
}

.faq-path-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.faq-path-card:hover::after {
  transform: scaleX(1);
}

.faq-path-card__number {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 27px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 850;
}

.faq-path-card__label {
  margin-bottom: 8px;
  color: var(--rw-red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.faq-path-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.28rem, 1.85vw, 1.62rem);
  line-height: 1.2;
}

.faq-path-card > p:not(.faq-path-card__label) {
  margin-bottom: 24px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.68;
}

.faq-path-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.79rem;
  font-weight: 850;
}

.faq-path-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.faq-path-card:hover .faq-path-card__link svg {
  transform: translateX(4px);
}

/* ==========================================================================
     215. FAQ Contact Strip
     ========================================================================== */

.faq-contact-strip {
  position: relative;
  overflow: hidden;
  background: var(--rw-charcoal);
  color: var(--rw-white);
}

.faq-contact-strip::before {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}

.faq-contact-strip__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
  padding-block: clamp(48px, 6vw, 72px);
}

.faq-contact-strip__content h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--rw-white);
  font-size: clamp(1.9rem, 3.25vw, 2.9rem);
}

.faq-contact-strip__content > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-contact-strip .eyebrow {
  color: var(--rw-yellow);
}

.faq-contact-strip__locations {
  display: grid;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--rw-border-dark);
  border-radius: var(--rw-radius-medium);
}

.faq-contact-strip__locations a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 17px 20px;
}

.faq-contact-strip__locations a + a {
  border-top: 1px solid var(--rw-border-dark);
}

.faq-contact-strip__locations a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.faq-contact-strip__locations span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.faq-contact-strip__locations strong {
  overflow-wrap: anywhere;
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* ==========================================================================
     216. FAQ Final CTA
     ========================================================================== */

.faq-cta {
  padding: var(--rw-section-space) 0;
  background: var(--rw-white);
}

.faq-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.faq-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.faq-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.faq-cta__content,
.faq-cta__actions {
  position: relative;
  z-index: 1;
}

.faq-cta__content {
  max-width: 760px;
}

.faq-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-cta h2 {
  max-width: 710px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(2rem, 3.7vw, 3.25rem);
}

.faq-cta__content > p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.94rem;
  line-height: 1.72;
}

.faq-cta__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     217. FAQ Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .faq-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .faq-groups__layout {
    grid-template-columns:
      minmax(215px, 0.55fr)
      minmax(0, 1.45fr);
    gap: 52px;
  }

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

@media (max-width: 1023px) {
  .faq-page #faq-categories,
  .faq-page .faq-group {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .faq-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .faq-hero__grid,
  .faq-groups__layout,
  .faq-contact-strip__grid {
    grid-template-columns: 1fr;
  }

  .faq-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .faq-hero__content {
    max-width: 820px;
  }

  .faq-hero__media {
    width: min(100%, 780px);
    justify-self: center;
  }

  .faq-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-section-heading > p {
    max-width: 680px;
    justify-self: start;
  }

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

  .faq-popular-card:last-child:nth-child(odd),
  .faq-path-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .faq-groups__sidebar {
    position: static;
  }

  .faq-groups__sidebar-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
    gap: 24px;
  }

  .faq-groups__sidebar-label {
    grid-column: 1 / -1;
    margin-bottom: -8px;
  }

  .faq-groups__sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    border-top: 0;
  }

  .faq-groups__sidebar nav a {
    padding: 11px 12px;
    border: 1px solid var(--rw-border);
  }

  .faq-groups__sidebar-contact {
    margin-top: 0;
  }

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

  .faq-contact-strip__locations a + a {
    border-top: 0;
    border-left: 1px solid var(--rw-border-dark);
  }

  .faq-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .faq-hero::before {
    width: 56%;
  }

  .faq-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .faq-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .faq-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-hero__actions .button {
    width: 100%;
  }

  .faq-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-hero__media {
    padding: 0 0 42px 18px;
  }

  .faq-hero__note {
    width: min(280px, 82%);
    padding: 15px 17px;
  }

  .faq-popular__grid,
  .faq-navigation__grid,
  .faq-paths__grid {
    grid-template-columns: 1fr;
  }

  .faq-popular-card:last-child:nth-child(odd),
  .faq-path-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .faq-navigation__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .faq-groups__sidebar-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .faq-groups__sidebar-label {
    grid-column: auto;
    margin-bottom: 0;
  }

  .faq-groups__sidebar nav {
    grid-template-columns: 1fr;
  }

  .faq-group__header {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .faq-group__number {
    width: 44px;
    height: 44px;
  }

  .faq-accordion__item summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 68px;
    padding: 15px 16px;
  }

  .faq-accordion__question-number {
    display: none;
  }

  .faq-accordion__question {
    font-size: 0.92rem;
  }

  .faq-accordion__answer {
    padding: 0 16px 18px;
  }

  .faq-contact-strip__locations {
    grid-template-columns: 1fr;
  }

  .faq-contact-strip__locations a + a {
    border-top: 1px solid var(--rw-border-dark);
    border-left: 0;
  }

  .faq-cta {
    padding-block: var(--rw-section-space-small);
  }

  .faq-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .faq-cta__actions {
    flex-direction: column;
  }

  .faq-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .faq-hero__media {
    padding-left: 12px;
  }

  .faq-hero__note {
    right: -2px;
    width: min(250px, 88%);
  }

  .faq-navigation-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 82px;
    padding: 15px;
  }

  .faq-popular-card,
  .faq-path-card {
    padding: 26px 22px 29px;
  }

  .faq-groups__sidebar-contact {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-popular-card:hover,
  .faq-navigation-card:hover,
  .faq-path-card:hover,
  .faq-groups__sidebar nav a:hover,
  .faq-text-link:hover svg,
  .faq-popular-card:hover .faq-popular-card__link svg,
  .faq-navigation-card:hover > svg,
  .faq-path-card:hover .faq-path-card__link svg,
  .faq-groups__sidebar-contact a:hover svg {
    transform: none;
  }

  .faq-accordion__icon svg {
    transition: none;
  }
}

/* ==========================================================================
     218. Locations Shared Components
     ========================================================================== */

.locations-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.locations-page #physical-locations {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 30px);
}

.locations-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}

.locations-section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 3.15vw, 2.95rem);
  line-height: 1.03;
}

.locations-section-heading > p {
  max-width: 520px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.93rem, 1.05vw, 1.01rem);
  line-height: 1.72;
}

.locations-section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.locations-section-heading--center h2 {
  max-width: 820px;
}

.locations-section-heading--center > p {
  max-width: 690px;
  justify-self: center;
}

.locations-section-heading--light h2 {
  color: var(--rw-white);
}

.locations-section-heading--light > p {
  color: rgba(255, 255, 255, 0.66);
}

.locations-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rw-red);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
}

.locations-text-link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.locations-text-link:hover {
  color: var(--rw-red-dark);
}

.locations-text-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     219. Locations Hero
     ========================================================================== */

.locations-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 57%,
    var(--rw-off-white) 57%,
    var(--rw-off-white) 100%
  );
}

.locations-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.locations-hero::after {
  position: absolute;
  right: -175px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.locations-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.locations-hero__content {
  min-width: 0;
  max-width: 760px;
}

.locations-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.locations-breadcrumbs a:hover {
  color: var(--rw-red);
}

.locations-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.locations-hero__title {
  max-width: 15.5ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.locations-hero__description {
  max-width: 660px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.locations-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.locations-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.locations-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.locations-hero__highlights svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.locations-hero__media {
  position: relative;
  width: min(100%, 555px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.locations-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.locations-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.locations-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(315px, 72%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.locations-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.locations-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.93rem;
  line-height: 1.35;
}

/* ==========================================================================
     220. Physical Locations Overview
     ========================================================================== */

.locations-overview {
  position: relative;
  background: var(--rw-white);
}

.locations-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.locations-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.055);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.locations-card:hover {
  border-color: rgba(204, 13, 16, 0.27);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.locations-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rw-warm-gray);
}

.locations-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 25, 28, 0.28), transparent 48%);
  content: "";
  opacity: 0.34;
  pointer-events: none;
  transition: opacity var(--rw-transition);
}

.locations-card:hover .locations-card__media::after {
  opacity: 0.62;
}

.locations-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 560ms var(--rw-ease-out);
}

.locations-card:hover .locations-card__image {
  transform: scale(1.04);
}

.locations-card__badge {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 7px 11px;
  background: rgba(23, 25, 28, 0.9);
  color: var(--rw-white);
  border-left: 3px solid var(--rw-yellow);
  border-radius: 2px 7px 7px 2px;
  box-shadow: 0 8px 18px rgba(23, 25, 28, 0.18);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.locations-card__badge svg {
  width: 17px;
  height: 17px;
  color: var(--rw-yellow);
}

.locations-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(25px, 3vw, 36px);
}

.locations-card__content h3 {
  margin-bottom: 13px;
  font-size: clamp(1.42rem, 2vw, 1.85rem);
  line-height: 1.16;
}

.locations-card__copy {
  margin-bottom: 20px;
  color: var(--rw-text);
  font-size: 0.85rem;
  line-height: 1.68;
}

.locations-card__address {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  margin: 0 0 13px;
  background: var(--rw-off-white);
  color: var(--rw-ink);
  border-left: 3px solid var(--rw-red);
  border-radius: 2px var(--rw-radius-small) var(--rw-radius-small) 2px;
  font-size: 0.81rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.locations-card__phone {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 19px;
  color: var(--rw-red);
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.locations-card__phone:hover {
  color: var(--rw-red-dark);
}

.locations-card__hours {
  display: grid;
  margin: 0 0 25px;
  border-top: 1px solid var(--rw-border);
}

.locations-card__hours > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  padding-block: 12px;
  border-bottom: 1px solid var(--rw-border);
}

.locations-card__hours dt {
  color: var(--rw-muted);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.085em;
  line-height: 1.35;
  text-transform: uppercase;
}

.locations-card__hours dd {
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.79rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: right;
}

.locations-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.locations-card__actions .button {
  width: 100%;
  min-height: 48px;
  padding-inline: 15px;
  font-size: 0.78rem;
}

/* ==========================================================================
     221. Compton Physical Location
     ========================================================================== */

.locations-service-area {
  position: relative;
  overflow: hidden;
}

.locations-service-area__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(52px, 8vw, 118px);
}

.locations-service-area__media {
  position: relative;
  padding: 0 0 clamp(40px, 5vw, 66px) clamp(26px, 3vw, 46px);
}

.locations-service-area__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 54px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.locations-service-area__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px 2px 30px 2px;
  box-shadow: var(--rw-shadow-large);
}

.locations-service-area__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  max-width: 255px;
  flex-direction: column;
  gap: 5px;
  padding: 19px 22px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 18px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.locations-service-area__badge span {
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.locations-service-area__badge strong {
  font-family: var(--rw-font-heading);
  font-size: 1.08rem;
  line-height: 1.2;
}

.locations-service-area__content {
  max-width: 720px;
}

.locations-service-area__content h2 {
  margin-bottom: 22px;
  font-size: clamp(1.95rem, 3.15vw, 2.95rem);
  line-height: 1.03;
}

.locations-service-area__content > .lead {
  margin-bottom: 28px;
  font-size: clamp(0.96rem, 1.05vw, 1.04rem);
  line-height: 1.72;
}

.locations-service-area__list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 30px;
  border-top: 1px solid var(--rw-border);
  list-style: none;
}

.locations-service-area__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-block: 15px;
  color: var(--rw-ink);
  border-bottom: 1px solid var(--rw-border);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.5;
}

.locations-service-area__list svg {
  width: 21px;
  height: 21px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.locations-service-area__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

/* ==========================================================================
     222. Location Starting Points
     ========================================================================== */

.locations-starting-point {
  position: relative;
  background: var(--rw-white);
}

.locations-starting-point__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.locations-start-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(27px, 3.4vw, 40px);
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.locations-start-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.locations-start-card:hover {
  border-color: rgba(204, 13, 16, 0.27);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.locations-start-card--service-area {
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-color: var(--rw-charcoal);
}

.locations-start-card--service-area::before {
  background: var(--rw-yellow);
}

.locations-start-card__number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.7rem;
  font-weight: 850;
}

.locations-start-card--service-area .locations-start-card__number {
  color: var(--rw-yellow);
}

.locations-start-card__label {
  margin-bottom: 9px;
  color: var(--rw-muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.locations-start-card--service-area .locations-start-card__label {
  color: rgba(255, 255, 255, 0.5);
}

.locations-start-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.38rem, 2vw, 1.78rem);
  line-height: 1.15;
}

.locations-start-card--service-area h3 {
  color: var(--rw-white);
}

.locations-start-card > p:not(.locations-start-card__label) {
  margin-bottom: 24px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.68;
}

.locations-start-card--service-area > p:not(.locations-start-card__label) {
  color: rgba(255, 255, 255, 0.64);
}

.locations-start-card .locations-text-link {
  margin-top: auto;
}

.locations-start-card--service-area .locations-text-link {
  color: var(--rw-yellow);
}

.locations-start-card--service-area .locations-text-link:hover {
  color: var(--rw-white);
}

/* ==========================================================================
     223. Visit Preparation
     ========================================================================== */

.locations-preparation {
  position: relative;
  overflow: hidden;
}

.locations-preparation::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  content: "";
  pointer-events: none;
}

.locations-preparation::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.locations-preparation .site-container {
  position: relative;
  z-index: 1;
}

.locations-preparation__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rw-border-dark);
  border-bottom: 1px solid var(--rw-border-dark);
}

.locations-preparation-card {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.4vw, 42px);
  border-right: 1px solid var(--rw-border-dark);
}

.locations-preparation-card:last-child {
  border-right: 0;
}

.locations-preparation-card > span {
  display: inline-flex;
  margin-bottom: 21px;
  color: var(--rw-yellow);
  font-family: var(--rw-font-mono);
  font-size: 0.69rem;
  font-weight: 850;
}

.locations-preparation-card h3 {
  margin-bottom: 13px;
  color: var(--rw-white);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.locations-preparation-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.79rem;
  line-height: 1.64;
}

/* ==========================================================================
     224. Helpful Project Paths
     ========================================================================== */

.locations-project-paths {
  position: relative;
}

.locations-project-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}

.locations-path-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 42px);
  overflow: hidden;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.locations-path-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 4px;
  background: var(--rw-yellow);
  content: "";
}

.locations-path-card:hover {
  color: var(--rw-ink);
  border-color: rgba(204, 13, 16, 0.27);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.locations-path-card__label {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--rw-red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.locations-path-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  line-height: 1.17;
}

.locations-path-card p {
  margin-bottom: 25px;
  color: var(--rw-text);
  font-size: 0.83rem;
  line-height: 1.68;
}

.locations-path-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.79rem;
  font-weight: 850;
  line-height: 1.3;
}

.locations-path-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.locations-path-card:hover .locations-path-card__link {
  color: var(--rw-red-dark);
}

.locations-path-card:hover .locations-path-card__link svg {
  transform: translateX(4px);
}

/* ==========================================================================
     225. Locations Final CTA
     ========================================================================== */

.locations-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.locations-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.locations-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.locations-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.locations-cta__content,
.locations-cta__actions {
  position: relative;
  z-index: 1;
}

.locations-cta__content {
  max-width: 760px;
}

.locations-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.locations-cta h2 {
  max-width: 720px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(2rem, 3.7vw, 3.15rem);
  line-height: 1.03;
}

.locations-cta__content > p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.95rem;
  line-height: 1.72;
}

.locations-cta__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     226. Locations Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .locations-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.72fr);
  }

  .locations-service-area__grid {
    gap: 62px;
  }

  .locations-preparation-card {
    padding-inline: 27px;
  }
}

@media (max-width: 1023px) {
  .locations-page #physical-locations {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .locations-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .locations-hero__grid,
  .locations-service-area__grid {
    grid-template-columns: 1fr;
  }

  .locations-hero__content {
    max-width: 820px;
  }

  .locations-hero__media,
  .locations-service-area__media {
    width: min(100%, 800px);
    justify-self: center;
  }

  .locations-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .locations-section-heading > p {
    max-width: 680px;
    justify-self: start;
  }

  .locations-section-heading--center > p {
    justify-self: center;
  }

  .locations-starting-point__grid,
  .locations-project-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locations-start-card:last-child,
  .locations-path-card:last-child {
    grid-column: 1 / -1;
  }

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

  .locations-preparation-card:nth-child(2) {
    border-right: 0;
  }

  .locations-preparation-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rw-border-dark);
  }

  .locations-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .locations-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .locations-hero::before {
    width: 56%;
  }

  .locations-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .locations-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .locations-hero__actions .button {
    width: 100%;
  }

  .locations-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .locations-hero__media,
  .locations-service-area__media {
    padding: 0 0 42px 18px;
  }

  .locations-hero__note {
    width: min(285px, 82%);
    padding: 15px 17px;
  }

  .locations-overview__grid,
  .locations-starting-point__grid,
  .locations-project-paths__grid {
    grid-template-columns: 1fr;
  }

  .locations-start-card:last-child,
  .locations-path-card:last-child {
    grid-column: auto;
  }

  .locations-card__content {
    padding: 25px 22px 28px;
  }

  .locations-card__hours > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .locations-card__hours dd {
    text-align: left;
  }

  .locations-card__actions {
    grid-template-columns: 1fr;
  }

  .locations-service-area__content h2,
  .locations-section-heading h2 {
    font-size: clamp(1.78rem, 8.4vw, 2.55rem);
  }

  .locations-service-area__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .locations-service-area__actions .button {
    width: 100%;
  }

  .locations-start-card,
  .locations-path-card {
    min-height: auto;
    padding: 30px 23px;
  }

  .locations-preparation__grid {
    grid-template-columns: 1fr;
  }

  .locations-preparation-card,
  .locations-preparation-card:nth-child(2),
  .locations-preparation-card:nth-child(-n + 2) {
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rw-border-dark);
  }

  .locations-preparation-card:last-child {
    border-bottom: 0;
  }

  .locations-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .locations-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .locations-cta__actions {
    flex-direction: column;
  }

  .locations-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .locations-hero__media,
  .locations-service-area__media {
    padding-left: 12px;
  }

  .locations-hero__note {
    right: -2px;
    width: min(250px, 88%);
  }

  .locations-service-area__badge {
    right: -2px;
    max-width: 210px;
    padding: 16px 18px;
  }

  .locations-card__badge {
    top: 13px;
    left: 13px;
  }
}

@media (min-width: 1024px) and (max-height: 980px) {
  .locations-section-heading h2,
  .locations-service-area__content h2 {
    font-size: clamp(1.9rem, 2.75vw, 2.55rem);
  }

  .locations-cta h2 {
    font-size: clamp(1.95rem, 3vw, 2.75rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .locations-card:hover,
  .locations-start-card:hover,
  .locations-path-card:hover,
  .locations-text-link:hover svg,
  .locations-path-card:hover .locations-path-card__link svg {
    transform: none;
  }

  .locations-card:hover .locations-card__image {
    transform: none;
  }
}

/* ==========================================================================
     227. Location Detail Shared Components
     ========================================================================== */

.location-detail-page {
  width: 100%;
  overflow: hidden;
  background: var(--rw-white);
}

.location-detail-page--compton,
.location-detail-page--bellflower {
  --location-detail-accent: var(--rw-red);
}

.location-detail-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(280px, 0.82fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(38px, 5vw, 68px);
}

.location-detail-section-heading h2 {
  max-width: 770px;
  margin-bottom: 0;
}

.location-detail-section-heading > p {
  max-width: 520px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.92rem, 1.08vw, 1rem);
  line-height: 1.72;
}

.location-detail-section-heading--light h2 {
  color: var(--rw-white);
}

.location-detail-section-heading--light > p {
  color: rgba(255, 255, 255, 0.64);
}

.location-detail-text-link,
.location-detail-path-card__link,
.location-detail-other-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-red);
  font-size: 0.79rem;
  font-weight: 850;
  line-height: 1.35;
}

.location-detail-text-link svg,
.location-detail-path-card__link svg,
.location-detail-other-card strong svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform var(--rw-transition-fast);
}

.location-detail-text-link:hover,
.location-detail-path-card:hover .location-detail-path-card__link,
.location-detail-other-card:hover strong {
  color: var(--rw-red-dark);
}

.location-detail-text-link:hover svg,
.location-detail-path-card:hover .location-detail-path-card__link svg,
.location-detail-other-card:hover strong svg {
  transform: translateX(4px);
}

/* ==========================================================================
     228. Location Detail Hero
     ========================================================================== */

.location-detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 56%,
    var(--rw-off-white) 56%,
    var(--rw-off-white) 100%
  );
}

.location-detail-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.location-detail-hero::after {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.location-detail-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 0.78fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.location-detail-hero__content {
  min-width: 0;
  max-width: 760px;
}

.location-detail-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.location-detail-breadcrumbs a:hover {
  color: var(--rw-red);
}

.location-detail-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.location-detail-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.location-detail-hero__description {
  max-width: 670px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.location-detail-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.location-detail-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.location-detail-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.location-detail-hero__highlights svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.location-detail-hero__media {
  position: relative;
  width: min(100%, 550px);
  justify-self: end;
  padding: 0 0 var(--rw-hero-media-bottom-space) clamp(28px, 3vw, 48px);
}

.location-detail-hero__media::before {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.14);
  content: "";
  pointer-events: none;
}

.location-detail-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 32px 3px;
  box-shadow: var(--rw-shadow-large);
}

.location-detail-hero__note {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(310px, 72%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 4px solid var(--rw-yellow);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.location-detail-hero__note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-detail-hero__note strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.92rem;
  line-height: 1.4;
}

/* ==========================================================================
     229. Location Contact Information
     ========================================================================== */

.location-detail-info {
  position: relative;
  background: var(--rw-white);
}

.location-detail-info__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(300px, 0.72fr);
  align-items: start;
  gap: clamp(52px, 8vw, 116px);
}

.location-detail-info__content {
  max-width: 760px;
}

.location-detail-info__content h2 {
  max-width: 680px;
  margin-bottom: 22px;
}

.location-detail-info__content > .lead {
  margin-bottom: 30px;
}

.location-detail-info__address {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 21px 22px;
  margin-bottom: 16px;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
}

.location-detail-info__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--rw-white);
  color: var(--rw-red);
  border: 1px solid var(--rw-border);
  border-radius: 13px;
  box-shadow: var(--rw-shadow-small);
}

.location-detail-info__icon svg {
  width: 25px;
  height: 25px;
}

.location-detail-info__address address {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--rw-ink);
  font-size: 0.96rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1.55;
}

.location-detail-info__note {
  max-width: 670px;
  margin-bottom: 23px;
  color: var(--rw-muted);
  font-size: 0.78rem;
  line-height: 1.62;
}

.location-detail-info__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.location-detail-info__panel {
  position: sticky;
  top: calc(var(--rw-desktop-header-height) + 30px);
  padding: clamp(26px, 3vw, 35px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 24px 3px;
  box-shadow: var(--rw-shadow-medium);
}

.location-detail-info__panel-heading {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rw-border-dark);
}

.location-detail-info__panel-heading span {
  display: block;
  margin-bottom: 7px;
  color: var(--rw-yellow);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location-detail-info__panel-heading h3 {
  margin-bottom: 0;
  color: var(--rw-white);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.location-detail-info__phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px 0 19px;
  border-bottom: 1px solid var(--rw-border-dark);
}

.location-detail-info__phone span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.location-detail-info__phone strong {
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 1.12rem;
  line-height: 1.3;
}

.location-detail-info__phone:hover strong {
  color: var(--rw-yellow);
}

.location-detail-info__hours {
  display: grid;
  margin: 0 0 20px;
}

.location-detail-info__hours > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-block: 13px;
  border-bottom: 1px solid var(--rw-border-dark);
}

.location-detail-info__hours dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.4;
}

.location-detail-info__hours dd {
  margin: 0;
  color: var(--rw-white);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: right;
}

.location-detail-info__panel > .location-detail-info__note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.54);
}

/* ==========================================================================
     230. Location Services
     ========================================================================== */

.location-detail-services {
  position: relative;
}

.location-detail-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 34px);
}

.location-detail-service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 42px);
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 7px 24px rgba(23, 25, 28, 0.05);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.location-detail-service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.location-detail-service-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.location-detail-service-card__number {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 19px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.69rem;
  font-weight: 900;
}

.location-detail-service-card__label {
  margin-bottom: 8px;
  color: var(--rw-muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.location-detail-service-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.28rem, 1.9vw, 1.62rem);
  line-height: 1.2;
}

.location-detail-service-card > p:not(.location-detail-service-card__label) {
  margin-bottom: 22px;
  color: var(--rw-text);
  font-size: 0.84rem;
  line-height: 1.68;
}

.location-detail-service-card .location-detail-text-link {
  align-self: flex-start;
  margin-top: auto;
}

/* ==========================================================================
     231. Location Support
     ========================================================================== */

.location-detail-support {
  position: relative;
  background: var(--rw-white);
}

.location-detail-support__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(52px, 8vw, 116px);
}

.location-detail-support__media {
  position: relative;
  padding: 0 0 clamp(38px, 5vw, 64px) clamp(26px, 3vw, 44px);
}

.location-detail-support__media::before {
  position: absolute;
  top: clamp(26px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: 0;
  left: 0;
  border: 1px solid rgba(32, 35, 40, 0.15);
  content: "";
}

.location-detail-support__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-medium);
}

.location-detail-support__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(285px, 70%);
  flex-direction: column;
  gap: 4px;
  padding: 18px 21px;
  background: var(--rw-yellow);
  color: var(--rw-charcoal);
  border-radius: 2px 2px 16px 2px;
  box-shadow: var(--rw-shadow-medium);
}

.location-detail-support__badge span {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-detail-support__badge strong {
  font-family: var(--rw-font-heading);
  font-size: 0.98rem;
  line-height: 1.3;
}

.location-detail-support__content h2 {
  margin-bottom: 22px;
}

.location-detail-support__content > .lead {
  margin-bottom: 28px;
}

.location-detail-support__list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 31px;
  list-style: none;
}

.location-detail-support__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  color: var(--rw-ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.location-detail-support__list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

/* ==========================================================================
     232. Location Visit Preparation
     ========================================================================== */

.location-detail-preparation {
  position: relative;
  overflow: hidden;
}

.location-detail-preparation::after {
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.location-detail-preparation .site-container {
  position: relative;
  z-index: 1;
}

.location-detail-preparation__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rw-border-dark);
  border-bottom: 1px solid var(--rw-border-dark);
}

.location-detail-preparation-card {
  min-width: 0;
  padding: clamp(25px, 3vw, 36px);
  border-right: 1px solid var(--rw-border-dark);
}

.location-detail-preparation-card:last-child {
  border-right: 0;
}

.location-detail-preparation-card > span {
  display: inline-flex;
  margin-bottom: 19px;
  color: var(--rw-yellow);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.location-detail-preparation-card h3 {
  margin-bottom: 13px;
  color: var(--rw-white);
  font-size: clamp(1.04rem, 1.45vw, 1.28rem);
  line-height: 1.25;
}

.location-detail-preparation-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.65;
}

/* ==========================================================================
     233. Location Project Paths
     ========================================================================== */

.location-detail-paths {
  position: relative;
}

.location-detail-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
}

.location-detail-path-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(27px, 3.4vw, 40px);
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 21px rgba(23, 25, 28, 0.045);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.location-detail-path-card:hover {
  color: var(--rw-ink);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.location-detail-path-card__label {
  margin-bottom: 14px;
  color: var(--rw-red);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-detail-path-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.22rem, 1.8vw, 1.52rem);
  line-height: 1.22;
}

.location-detail-path-card > p {
  margin-bottom: 23px;
  color: var(--rw-text);
  font-size: 0.82rem;
  line-height: 1.67;
}

.location-detail-path-card__link {
  align-self: flex-start;
  margin-top: auto;
}

/* ==========================================================================
     234. Other Locations
     ========================================================================== */

.location-detail-other {
  position: relative;
  background: var(--rw-white);
}

.location-detail-other__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.location-detail-other__content {
  max-width: 660px;
}

.location-detail-other__content h2 {
  margin-bottom: 21px;
}

.location-detail-other__content > .lead {
  margin-bottom: 0;
}

.location-detail-other__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.location-detail-other-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 225px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  background: var(--rw-off-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  transition:
    background-color var(--rw-transition),
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.location-detail-other-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.location-detail-other-card:hover {
  background: var(--rw-white);
  color: var(--rw-ink);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.location-detail-other-card > span {
  margin-bottom: 13px;
  color: var(--rw-red);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-detail-other-card h3 {
  margin-bottom: 11px;
  font-size: clamp(1.3rem, 2vw, 1.68rem);
}

.location-detail-other-card > p {
  margin-bottom: 23px;
  color: var(--rw-text);
  font-size: 0.81rem;
  line-height: 1.6;
}

.location-detail-other-card strong {
  align-self: flex-start;
  margin-top: auto;
}

/* ==========================================================================
     235. Location Detail Final CTA
     ========================================================================== */

.location-detail-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.location-detail-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 78px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.location-detail-cta__panel::before {
  position: absolute;
  top: -160px;
  right: -95px;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.location-detail-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.location-detail-cta__content,
.location-detail-cta__actions {
  position: relative;
  z-index: 1;
}

.location-detail-cta__content {
  max-width: 760px;
}

.location-detail-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-detail-cta h2 {
  max-width: 710px;
  margin-bottom: 17px;
  color: var(--rw-white);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.location-detail-cta__content > p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.96rem;
  line-height: 1.72;
}

.location-detail-cta__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     236. Location Detail Responsive and Reduced Motion
     ========================================================================== */

@media (max-width: 1199px) {
  .location-detail-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.74fr);
  }

  .location-detail-info__grid,
  .location-detail-support__grid,
  .location-detail-other__grid {
    gap: 58px;
  }

  .location-detail-preparation-card {
    padding-inline: 23px;
  }
}

@media (max-width: 1023px) {
  .location-detail-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 58%,
      var(--rw-off-white) 58% 100%
    );
  }

  .location-detail-hero__grid,
  .location-detail-info__grid,
  .location-detail-support__grid,
  .location-detail-other__grid {
    grid-template-columns: 1fr;
  }

  .location-detail-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .location-detail-hero__content {
    max-width: 820px;
  }

  .location-detail-hero__media,
  .location-detail-support__media {
    width: min(100%, 780px);
    justify-self: center;
  }

  .location-detail-info__content,
  .location-detail-support__content,
  .location-detail-other__content {
    max-width: 780px;
  }

  .location-detail-info__panel {
    position: static;
    width: min(100%, 720px);
  }

  .location-detail-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-detail-section-heading > p {
    max-width: 680px;
    justify-self: start;
  }

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

  .location-detail-preparation-card:nth-child(2) {
    border-right: 0;
  }

  .location-detail-preparation-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rw-border-dark);
  }

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

  .location-detail-path-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .location-detail-other__cards {
    width: min(100%, 760px);
  }

  .location-detail-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-detail-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .location-detail-hero::before {
    width: 56%;
  }

  .location-detail-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .location-detail-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .location-detail-hero__actions .button {
    width: 100%;
  }

  .location-detail-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .location-detail-hero__media {
    padding: 0 0 42px 18px;
  }

  .location-detail-hero__note {
    width: min(290px, 82%);
    padding: 15px 17px;
  }

  .location-detail-info__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .location-detail-info__actions .button {
    width: 100%;
  }

  .location-detail-info__panel {
    padding: 25px 21px;
  }

  .location-detail-services__grid,
  .location-detail-paths__grid,
  .location-detail-other__cards {
    grid-template-columns: 1fr;
  }

  .location-detail-service-card,
  .location-detail-path-card {
    padding: 28px 23px;
  }

  .location-detail-support__media {
    padding: 0 0 40px 18px;
  }

  .location-detail-support__badge {
    width: min(265px, 78%);
    padding: 16px 18px;
  }

  .location-detail-preparation__grid {
    grid-template-columns: 1fr;
  }

  .location-detail-preparation-card,
  .location-detail-preparation-card:nth-child(2),
  .location-detail-preparation-card:last-child {
    border-right: 0;
  }

  .location-detail-preparation-card,
  .location-detail-preparation-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rw-border-dark);
  }

  .location-detail-preparation-card:last-child {
    border-bottom: 0;
  }

  .location-detail-path-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .location-detail-other-card {
    min-height: 205px;
  }

  .location-detail-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .location-detail-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .location-detail-cta__actions {
    flex-direction: column;
  }

  .location-detail-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .location-detail-hero__media,
  .location-detail-support__media {
    padding-left: 12px;
  }

  .location-detail-hero__note {
    right: -2px;
    width: min(255px, 88%);
  }

  .location-detail-info__address {
    grid-template-columns: 1fr;
  }

  .location-detail-info__hours > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .location-detail-info__hours dd {
    text-align: left;
  }

  .location-detail-other-card {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-detail-service-card:hover,
  .location-detail-path-card:hover,
  .location-detail-other-card:hover,
  .location-detail-text-link:hover svg,
  .location-detail-path-card:hover .location-detail-path-card__link svg,
  .location-detail-other-card:hover strong svg {
    transform: none;
  }
}

/* ==========================================================================
     237. Legal Pages Shared Components
     ========================================================================== */

.legal-page {
  width: 100%;
  overflow: clip;
  background: var(--rw-white);
}

.legal-page--terms,
.legal-page--privacy,
.legal-page--accessibility {
  --legal-page-accent: var(--rw-red);
}

.legal-page .section {
  position: relative;
}

.legal-page [id] {
  scroll-margin-top: calc(var(--rw-desktop-header-height) + 30px);
}

.legal-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  margin-bottom: clamp(38px, 5vw, 66px);
}

.legal-section-heading > div {
  min-width: 0;
}

.legal-section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 3.1vw, 2.85rem);
  line-height: 1.04;
}

.legal-section-heading > p {
  max-width: 520px;
  justify-self: end;
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.72;
}

.legal-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-red);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.4;
  text-decoration: none;
}

.legal-inline-link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.legal-inline-link:hover {
  color: var(--rw-red-dark);
}

.legal-inline-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
     238. Legal Hero
     ========================================================================== */

.legal-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--rw-white) 0%,
    var(--rw-white) 57%,
    var(--rw-off-white) 57%,
    var(--rw-off-white) 100%
  );
}

.legal-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 580px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.legal-hero::after {
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 570px;
  height: 570px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.legal-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(360px, 0.72fr);
  align-items: center;
  gap: var(--rw-hero-grid-gap);
  padding-block: var(--rw-hero-padding-block);
}

.legal-hero__content {
  max-width: 770px;
}

.legal-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: var(--rw-hero-breadcrumb-margin);
  color: var(--rw-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.legal-breadcrumbs a:hover {
  color: var(--rw-red);
}

.legal-breadcrumbs span[aria-current="page"] {
  color: var(--rw-ink);
}

.legal-hero__title {
  max-width: 16ch;
  margin-bottom: var(--rw-hero-title-margin);
  font-size: var(--rw-hero-title-size);
}

.legal-hero__description {
  max-width: 680px;
  margin-bottom: var(--rw-hero-description-margin);
  color: var(--rw-text);
  font-size: var(--rw-hero-description-size);
  line-height: var(--rw-hero-description-line-height);
}

.legal-hero__actions {
  margin-bottom: var(--rw-hero-actions-margin);
}

.legal-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-hero-highlights-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.legal-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rw-ink);
  font-size: 0.71rem;
  font-weight: 750;
  line-height: 1.4;
}

.legal-hero__highlights svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 3px;
  background: var(--rw-yellow-soft);
  color: var(--rw-red);
  border-radius: 50%;
}

.legal-hero__document {
  position: relative;
  width: min(100%, 480px);
  justify-self: end;
  overflow: hidden;
  background: var(--rw-white);
  border: 1px solid rgba(23, 25, 28, 0.1);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.legal-hero__document::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 74%,
    var(--rw-yellow) 74% 100%
  );
  content: "";
}

.legal-hero__document::after {
  position: absolute;
  right: -80px;
  bottom: -105px;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

.legal-hero__document-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 18px 22px;
  background: var(--rw-charcoal);
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--rw-border-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-hero__document-icon {
  display: grid;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--rw-yellow);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
}

.legal-hero__document-icon svg {
  width: 21px;
  height: 21px;
}

.legal-hero__document-body {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 3.5vw, 38px) clamp(23px, 3.2vw, 34px);
  border-bottom: 1px solid var(--rw-border);
}

.legal-hero__document-body p {
  margin-bottom: 9px;
  color: var(--rw-red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.legal-hero__document-body h2 {
  max-width: 12ch;
  margin-bottom: 13px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.05;
}

.legal-hero__document-body > span {
  color: var(--rw-muted);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.45;
}

.legal-hero__document-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-bottom: 1px solid var(--rw-border);
}

.legal-hero__document-facts > div {
  min-width: 0;
  padding: 17px 22px;
}

.legal-hero__document-facts > div + div {
  border-left: 1px solid var(--rw-border);
}

.legal-hero__document-facts dt {
  margin-bottom: 4px;
  color: var(--rw-muted);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.legal-hero__document-facts dd {
  margin: 0;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.35;
}

.legal-hero__document-note {
  position: relative;
  z-index: 1;
  padding: 20px 22px 22px;
  background: var(--rw-yellow-soft);
  border-left: 4px solid var(--rw-yellow);
}

.legal-hero__document-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--rw-ink);
  font-family: var(--rw-font-heading);
  font-size: 0.86rem;
  line-height: 1.35;
}

.legal-hero__document-note p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.73rem;
  line-height: 1.55;
}

/* ==========================================================================
     239. Legal Summary
     ========================================================================== */

.legal-summary {
  position: relative;
  border-top: 1px solid rgba(23, 25, 28, 0.045);
  border-bottom: 1px solid rgba(23, 25, 28, 0.055);
}

.legal-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.legal-summary-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 5px 18px rgba(23, 25, 28, 0.045);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.legal-summary-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.legal-summary-card:hover {
  border-color: rgba(204, 13, 16, 0.24);
  box-shadow: var(--rw-shadow-small);
  transform: translateY(-5px);
}

.legal-summary-card > span {
  display: inline-flex;
  margin-bottom: 19px;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.legal-summary-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.16rem, 1.55vw, 1.45rem);
  line-height: 1.18;
}

.legal-summary-card p {
  margin-bottom: 0;
  color: var(--rw-text);
  font-size: 0.82rem;
  line-height: 1.66;
}

/* ==========================================================================
     240. Legal Content Layout and Sidebar
     ========================================================================== */

.legal-content {
  background: var(--rw-white);
}

.legal-content__layout {
  display: grid;
  grid-template-columns:
    minmax(245px, 0.31fr)
    minmax(0, 0.69fr);
  align-items: start;
  gap: clamp(48px, 7vw, 104px);
}

.legal-content__sidebar {
  position: sticky;
  top: calc(var(--rw-desktop-header-height) + 28px);
  align-self: start;
  min-width: 0;
}

.legal-content__sidebar-panel {
  position: static;
  overflow: hidden;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
}

.legal-content__sidebar-label {
  padding: 19px 21px 16px;
  margin: 0;
  color: var(--rw-red);
  border-bottom: 1px solid var(--rw-border);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-content__sidebar nav {
  display: grid;
  max-height: min(50vh, 490px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 7px;
  scrollbar-width: thin;
  scrollbar-color: var(--rw-border) transparent;
}

.legal-content__sidebar nav a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  min-width: 0;
  padding: 9px 10px;
  color: var(--rw-text);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.38;
}

.legal-content__sidebar nav a > span {
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.61rem;
  font-weight: 850;
  line-height: 1.65;
}

.legal-content__sidebar nav a:hover,
.legal-content__sidebar nav a:focus-visible {
  background: var(--rw-white);
  color: var(--rw-red);
  border-color: rgba(204, 13, 16, 0.15);
  box-shadow: 0 4px 12px rgba(23, 25, 28, 0.04);
  transform: translateX(2px);
}

.legal-content__sidebar-help {
  padding: 19px 21px 21px;
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-top: 1px solid var(--rw-border-dark);
}

.legal-content__sidebar-help strong {
  display: block;
  margin-bottom: 7px;
  color: var(--rw-white);
  font-family: var(--rw-font-heading);
  font-size: 0.88rem;
  line-height: 1.35;
}

.legal-content__sidebar-help p {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.55;
}

.legal-content__sidebar-help a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--rw-yellow);
  font-size: 0.71rem;
  font-weight: 800;
  line-height: 1.45;
}

.legal-content__sidebar-help a:hover {
  color: var(--rw-white);
}

.legal-content__sidebar-help svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  transition: transform var(--rw-transition-fast);
}

.legal-content__sidebar-help a:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
     241. Legal Article and Section Typography
     ========================================================================== */

.legal-article {
  min-width: 0;
  max-width: 820px;
}

.legal-section {
  position: relative;
  padding-block: clamp(34px, 4vw, 52px);
  border-bottom: 1px solid var(--rw-border);
}

.legal-section:first-of-type {
  padding-top: 0;
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section:target::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: -24px;
  width: 4px;
  background: var(--rw-yellow);
  border-radius: var(--rw-radius-pill);
  content: "";
}

.legal-section__header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin-bottom: 21px;
}

.legal-section__header > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--rw-red-soft);
  color: var(--rw-red);
  border: 1px solid rgba(204, 13, 16, 0.12);
  border-radius: 11px;
  font-family: var(--rw-font-mono);
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1;
}

.legal-section__header h2 {
  max-width: 720px;
  margin: 2px 0 0;
  font-size: clamp(1.42rem, 2.05vw, 1.95rem);
  line-height: 1.12;
}

.legal-section > p,
.legal-section > ul,
.legal-section > ol {
  margin-left: 58px;
}

.legal-section > p {
  margin-bottom: 1.1em;
  color: var(--rw-text);
  font-size: clamp(0.9rem, 0.95vw, 0.96rem);
  line-height: 1.78;
}

.legal-section > p:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  color: var(--rw-ink);
}

.legal-section a:not(.button):not(.legal-inline-link) {
  color: var(--rw-red);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-section a:not(.button):not(.legal-inline-link):hover {
  color: var(--rw-red-dark);
}

.legal-section--contact {
  padding-top: clamp(42px, 5vw, 62px);
}

/* ==========================================================================
     242. Legal Notices, Lists and Inline Information
     ========================================================================== */

.legal-notice {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  margin-bottom: clamp(36px, 5vw, 58px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-left: 5px solid var(--rw-yellow);
  border-radius: 2px var(--rw-radius-medium) var(--rw-radius-medium) 2px;
  box-shadow: var(--rw-shadow-medium);
}

.legal-notice::before {
  position: absolute;
  top: -125px;
  right: -90px;
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}

.legal-notice > * {
  position: relative;
  z-index: 1;
}

.legal-notice__label {
  margin-bottom: 11px;
  color: var(--rw-yellow);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-notice h2 {
  max-width: 720px;
  margin-bottom: 15px;
  color: var(--rw-white);
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.08;
}

.legal-notice > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.72;
}

.legal-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin-bottom: 1.45em;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding: 13px 15px 13px 43px;
  background: var(--rw-off-white);
  color: var(--rw-text);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-small);
  font-size: 0.87rem;
  line-height: 1.68;
}

.legal-list li::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 15px;
  height: 15px;
  background: linear-gradient(
    135deg,
    var(--rw-red) 0 50%,
    var(--rw-yellow) 50% 100%
  );
  border-radius: 4px;
  content: "";
}

.legal-list li strong {
  color: var(--rw-ink);
}

/* ==========================================================================
     243. Legal Contact Information
     ========================================================================== */

.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 28px;
  margin-left: 58px;
}

.legal-contact-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 21px;
  overflow: hidden;
  background: var(--rw-off-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  transition:
    border-color var(--rw-transition-fast),
    box-shadow var(--rw-transition),
    transform var(--rw-transition-fast);
}

.legal-contact-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--rw-red);
  content: "";
}

.legal-contact-card--email::before {
  background: var(--rw-yellow);
}

.legal-contact-card:hover {
  border-color: rgba(204, 13, 16, 0.24);
  box-shadow: var(--rw-shadow-small);
  transform: translateY(-3px);
}

.legal-contact-card > p {
  margin-bottom: 8px;
  color: var(--rw-red);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-contact-card h3 {
  margin-bottom: 16px;
  color: var(--rw-ink);
  font-size: 0.9rem;
  letter-spacing: -0.015em;
  line-height: 1.42;
}

.legal-contact-card > a {
  align-self: flex-start;
  margin-top: auto;
  overflow-wrap: anywhere;
  color: var(--rw-red);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.45;
  text-decoration: none !important;
}

.legal-contact-card > a:hover {
  color: var(--rw-red-dark);
}

/* ==========================================================================
     244. Legal Related Pages
     ========================================================================== */

.legal-related {
  background: var(--rw-off-white);
}

.legal-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.legal-related-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 285px;
  flex-direction: column;
  padding: clamp(25px, 3vw, 35px);
  overflow: hidden;
  background: var(--rw-white);
  color: var(--rw-ink);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: 0 6px 20px rgba(23, 25, 28, 0.045);
  transition:
    border-color var(--rw-transition),
    box-shadow var(--rw-transition),
    transform var(--rw-transition);
}

.legal-related-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 76%,
    var(--rw-yellow) 76% 100%
  );
  content: "";
}

.legal-related-card:hover {
  color: var(--rw-ink);
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-6px);
}

.legal-related-card > span {
  display: inline-flex;
  margin-bottom: auto;
  color: var(--rw-red);
  font-family: var(--rw-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.legal-related-card > p {
  margin: 27px 0 8px;
  color: var(--rw-red);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-related-card h3 {
  margin-bottom: 11px;
  font-size: clamp(1.22rem, 1.75vw, 1.55rem);
  line-height: 1.16;
}

.legal-related-card small {
  display: block;
  margin-bottom: 21px;
  color: var(--rw-text);
  font-size: 0.78rem;
  line-height: 1.6;
}

.legal-related-card > strong {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--rw-red);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.4;
}

.legal-related-card > strong svg {
  width: 18px;
  height: 18px;
  transition: transform var(--rw-transition-fast);
}

.legal-related-card:hover > strong svg {
  transform: translateX(4px);
}

/* ==========================================================================
     245. Legal Final CTA
     ========================================================================== */

.legal-cta {
  padding: 0 0 var(--rw-section-space);
  background: var(--rw-white);
}

.legal-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.42fr)
    auto;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  padding: clamp(44px, 6vw, 76px);
  background: var(--rw-charcoal);
  color: var(--rw-white);
  border-radius: 3px 3px 30px 3px;
  box-shadow: var(--rw-shadow-large);
}

.legal-cta__panel::before {
  position: absolute;
  top: -155px;
  right: -95px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(241, 210, 0, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.legal-cta__panel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
  background: var(--rw-yellow);
  content: "";
}

.legal-cta__content,
.legal-cta__actions {
  position: relative;
  z-index: 1;
}

.legal-cta__content {
  max-width: 780px;
}

.legal-cta__eyebrow {
  margin-bottom: 13px;
  color: var(--rw-yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-cta h2 {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--rw-white);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.03;
}

.legal-cta__content > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.94rem;
  line-height: 1.7;
}

.legal-cta__actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 11px;
}

/* ==========================================================================
     246. Legal Responsive and Reduced Motion
     ========================================================================== */

@media (min-width: 1024px) and (max-height: 980px) {
  .legal-hero__document-body {
    padding-block: 24px;
  }

  .legal-hero__document-note {
    padding-block: 17px 18px;
  }

  .legal-section__header h2 {
    font-size: clamp(1.35rem, 1.7vw, 1.72rem);
  }

  .legal-notice h2 {
    font-size: clamp(1.48rem, 2.1vw, 2.05rem);
  }
}

@media (max-width: 1199px) {
  .legal-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(330px, 0.7fr);
  }

  .legal-content__layout {
    grid-template-columns:
      minmax(225px, 0.3fr)
      minmax(0, 0.7fr);
    gap: 52px;
  }

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

  .legal-contact-card--email {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1023px) {
  .legal-page [id] {
    scroll-margin-top: calc(var(--rw-mobile-header-height) + 24px);
  }

  .legal-hero {
    background: linear-gradient(
      to bottom,
      var(--rw-white) 0 56%,
      var(--rw-off-white) 56% 100%
    );
  }

  .legal-hero__grid,
  .legal-content__layout {
    grid-template-columns: 1fr;
  }

  .legal-hero__content {
    max-width: 820px;
  }

  .legal-hero__document {
    width: min(100%, 680px);
    justify-self: center;
  }

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

  .legal-summary-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .legal-content__layout {
    gap: 42px;
  }

  .legal-content__sidebar,
  .legal-content__sidebar-panel {
    position: static;
  }

  .legal-content__sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }

  .legal-content__sidebar-help {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 24px;
  }

  .legal-content__sidebar-help strong,
  .legal-content__sidebar-help p {
    grid-column: 1;
  }

  .legal-content__sidebar-help p {
    margin-bottom: 0;
  }

  .legal-content__sidebar-help a {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .legal-article {
    max-width: none;
  }

  .legal-section-heading {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .legal-section-heading > p {
    max-width: 680px;
    justify-self: start;
  }

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

  .legal-related-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .legal-cta__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-cta__actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .legal-hero::before {
    width: 56%;
  }

  .legal-hero__grid {
    gap: var(--rw-hero-grid-gap);
    padding-block: var(--rw-hero-padding-block);
  }

  .legal-hero__title {
    max-width: 16ch;
    font-size: var(--rw-hero-title-size);
  }

  .legal-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-hero__actions .button {
    width: 100%;
  }

  .legal-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-hero__document {
    border-radius: 3px 3px 24px 3px;
  }

  .legal-hero__document-body {
    padding: 25px 21px;
  }

  .legal-hero__document-facts > div {
    padding: 15px 18px;
  }

  .legal-hero__document-note {
    padding: 18px 19px 20px;
  }

  .legal-summary__grid,
  .legal-related__grid,
  .legal-contact-grid {
    grid-template-columns: 1fr;
  }

  .legal-summary-card:last-child:nth-child(odd),
  .legal-related-card:last-child:nth-child(odd),
  .legal-contact-card--email {
    grid-column: auto;
  }

  .legal-content__sidebar nav {
    grid-template-columns: 1fr;
  }

  .legal-content__sidebar-help {
    display: block;
  }

  .legal-content__sidebar-help p {
    margin-bottom: 13px;
  }

  .legal-section:target::before {
    left: -11px;
  }

  .legal-section__header {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .legal-section__header > span {
    width: 34px;
    height: 34px;
  }

  .legal-section > p,
  .legal-section > ul,
  .legal-section > ol,
  .legal-contact-grid {
    margin-left: 0;
  }

  .legal-section__header h2 {
    margin-top: 1px;
    font-size: clamp(1.3rem, 5.6vw, 1.7rem);
  }

  .legal-notice {
    padding: 28px 22px;
    border-left-width: 4px;
  }

  .legal-notice h2 {
    font-size: clamp(1.42rem, 6vw, 1.9rem);
  }

  .legal-list li {
    padding: 12px 13px 12px 39px;
  }

  .legal-list li::before {
    top: 17px;
    left: 14px;
  }

  .legal-related-card {
    min-height: 250px;
  }

  .legal-cta {
    padding-bottom: var(--rw-section-space-small);
  }

  .legal-cta__panel {
    padding: 40px 24px 46px;
    border-radius: 3px 3px 24px 3px;
  }

  .legal-cta__actions {
    flex-direction: column;
  }

  .legal-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .legal-hero__document-facts {
    grid-template-columns: 1fr;
  }

  .legal-hero__document-facts > div + div {
    border-top: 1px solid var(--rw-border);
    border-left: 0;
  }

  .legal-breadcrumbs span[aria-current="page"] {
    max-width: 24ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .legal-content__sidebar nav a {
    grid-template-columns: 25px minmax(0, 1fr);
  }

  .legal-contact-card {
    padding: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .legal-summary-card:hover,
  .legal-contact-card:hover,
  .legal-related-card:hover,
  .legal-inline-link:hover svg,
  .legal-content__sidebar nav a:hover,
  .legal-content__sidebar-help a:hover svg,
  .legal-related-card:hover > strong svg {
    transform: none;
  }
}

/* ==========================================================================
     247. Controlled 404 Shared Components
     ========================================================================== */

.error-404-page {
  width: 100%;
  overflow: clip;
  background: var(--rw-white);
}

.error-404-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--rw-muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.error-404-breadcrumbs a:hover {
  color: var(--rw-red);
}

.error-404-section-heading,
.error-404-services__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 38px;
}

.error-404-section-heading > div,
.error-404-services__header > div {
  max-width: 720px;
}

.error-404-section-heading h2,
.error-404-services__header h2 {
  margin-bottom: 0;
}

.error-404-section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--rw-muted);
  line-height: 1.72;
}

.error-404-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--rw-red);
  font-size: 0.82rem;
  font-weight: 850;
}

.error-404-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform var(--rw-transition-fast);
}

.error-404-link:hover {
  color: var(--rw-red-dark);
}

.error-404-link:hover svg {
  transform: translateX(4px);
}

.error-404-link--light {
  color: var(--rw-yellow);
}

.error-404-link--light:hover {
  color: var(--rw-white);
}

/* ==========================================================================
     248. Controlled 404 Hero
     ========================================================================== */

.error-404-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 112px);
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(241, 210, 0, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 100%,
      rgba(204, 13, 16, 0.08),
      transparent 34%
    ),
    linear-gradient(132deg, var(--rw-white), var(--rw-off-white));
  border-bottom: 1px solid var(--rw-border);
}

.error-404-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: min(42vw, 620px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 72%,
    var(--rw-yellow) 72% 100%
  );
  content: "";
}

.error-404-hero::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  z-index: -2;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(204, 13, 16, 0.045);
  border-radius: 50%;
  content: "";
}

.error-404-hero__number {
  position: absolute;
  top: 50%;
  right: clamp(-22px, 3vw, 48px);
  z-index: -1;
  color: rgba(32, 33, 36, 0.038);
  font-size: clamp(12rem, 28vw, 29rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.68;
  pointer-events: none;
  transform: translateY(-43%);
  user-select: none;
}

.error-404-hero__inner {
  position: relative;
  z-index: 1;
}

.error-404-hero__content {
  max-width: 820px;
}

.error-404-hero h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  line-height: 0.98;
}

.error-404-hero__description {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--rw-text);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.76;
}

.error-404-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

/* ==========================================================================
     249. Controlled 404 Search Panel
     ========================================================================== */

.error-404-search {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  margin-top: clamp(46px, 7vw, 84px);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(32, 33, 36, 0.12);
  border-radius: var(--rw-radius-large);
  box-shadow: var(--rw-shadow-medium);
  backdrop-filter: blur(10px);
}

.error-404-search__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.error-404-search__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--rw-white);
  background: var(--rw-red);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(204, 13, 16, 0.22);
}

.error-404-search__icon svg {
  width: 23px;
  height: 23px;
}

.error-404-search__heading h2 {
  margin-bottom: 4px;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
}

.error-404-search__heading p {
  margin: 0;
  color: var(--rw-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.error-404-search__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.error-404-search input[type="search"] {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  margin: 0;
  padding: 13px 16px;
  color: var(--rw-dark);
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: 7px;
  outline: none;
  box-shadow: none;
  font: inherit;
  font-size: 0.92rem;
  transition:
    border-color var(--rw-transition-fast),
    box-shadow var(--rw-transition-fast);
}

.error-404-search input[type="search"]:focus {
  border-color: var(--rw-red);
  box-shadow: 0 0 0 3px rgba(204, 13, 16, 0.12);
}

.error-404-search .button {
  min-height: 52px;
}

/* ==========================================================================
     250. Controlled 404 Helpful Paths
     ========================================================================== */

.error-404-paths {
  background: var(--rw-white);
}

.error-404-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.error-404-path-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  padding: 28px;
  background: var(--rw-white);
  border: 1px solid var(--rw-border);
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-small);
  transition:
    transform var(--rw-transition),
    border-color var(--rw-transition-fast),
    box-shadow var(--rw-transition);
}

.error-404-path-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rw-red) 0 78%,
    var(--rw-yellow) 78% 100%
  );
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--rw-transition);
}

.error-404-path-card:hover {
  border-color: rgba(204, 13, 16, 0.28);
  box-shadow: var(--rw-shadow-medium);
  transform: translateY(-5px);
}

.error-404-path-card:hover::before {
  transform: scaleX(1);
}

.error-404-path-card__number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--rw-red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.error-404-path-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.error-404-path-card p {
  margin-bottom: 24px;
  color: var(--rw-muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.error-404-path-card .error-404-link {
  margin-top: auto;
}

/* ==========================================================================
     251. Controlled 404 Product Paths
     ========================================================================== */

.error-404-services {
  background: var(--rw-off-white);
  border-block: 1px solid var(--rw-border);
}

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

.error-404-service-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(28px, 4vw, 40px);
  color: var(--rw-white);
  background: linear-gradient(
    140deg,
    rgba(204, 13, 16, 0.94),
    rgba(137, 5, 8, 0.98)
  );
  border-radius: var(--rw-radius-medium);
  box-shadow: var(--rw-shadow-medium);
  transition:
    transform var(--rw-transition),
    box-shadow var(--rw-transition);
}

.error-404-service-card:nth-child(2) {
  background: linear-gradient(140deg, #252629, #151618);
}

.error-404-service-card:nth-child(3) {
  color: var(--rw-dark);
  background: linear-gradient(140deg, var(--rw-yellow), #e5be00);
}

.error-404-service-card::before {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 32px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.07;
}

.error-404-service-card:hover {
  color: var(--rw-white);
  box-shadow: var(--rw-shadow-large);
  transform: translateY(-5px);
}

.error-404-service-card:nth-child(3):hover {
  color: var(--rw-dark);
}

.error-404-service-card__eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.82;
}

.error-404-service-card h3 {
  position: relative;
  max-width: 16ch;
  margin-bottom: 15px;
  color: inherit;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.error-404-service-card p {
  position: relative;
  max-width: 44ch;
  margin: 0;
  color: inherit;
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.86;
}

.error-404-service-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.7;
  transition:
    opacity var(--rw-transition-fast),
    transform var(--rw-transition-fast);
}

.error-404-service-card__arrow svg {
  width: 19px;
  height: 19px;
}

.error-404-service-card:hover .error-404-service-card__arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ==========================================================================
     252. Controlled 404 Location Support
     ========================================================================== */

.error-404-support {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 9vw, 124px);
  color: var(--rw-white);
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(241, 210, 0, 0.18),
      transparent 25%
    ),
    linear-gradient(132deg, #1c1d20, #090a0b);
}

.error-404-support::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(40vw, 560px);
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--rw-yellow) 0 28%,
    var(--rw-red) 28% 100%
  );
  content: "";
}

.error-404-support__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.error-404-support__intro h2 {
  max-width: 12ch;
  margin-bottom: 20px;
  color: var(--rw-white);
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.error-404-support__intro > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.76;
}

.error-404-support__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.error-404-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.error-404-location-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--rw-radius-medium);
  backdrop-filter: blur(8px);
}

.error-404-location-card__label {
  margin-bottom: 10px;
  color: var(--rw-yellow);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.error-404-location-card h3 {
  margin-bottom: 13px;
  color: var(--rw-white);
  font-size: clamp(1.3rem, 2vw, 1.72rem);
}

.error-404-location-card address {
  min-height: 3.4em;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.65;
}

.error-404-location-card__phone {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--rw-white);
  font-size: 0.98rem;
  font-weight: 850;
}

.error-404-location-card__phone:hover {
  color: var(--rw-yellow);
}

/* ==========================================================================
     253. Controlled 404 Responsive
     ========================================================================== */

@media (max-width: 1199px) {
  .error-404-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .error-404-support__inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
  }
}

@media (max-width: 1023px) {
  .error-404-search,
  .error-404-support__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .error-404-service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .error-404-service-card h3 {
    max-width: 24ch;
  }

  .error-404-support__intro {
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .error-404-hero {
    padding-block: 52px 68px;
  }

  .error-404-hero__number {
    top: 24%;
    right: -20px;
    font-size: clamp(9rem, 45vw, 15rem);
  }

  .error-404-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.4rem);
  }

  .error-404-hero__actions,
  .error-404-support__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .error-404-hero__actions .button,
  .error-404-support__actions .button {
    width: 100%;
  }

  .error-404-search {
    margin-top: 40px;
    padding: 20px;
  }

  .error-404-search__controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .error-404-search__controls .button {
    width: 100%;
  }

  .error-404-section-heading,
  .error-404-services__header {
    display: block;
  }

  .error-404-section-heading > p,
  .error-404-services__header > .error-404-link {
    margin-top: 18px;
  }

  .error-404-path-grid,
  .error-404-location-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .error-404-path-card {
    padding: 24px;
  }

  .error-404-service-card {
    padding: 28px 24px 78px;
  }

  .error-404-location-card address {
    min-height: 0;
  }
}

@media (max-width: 479px) {
  .error-404-search__heading {
    align-items: flex-start;
  }

  .error-404-search__icon {
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
     254. Controlled 404 Reduced Motion and Print
     ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .error-404-link svg,
  .error-404-path-card,
  .error-404-path-card::before,
  .error-404-service-card,
  .error-404-service-card__arrow,
  .error-404-search input[type="search"] {
    transition: none;
  }

  .error-404-link:hover svg,
  .error-404-path-card:hover,
  .error-404-service-card:hover,
  .error-404-service-card:hover .error-404-service-card__arrow {
    transform: none;
  }
}

@media print {
  .error-404-hero,
  .error-404-paths,
  .error-404-services,
  .error-404-support {
    color: #000;
    background: #fff;
    border-color: #bbb;
  }

  .error-404-hero__number,
  .error-404-search,
  .error-404-hero__actions,
  .error-404-support__actions,
  .error-404-service-card__arrow {
    display: none;
  }

  .error-404-path-grid,
  .error-404-service-grid,
  .error-404-location-grid,
  .error-404-support__inner {
    display: block;
  }

  .error-404-path-card,
  .error-404-service-card,
  .error-404-location-card {
    margin-bottom: 18px;
    color: #000;
    background: #fff;
    border: 1px solid #bbb;
    box-shadow: none;
  }

  .error-404-service-card h3,
  .error-404-service-card p,
  .error-404-location-card h3,
  .error-404-location-card address,
  .error-404-location-card__phone {
    color: #000;
  }
}

/* ==========================================================================
     255. Authentication Shared Shell
     ========================================================================== */

.rw-auth-page {
  min-height: 100%;
  margin: 0;
  background: #f2f2ef;
}

.rw-auth-page.admin-bar {
  min-height: calc(100% - 32px);
}

.rw-auth-page .site-header,
.rw-auth-page .site-footer,
.rw-auth-page .mobile-app-dock,
.rw-auth-page .footer-conversion-cta {
  display: none !important;
}

.rw-auth {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 20px;
  background:
    radial-gradient(circle at 8% 12%, rgba(204, 13, 16, 0.08), transparent 26%),
    radial-gradient(
      circle at 92% 88%,
      rgba(241, 210, 0, 0.13),
      transparent 24%
    ),
    #f2f2ef;
}

.rw-auth__shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(430px, 1.12fr);
  width: min(1180px, 100%);
  min-height: calc(100vh - 40px);
  min-height: calc(100dvh - 40px);
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(32, 33, 36, 0.1);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(32, 33, 36, 0.15);
}

/* ==========================================================================
     256. Authentication Brand Panel
     ========================================================================== */

.rw-auth__brand {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(204, 13, 16, 0.95), rgba(139, 5, 8, 0.97)),
    #cc0d10;
  color: #ffffff;
}

.rw-auth__brand::before,
.rw-auth__brand::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.rw-auth__brand::before {
  top: -130px;
  right: -110px;
  width: 330px;
  height: 330px;
}

.rw-auth__brand::after {
  right: -70px;
  bottom: -160px;
  width: 410px;
  height: 410px;
  border-color: rgba(241, 210, 0, 0.22);
}

.rw-auth__brand-top,
.rw-auth__brand-content,
.rw-auth__brand-foot {
  position: relative;
  z-index: 1;
}

.rw-auth__brand .site-branding {
  display: inline-flex;
  width: fit-content;
  max-width: 210px;
  text-decoration: none;
}

.rw-auth__brand .site-branding__logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 62px;
}

.rw-auth__text-logo {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.rw-auth__brand-content {
  max-width: 490px;
  margin-block: clamp(34px, 8vh, 82px);
}

.rw-auth__eyebrow {
  margin: 0 0 12px;
  color: #cc0d10;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.rw-auth__brand .rw-auth__eyebrow {
  color: #f1d200;
}

.rw-auth__brand h1 {
  max-width: 560px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.45vw, 3.55rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.rw-auth__brand-content > p:not(.rw-auth__eyebrow) {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  line-height: 1.65;
}

.rw-auth__trust-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.rw-auth__trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  line-height: 1.35;
}

.rw-auth__trust-list span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #f1d200;
  font-size: 0.62rem;
  font-weight: 900;
}

.rw-auth__trust-list strong {
  font-weight: 750;
}

.rw-auth__brand-foot {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ==========================================================================
     257. Authentication Form Panel
     ========================================================================== */

.rw-auth__panel {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: clamp(30px, 5vw, 72px);
  background: #ffffff;
}

.rw-auth__panel-inner {
  width: min(100%, 470px);
}

.rw-auth__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(28px, 5vh, 52px);
  color: #66686b;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.rw-auth__back-link:hover {
  color: #cc0d10;
}

.rw-auth__heading {
  margin-bottom: 24px;
}

.rw-auth__heading h2 {
  margin: 0;
  color: #202124;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.rw-auth__heading > p:not(.rw-auth__eyebrow) {
  margin: 12px 0 0;
  color: #686a6d;
  font-size: 0.86rem;
  line-height: 1.6;
}

/* ==========================================================================
     258. Authentication Form Controls
     ========================================================================== */

.rw-auth-form {
  display: grid;
  gap: 18px;
}

.rw-auth-form__field {
  min-width: 0;
}

.rw-auth-form__field > label,
.rw-auth-form__label-row label {
  display: block;
  margin: 0 0 8px;
  color: #202124;
  font-size: 0.73rem;
  font-weight: 850;
  line-height: 1.35;
}

.rw-auth-form__label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.rw-auth-form__label-row a {
  color: #cc0d10;
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.rw-auth-form__label-row a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rw-auth-form input[type="text"],
.rw-auth-form input[type="email"],
.rw-auth-form input[type="password"] {
  display: block;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 12px 14px;
  color: #202124;
  background: #ffffff;
  border: 1px solid #d7d8da;
  border-radius: 7px;
  outline: none;
  box-shadow: none;
  font: inherit;
  font-size: 0.87rem;
  line-height: 1.45;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.rw-auth-form input:hover {
  border-color: #b7b9bc;
}

.rw-auth-form input:focus {
  border-color: #cc0d10;
  box-shadow: 0 0 0 3px rgba(204, 13, 16, 0.11);
}

.rw-auth-form__remember {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  width: fit-content;
  color: #5f6164;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
}

.rw-auth-form__remember input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #cc0d10;
}

.rw-auth-form__hint {
  margin: -5px 0 0;
  color: #737578;
  font-size: 0.7rem;
  line-height: 1.55;
}

.rw-auth-form__submit {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  margin: 2px 0 0;
  padding: 13px 22px;
  color: #ffffff;
  background: #cc0d10;
  border: 1px solid #cc0d10;
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(204, 13, 16, 0.2);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.3;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.rw-auth-form__submit:hover {
  background: #a90a0d;
  box-shadow: 0 15px 30px rgba(204, 13, 16, 0.27);
  transform: translateY(-1px);
}

.rw-auth-form__submit:focus-visible {
  outline: 3px solid rgba(241, 210, 0, 0.7);
  outline-offset: 3px;
}

/* ==========================================================================
     259. Authentication Messages and Notes
     ========================================================================== */

.rw-auth__message {
  margin: 0 0 20px;
  padding: 13px 15px;
  border: 1px solid;
  border-left-width: 4px;
  border-radius: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.55;
}

.rw-auth__message--success {
  color: #255f32;
  background: #f1f8f2;
  border-color: #378a4a;
}

.rw-auth__message--error {
  color: #8d0b0e;
  background: #fff1f1;
  border-color: #cc0d10;
}

.rw-auth__support-note {
  margin: 22px 0 0;
  color: #85878a;
  font-size: 0.67rem;
  line-height: 1.55;
  text-align: center;
}

/* ==========================================================================
     260. Login and Reset Page Variants
     ========================================================================== */

.rw-auth-page--reset .rw-auth__brand {
  background:
    linear-gradient(145deg, rgba(34, 35, 38, 0.96), rgba(12, 13, 15, 0.98)),
    #202124;
}

.rw-auth-page--reset .rw-auth__brand::after {
  border-color: rgba(204, 13, 16, 0.36);
}

.rw-auth-page--reset .rw-auth__brand .rw-auth__eyebrow {
  color: #f1d200;
}

/* ==========================================================================
   261. Authentication Desktop Viewport Fit
   ========================================================================== */

/*
 * Desktop authentication behaves like a compact static hero:
 * centered, limited in height and fully visible on standard laptops.
 */

@media (min-width: 1024px) {
  .rw-auth {
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    place-items: center;
    padding: 24px;
  }

  .rw-auth__shell {
    grid-template-columns:
      minmax(390px, 0.92fr)
      minmax(470px, 1.08fr);

    width: min(1120px, 100%);

    /*
     * 720px on large desktop screens.
     * Automatically shrinks when the viewport is shorter.
     */
    height: min(720px, calc(100dvh - 48px));
    min-height: 0;
  }

  .rw-auth__brand,
  .rw-auth__panel {
    min-height: 0;
  }

  .rw-auth__brand {
    padding: clamp(30px, 3vw, 46px);
  }

  .rw-auth__brand-content {
    max-width: 470px;
    margin-block: clamp(26px, 4vh, 48px);
  }

  .rw-auth__brand h1 {
    max-width: 13ch;
    font-size: clamp(2.1rem, 2.65vw, 3rem);
    line-height: 1.01;
  }

  .rw-auth__brand-content > p:not(.rw-auth__eyebrow) {
    margin-top: 16px;
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .rw-auth__trust-list {
    gap: 8px;
    margin-top: 20px;
  }

  .rw-auth__trust-list li {
    gap: 10px;
    font-size: 0.74rem;
  }

  .rw-auth__trust-list span {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .rw-auth__brand-foot {
    font-size: 0.62rem;
  }

  .rw-auth__panel {
    align-content: center;
    padding: clamp(32px, 4vw, 56px);
    overflow-y: auto;
  }

  .rw-auth__panel-inner {
    width: min(100%, 460px);
  }

  .rw-auth__back-link {
    margin-bottom: clamp(22px, 3vh, 34px);
  }

  .rw-auth__heading {
    margin-bottom: 20px;
  }

  .rw-auth__heading h2 {
    font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  }

  .rw-auth__heading > p:not(.rw-auth__eyebrow) {
    margin-top: 9px;
    font-size: 0.81rem;
    line-height: 1.55;
  }

  .rw-auth-form {
    gap: 15px;
  }

  .rw-auth-form input[type="text"],
  .rw-auth-form input[type="email"],
  .rw-auth-form input[type="password"] {
    min-height: 48px;
  }

  .rw-auth-form__submit {
    min-height: 48px;
  }

  .rw-auth__support-note {
    margin-top: 18px;
  }
}

/*
 * Extra compression for common laptop resolutions:
 * 1366 × 768, 1280 × 720 and similar.
 */

@media (min-width: 1024px) and (max-height: 760px) {
  .rw-auth {
    padding: 16px;
  }

  .rw-auth__shell {
    height: calc(100dvh - 32px);
  }

  .rw-auth__brand,
  .rw-auth__panel {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .rw-auth__brand-content {
    margin-block: 18px;
  }

  .rw-auth__brand h1 {
    max-width: 14ch;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  }

  .rw-auth__brand-content > p:not(.rw-auth__eyebrow) {
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .rw-auth__trust-list {
    gap: 6px;
    margin-top: 15px;
  }

  .rw-auth__trust-list li {
    font-size: 0.69rem;
  }

  .rw-auth__trust-list span {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 0.56rem;
  }

  .rw-auth__brand-foot {
    font-size: 0.57rem;
  }

  .rw-auth__back-link {
    margin-bottom: 18px;
  }

  .rw-auth__heading {
    margin-bottom: 15px;
  }

  .rw-auth__heading h2 {
    font-size: clamp(1.55rem, 2vw, 1.95rem);
  }

  .rw-auth__heading > p:not(.rw-auth__eyebrow) {
    margin-top: 7px;
    font-size: 0.76rem;
  }

  .rw-auth-form {
    gap: 11px;
  }

  .rw-auth-form__field > label,
  .rw-auth-form__label-row label {
    margin-bottom: 6px;
  }

  .rw-auth-form input[type="text"],
  .rw-auth-form input[type="email"],
  .rw-auth-form input[type="password"] {
    min-height: 44px;
    padding-block: 9px;
  }

  .rw-auth-form__submit {
    min-height: 45px;
    padding-block: 10px;
  }

  .rw-auth__support-note {
    margin-top: 13px;
  }
}

/* ==========================================================================
     262. Authentication Responsive Layout
     ========================================================================== */

@media (max-width: 900px) {
  .rw-auth {
    padding: 14px;
  }

  .rw-auth__shell {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 28px);
    min-height: calc(100dvh - 28px);
  }

  .rw-auth__brand {
    min-height: auto;
    padding: 28px;
  }

  .rw-auth__brand-content {
    margin: 34px 0 24px;
  }

  .rw-auth__brand h1 {
    max-width: 650px;
    font-size: clamp(1.8rem, 6vw, 2.75rem);
  }

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

  .rw-auth__brand-foot {
    display: none;
  }

  .rw-auth__panel {
    padding: 38px 28px 42px;
  }

  .rw-auth__back-link {
    margin-bottom: 30px;
  }
}

@media (max-width: 620px) {
  .rw-auth {
    padding: 0;
    background: #ffffff;
  }

  .rw-auth__shell {
    min-height: 100vh;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .rw-auth__brand {
    padding: 24px 20px 28px;
  }

  .rw-auth__brand-content {
    margin: 28px 0 0;
  }

  .rw-auth__brand-content > p:not(.rw-auth__eyebrow) {
    margin-top: 14px;
  }

  .rw-auth__trust-list {
    display: none;
  }

  .rw-auth__panel {
    align-items: start;
    padding: 30px 20px 38px;
  }

  .rw-auth__back-link {
    margin-bottom: 24px;
  }

  .rw-auth__heading h2 {
    font-size: 1.8rem;
  }

  .rw-auth-form__submit {
    width: 100%;
  }
}

/* ==========================================================================
     263. Authentication Reduced Motion and Print
     ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .rw-auth a,
  .rw-auth button,
  .rw-auth input {
    scroll-behavior: auto;
    transition: none !important;
  }

  .rw-auth-form__submit:hover {
    transform: none;
  }
}

@media print {
  .rw-auth__brand,
  .rw-auth__back-link,
  .rw-auth-form,
  .rw-auth__support-note {
    display: none !important;
  }

  .rw-auth,
  .rw-auth__shell,
  .rw-auth__panel {
    display: block;
    min-height: 0;
    padding: 0;
    background: #ffffff;
    border: 0;
    box-shadow: none;
  }
}

/* ==========================================================================
     264. Products / Services Stage 3 Conversion Integration
     ========================================================================== */

/* Five-column desktop footer: Brand, Products, Services, Company, Locations. */
@media (min-width: 1200px) {
  .site-footer__grid {
    grid-template-columns:
      minmax(220px, 1.18fr)
      minmax(145px, 0.7fr)
      minmax(175px, 0.84fr)
      minmax(155px, 0.72fr)
      minmax(220px, 1fr);
    gap: clamp(26px, 3vw, 50px);
  }
}

/* Keep the five footer areas intentional on medium desktop/tablet widths. */
@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer__grid {
    grid-template-columns:
      minmax(250px, 1.2fr)
      repeat(2, minmax(165px, 0.8fr));
  }

  .site-footer__column--company {
    grid-column: 1 / 2;
  }

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

  .site-footer__locations .site-footer__heading {
    grid-column: 1 / -1;
  }

  .site-footer__service-area {
    grid-column: 1 / -1;
  }
}

/* Product-line cards on the estimate page use three equal columns on desktop. */
@media (min-width: 1024px) {
  .estimate-page .estimate-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Lightweight section dividers for the longer Request an Estimate CF7 form. */
.wpcf7 .rw-form__section {
  grid-column: 1 / -1;
  padding: 18px 0 2px;
  margin: 2px 0 0;
  border-top: 1px solid var(--rw-border, #dedfdc);
}

.wpcf7 .rw-form__section:first-child {
  padding-top: 0;
  border-top: 0;
}

.wpcf7 .rw-form__section-title {
  margin: 0 0 5px;
  color: var(--rw-ink, #202328);
  font-family: var(--rw-font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.wpcf7 .rw-form__section-copy {
  margin: 0;
  color: var(--rw-muted, #727881);
  font-size: 0.75rem;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .site-footer__column--products,
  .site-footer__column--services {
    grid-column: auto;
  }

  .site-footer__column--company,
  .site-footer__locations {
    grid-column: 1 / -1;
  }

  .wpcf7 .rw-form__section {
    padding-top: 15px;
  }
}

