.home-redesign {
  --hr-navy: #062f4a;
  --hr-deep: #032337;
  --hr-teal: #078e8c;
  --hr-teal-dark: #056b6a;
  --hr-mist: #e7f1f0;
  --hr-paper: #f7f8f6;
  --hr-ink: #102e3e;
  --hr-muted: #687881;
  --hr-line: #dfe5e4;
  --hr-heading: "Avenir Next", Inter, "Segoe UI", Arial, sans-serif;
  background: var(--hr-paper);
  color: var(--hr-ink);
}

/* Keep the selected gallery direction authoritative over legacy responsive deck rules. */
.home-redesign .hr-products .hr-product-deck { height: auto; min-height: 528px; overflow: hidden; scroll-snap-type: none; scrollbar-width: auto; }
.home-redesign .hr-products .hr-system-card,
.home-redesign .hr-products .hr-system-card[class*="hr-system-card--"] { min-height: 488px; transform: translateX(calc(var(--gallery-offset) * -1)); scroll-snap-align: none; }
.home-redesign .hr-products .hr-system-card__image { height: 220px; }
.home-redesign .hr-products .hr-system-card__body { padding: 22px 24px 18px; }

@media (max-width: 1180px) {
  .home-redesign .hr-products .hr-product-deck { gap: 24px; margin-inline: calc((100vw - min(1400px, calc(100vw - 64px))) / -2); padding: 10px calc((100vw - min(1400px, calc(100vw - 64px))) / 2) 30px; overflow: hidden; }
  .home-redesign .hr-products .hr-system-card,
  .home-redesign .hr-products .hr-system-card[class*="hr-system-card--"] { flex: 0 0 auto; width: calc((100vw - 112px) / 2); min-width: calc((100vw - 112px) / 2); transform: translateX(calc(var(--gallery-offset) * -1)); }
}

@media (max-width: 700px) {
  .home-redesign .hr-products .hr-product-deck { min-height: 500px; margin-inline: -20px; padding-inline: 20px; gap: 16px; }
  .home-redesign .hr-products .hr-system-card,
  .home-redesign .hr-products .hr-system-card[class*="hr-system-card--"] { width: calc(100vw - 40px); min-width: calc(100vw - 40px); min-height: 466px; }
  .home-redesign .hr-products .hr-system-card__image { height: 196px; }
}

/* Solutions showcase — selected light Porcelain Gallery direction. */
.home-redesign .hr-section.hr-solutions-showcase {
  background: #f7f9f8;
  color: var(--hr-deep);
}
.home-redesign .hr-solutions-showcase .hr-solutions-intro .hr-eyebrow { color: var(--hr-teal); }
.home-redesign .hr-solutions-showcase .hr-solutions-intro h2 { color: var(--hr-deep); }
.home-redesign .hr-solutions-showcase .hr-solutions-placeholder-copy p { color: #536b76; }
.home-redesign .hr-solutions-showcase .hr-solutions-all {
  border: 1px solid rgba(6,47,74,.64);
  background: rgba(255,255,255,.68);
  color: var(--hr-deep);
  box-shadow: 0 10px 26px rgba(3,35,55,.05);
  backdrop-filter: blur(14px);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.home-redesign .hr-solutions-showcase .hr-solutions-all:hover {
  background: var(--hr-deep);
  color: #fff;
  transform: translateY(-2px);
}
.home-redesign .hr-solutions-showcase .hr-solutions-grid { gap: 20px; }
.home-redesign .hr-solutions-showcase .hr-solution-tile {
  border-color: rgba(6,47,74,.16);
  box-shadow: 0 16px 38px rgba(3,35,55,.09), inset 0 1px rgba(255,255,255,.28);
}
.home-redesign .hr-solutions-showcase .hr-solution-tile:hover {
  border-color: rgba(7,142,140,.58);
  box-shadow: 0 24px 48px rgba(3,35,55,.14), inset 0 1px rgba(255,255,255,.34);
}
.home-redesign .hr-solutions-showcase .hr-solution-tile__placeholder,
.home-redesign .hr-solutions-showcase .hr-solution-tile__tags span {
  border-color: rgba(255,255,255,.38);
  background: rgba(6,35,53,.34);
  color: #fff;
  box-shadow: inset 0 1px rgba(255,255,255,.16);
  backdrop-filter: blur(12px) saturate(120%);
}
.home-redesign .hr-solutions-showcase .hr-solution-tile > i {
  box-shadow: 0 8px 20px rgba(3,35,55,.16);
}

/* Selected cases — editorial glass ledger. */
.home-redesign .hr-section.hr-projects {
  background: #f7f9f8;
}
.home-redesign .hr-projects .hr-section-head {
  margin-bottom: 46px;
}
.home-redesign .hr-project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-height: 570px;
}
.home-redesign .hr-projects .hr-project-card {
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(280px, .52fr);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 18px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 18px 44px rgba(3,35,55,.09), inset 0 1px 0 rgba(255,255,255,.94);
  isolation: isolate;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.home-redesign .hr-projects .hr-project-card:first-child {
  grid-row: 1 / span 2;
  grid-template-columns: minmax(0, .63fr) minmax(250px, .37fr);
}
.home-redesign .hr-projects .hr-project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126,202,198,.72);
  box-shadow: 0 26px 58px rgba(3,35,55,.13), inset 0 1px 0 #fff;
}
.home-redesign .hr-projects .hr-project-card > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}
.home-redesign .hr-projects .hr-project-card:first-child > img {
  object-position: 48% center;
}
.home-redesign .hr-projects .hr-project-card .hr-card-body {
  display: flex;
  min-width: 0;
  padding: 30px 28px 24px;
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  background: rgba(249,252,251,.76);
  box-shadow: inset 1px 0 rgba(255,255,255,.82);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.home-redesign .hr-projects .hr-project-card .hr-card-body::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(7,142,140,.2) 20%, rgba(255,255,255,.9) 50%, transparent);
}
.home-redesign .hr-projects .hr-project-card:first-child .hr-card-body {
  padding: 42px 34px 30px;
  justify-content: center;
}
.home-redesign .hr-projects .hr-project-card h3 {
  max-width: 330px;
  font-size: clamp(20px,1.65vw,27px);
  line-height: 1.12;
}
.home-redesign .hr-projects .hr-project-card:not(:first-child) h3 {
  font-size: clamp(18px,1.32vw,22px);
}
.home-redesign .hr-projects .hr-project-card .hr-card-body > p {
  min-height: 0;
  margin: 16px 0 0;
  color: #5c707a;
  font-size: 14px;
  line-height: 1.62;
}
.home-redesign .hr-projects .hr-project-card .hr-meta {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  gap: 18px;
}
.home-redesign .hr-projects .hr-project-card:not(:first-child) .hr-meta {
  padding-top: 14px;
}
.home-redesign .hr-projects .hr-project-card .hr-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  box-shadow: inset 0 1px rgba(255,255,255,.78);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .home-redesign .hr-project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }
  .home-redesign .hr-projects .hr-project-card,
  .home-redesign .hr-projects .hr-project-card:first-child {
    grid-row: auto;
    grid-template-columns: minmax(0, .52fr) minmax(300px, .48fr);
    min-height: 300px;
  }
  .home-redesign .hr-projects .hr-project-card:first-child {
    min-height: 390px;
  }
}

@media (max-width: 700px) {
  .home-redesign .hr-projects .hr-section-head {
    margin-bottom: 30px;
  }
  .home-redesign .hr-projects .hr-project-card,
  .home-redesign .hr-projects .hr-project-card:first-child {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .home-redesign .hr-projects .hr-project-card > img,
  .home-redesign .hr-projects .hr-project-card:first-child > img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .home-redesign .hr-projects .hr-project-card .hr-card-body,
  .home-redesign .hr-projects .hr-project-card:first-child .hr-card-body {
    min-height: 230px;
    padding: 24px 22px 20px;
  }
  .home-redesign .hr-projects .hr-project-card .hr-card-body::before {
    inset: 0 0 auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7,142,140,.2) 20%, rgba(255,255,255,.9) 50%, transparent);
  }
}

.home-redesign .backup-home-hero { position: relative; min-height: 720px; overflow: hidden; background: var(--hr-deep); }
.home-redesign .backup-home-hero__image,
.home-redesign .backup-home-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-redesign .backup-home-hero__image { object-fit: cover; }
.home-redesign .backup-home-hero__overlay { background: linear-gradient(90deg, rgba(3,35,55,.86) 0%, rgba(3,35,55,.66) 42%, rgba(3,35,55,.15) 74%, rgba(3,35,55,.3) 100%), linear-gradient(0deg, rgba(3,35,55,.86), transparent 52%, rgba(3,35,55,.08)); }
.home-redesign .backup-home-hero__layout { position: relative; z-index: 1; min-height: 720px; }
.home-redesign .backup-home-hero__content { position: absolute; top: 152px; left: 0; display: flex; width: min(850px,68%); align-items: flex-start; flex-direction: column; color: #fff; }
.home-redesign .backup-home-hero h1 { max-width: 720px; margin: 25px 0 22px; color: #fff; font-family: "Avenir Next", Inter, "Segoe UI", Arial, sans-serif; font-size: clamp(52px,6vw,82px); font-weight: 600; letter-spacing: -.045em; line-height: .98; }
.home-redesign .backup-home-hero h1 em { color: #8fd5d0; font-style: normal; }
.home-redesign .backup-home-hero__pill { display: inline-flex; padding: 7px 12px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(255,255,255,.12); color: #fff; font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }
.home-redesign .backup-home-hero__content > p { width: 790px; max-width: 100%; margin: 0; color: #fff; font-family: "Inter Variable", Arial, sans-serif; font-size: 20px; font-weight: 300; letter-spacing: -.035em; line-height: 1.4; text-wrap: balance; }
.home-redesign .backup-home-hero__tabs { position: relative; display: grid; grid-template-columns: 1fr 1fr; width: min(480px,100%); margin-top: 28px; padding: 5px; overflow: hidden; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; background: rgba(255,255,255,.55); box-shadow: 0 14px 35px rgba(2,27,43,.2); backdrop-filter: blur(18px) saturate(135%); }
.home-redesign .backup-home-hero__tabs::before { position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); border-radius: 999px; background: var(--hr-navy); box-shadow: 0 8px 18px rgba(3,35,55,.2); content: ""; }
.home-redesign .backup-home-hero__tabs a { position: relative; z-index: 1; display: grid; min-height: 54px; padding: 0 20px; place-items: center; color: var(--hr-navy); font-family: var(--hr-heading); font-size: 20px; font-weight: 600; text-align: center; text-decoration: none; }
.home-redesign .backup-home-hero__tabs a:first-child { color: #fff; }

.home-redesign .hr-section,
.home-redesign .hr-section * { box-sizing: border-box; }
.home-redesign .hr-section { padding: 92px 0; background: var(--hr-paper); }
.home-redesign .hr-section--white { background: #fff; }
.home-redesign .hr-shell { width: min(1400px, calc(100% - 64px)); margin-inline: auto; }
.home-redesign .hr-section h2,
.home-redesign .hr-section h3 { font-family: var(--hr-heading); color: var(--hr-deep); }
.home-redesign .hr-section h2 { max-width: 820px; margin: 8px 0 0; font-size: clamp(34px, 3.2vw, 54px); font-weight: 600; line-height: 1.08; letter-spacing: -.035em; }
.home-redesign .hr-section h3 { margin: 0; font-size: 19px; font-weight: 600; line-height: 1.24; letter-spacing: -.018em; }
.home-redesign .hr-eyebrow { margin: 0; color: var(--hr-teal); font-size: 11px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.home-redesign .hr-eyebrow::before { content: "✦"; margin-right: 9px; }
.home-redesign .hr-section-head { margin-bottom: 38px; }
.home-redesign .hr-section-head--split { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.home-redesign .hr-section-head--split > p { max-width: 520px; margin: 0 0 4px; color: var(--hr-muted); font-size: 15px; line-height: 1.75; }
.home-redesign .hr-products .hr-section-head--split { display: block; }
@media (min-width: 1600px) { .home-redesign .backup-home-hero__content { transform: translate(-103px, -47px); } }
.home-redesign .hr-products { overflow: hidden; background: linear-gradient(180deg,#f7f8f6 0%,#edf4f3 100%); }
.home-redesign .hr-products .hr-section-head { position: relative; z-index: 10; margin-bottom: 22px; }
.home-redesign .hr-product-deck { height: 650px; position: relative; margin-top: 12px; perspective: 1600px; }
.home-redesign .hr-system-card { width: 320px; min-height: 520px; position: absolute; top: 66px; overflow: hidden; border: 1px solid rgba(6,47,74,.16); border-radius: 22px; background: #fff; box-shadow: 0 24px 55px rgba(3,35,55,.14); color: var(--hr-ink); text-decoration: none; transform-origin: center bottom; transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; }
.home-redesign .hr-system-card:hover { z-index: 20!important; transform: translateY(-12px) scale(1.02)!important; box-shadow: 0 34px 76px rgba(3,35,55,.22); filter: none; }
.home-redesign .hr-system-card--1 { left: -4%; z-index: 1; transform: translateY(50px) scale(.82); filter: saturate(.72); }
.home-redesign .hr-system-card--2 { left: 9%; z-index: 2; transform: translateY(28px) scale(.88); }
.home-redesign .hr-system-card--3 { left: 23%; z-index: 4; transform: translateY(10px) scale(.95); }
.home-redesign .hr-system-card--4 { left: 50%; z-index: 8; transform: translateX(-50%) scale(1.05); }
.home-redesign .hr-system-card--5 { right: 23%; z-index: 5; transform: translateY(10px) scale(.95); }
.home-redesign .hr-system-card--6 { right: 9%; z-index: 3; transform: translateY(28px) scale(.88); }
.home-redesign .hr-system-card--7 { right: -4%; z-index: 1; transform: translateY(50px) scale(.82); filter: saturate(.72); }
.home-redesign .hr-system-card.is-featured { border-color: rgba(7,142,140,.45); box-shadow: 0 30px 80px rgba(3,35,55,.22); }
.home-redesign .hr-system-card__image { display: grid; height: 205px; position: relative; place-items: center; overflow: hidden; border-radius: 21px 21px 0 0; background-color: #dce8e7; background-image: linear-gradient(135deg,rgba(6,47,74,.2),transparent 45%),linear-gradient(315deg,rgba(7,142,140,.22),transparent 50%),repeating-linear-gradient(90deg,rgba(255,255,255,.18) 0 1px,transparent 1px 44px); }
.home-redesign .hr-system-card__image::before { display: none; }
.home-redesign .hr-system-card__image img { width: 100%; height: 100%; display: block; padding: 10px; object-fit: contain; background: #f4f8f7; }
.home-redesign .hr-system-card__image span { z-index: 1; padding: 7px 11px; border: 1px solid rgba(6,47,74,.14); border-radius: 999px; background: rgba(255,255,255,.82); color: rgba(6,47,74,.64); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.home-redesign .hr-system-card__body { padding: 21px 22px 19px; }
.home-redesign .hr-system-card__body small { color: var(--hr-teal); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.home-redesign .hr-system-card h3 { min-height: 62px; margin: 7px 0 9px; font-size: 20px; line-height: 1.12; }
.home-redesign .hr-system-card__body > p { min-height: 57px; margin: 0; color: var(--hr-muted); font-size: 12px; line-height: 1.55; }
.home-redesign .hr-system-card dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 18px 0 0; padding: 15px 0; border-top: 1px solid var(--hr-line); border-bottom: 1px solid var(--hr-line); }
.home-redesign .hr-system-card dl div { min-width: 0; }
.home-redesign .hr-system-card dt { margin-bottom: 4px; color: var(--hr-muted); font-size: 9px; text-transform: uppercase; }
.home-redesign .hr-system-card dd { margin: 0; overflow: hidden; color: var(--hr-teal-dark); font-size: 12px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.home-redesign .hr-system-card__action { display: flex; margin-top: 13px; align-items: center; justify-content: space-between; color: var(--hr-navy); font-size: 11px; font-weight: 600; }
.home-redesign .hr-system-card__action i { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--hr-navy); color: #fff; font-size: 18px; font-style: normal; }

/* Product systems gallery — selected Curated Gallery Rail direction. */
.home-redesign .hr-products { padding-block: 104px 92px; background: #f4f7f6; }
.home-redesign .hr-products .hr-section-head { margin-bottom: 46px; align-items: end; }
.home-redesign .hr-products .hr-section-head--split { grid-template-columns: minmax(0,1.45fr) minmax(320px,.55fr); gap: 72px; }
.home-redesign .hr-products-intro > p { max-width: 500px; margin: 0; color: var(--hr-muted); font-size: 15px; line-height: 1.72; }
.home-redesign .hr-products-intro > a { display: inline-flex; margin-top: 22px; gap: 14px; align-items: center; color: var(--hr-deep); font-size: 14px; font-weight: 650; text-decoration: none; }
.home-redesign .hr-products-intro > a span { color: var(--hr-teal); font-size: 20px; transition: transform .2s ease; }
.home-redesign .hr-products-intro > a:hover span { transform: translateX(4px); }
.home-redesign .hr-product-gallery { position: relative; }
.home-redesign .hr-product-deck { --gallery-offset: 0px; display: flex; height: auto; min-height: 528px; margin-inline: calc((100vw - min(1400px, calc(100vw - 64px))) / -2); padding: 10px calc((100vw - min(1400px, calc(100vw - 64px))) / 2) 30px; gap: 24px; position: relative; overflow: hidden; perspective: none; touch-action: pan-y; }
.home-redesign .hr-product-deck:focus-visible { outline: 3px solid rgba(7,142,140,.55); outline-offset: 5px; }
.home-redesign .hr-system-card,
.home-redesign .hr-system-card[class*="hr-system-card--"] { width: calc((min(1400px, calc(100vw - 64px)) - 48px) / 3); min-width: calc((min(1400px, calc(100vw - 64px)) - 48px) / 3); min-height: 488px; position: relative; inset: auto; top: auto; z-index: 1; flex: 0 0 auto; border-radius: 18px; box-shadow: 0 10px 32px rgba(3,35,55,.07); filter: none; transform: translateX(calc(var(--gallery-offset) * -1)); transition: transform .48s cubic-bezier(.22,.72,.18,1), translate .25s ease, box-shadow .25s ease, border-color .25s ease; }
.home-redesign .hr-product-deck.is-instant .hr-system-card { transition: none; }
.home-redesign .hr-system-card:hover { z-index: 2!important; translate: 0 -8px; transform: translateX(calc(var(--gallery-offset) * -1))!important; box-shadow: 0 20px 48px rgba(3,35,55,.13); }
.home-redesign .hr-system-card.is-featured { z-index: 2; translate: 0 -8px; border-color: rgba(7,142,140,.42); box-shadow: 0 20px 48px rgba(3,35,55,.13); }
.home-redesign .hr-system-card__image { height: 220px; border-radius: 17px 17px 0 0; }
.home-redesign .hr-system-card__body { padding: 22px 24px 18px; }
.home-redesign .hr-system-card h3 { min-height: 52px; font-size: 21px; }
.home-redesign .hr-system-card__body > p { min-height: 48px; font-size: 13px; }
.home-redesign .hr-product-gallery__controls { display: grid; grid-template-columns: 46px auto minmax(180px,360px) 46px; gap: 22px; width: min(680px,100%); margin: 6px auto 0; align-items: center; }
.home-redesign .hr-gallery-button { width: 46px; height: 46px; padding: 0; border: 1px solid rgba(6,47,74,.34); border-radius: 50%; background: transparent; color: var(--hr-deep); cursor: pointer; font: 400 22px/1 var(--hr-heading); transition: color .2s ease, background .2s ease, opacity .2s ease; }
.home-redesign .hr-gallery-button:hover:not(:disabled) { background: var(--hr-deep); color: #fff; }
.home-redesign .hr-gallery-button:focus-visible { outline: 3px solid rgba(7,142,140,.5); outline-offset: 3px; }
.home-redesign .hr-gallery-button:disabled { opacity: .28; cursor: default; }
.home-redesign .hr-gallery-progress { display: flex; margin: 0; gap: 7px; align-items: baseline; white-space: nowrap; }
.home-redesign .hr-gallery-progress strong { color: var(--hr-deep); font: 600 24px/1 var(--hr-heading); }
.home-redesign .hr-gallery-progress span { color: #9eacad; font-size: 13px; }
.home-redesign .hr-gallery-track { height: 2px; overflow: hidden; background: rgba(6,47,74,.13); }
.home-redesign .hr-gallery-track span { display: block; width: 57.14%; height: 100%; background: var(--hr-teal); transition: width .35s ease; }

@media (max-width: 1080px) {
  .home-redesign .hr-system-card,
  .home-redesign .hr-system-card[class*="hr-system-card--"] { width: calc((100vw - 88px) / 2); min-width: calc((100vw - 88px) / 2); }
}

@media (max-width: 700px) {
  .home-redesign .hr-products { padding-block: 72px 66px; }
  .home-redesign .hr-products .hr-section-head--split { grid-template-columns: 1fr; gap: 18px; }
  .home-redesign .hr-products-intro > a { margin-top: 14px; }
  .home-redesign .hr-product-deck { min-height: 500px; margin-inline: -20px; padding-inline: 20px; gap: 16px; }
  .home-redesign .hr-system-card,
  .home-redesign .hr-system-card[class*="hr-system-card--"] { width: calc(100vw - 40px); min-width: calc(100vw - 40px); min-height: 466px; }
  .home-redesign .hr-system-card__image { height: 196px; }
  .home-redesign .hr-product-gallery__controls { grid-template-columns: 42px auto 1fr 42px; gap: 13px; }
  .home-redesign .hr-gallery-button { width: 42px; height: 42px; }
}
.home-redesign .hr-solutions-showcase { background: var(--hr-deep); color: #fff; }
.home-redesign .hr-solutions-layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.7fr); gap: clamp(48px,6vw,94px); align-items: start; }
.home-redesign .hr-solutions-intro { position: sticky; top: 110px; padding-top: 12px; }
.home-redesign .hr-solutions-intro .hr-eyebrow { color: #8fd5d0; }
.home-redesign .hr-solutions-intro h2 { max-width: 440px; color: #fff; font-size: clamp(42px,4.4vw,68px); }
.home-redesign .hr-solutions-placeholder-copy { max-width: 430px; margin-top: 38px; }
.home-redesign .hr-solutions-placeholder-copy p { margin: 0 0 20px; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; }
.home-redesign .hr-solutions-all { display: inline-flex; min-height: 52px; margin-top: 16px; padding: 0 22px; align-items: center; gap: 28px; border-radius: 999px; background: #fff; color: var(--hr-deep); font-size: 14px; font-weight: 600; text-decoration: none; }
.home-redesign .hr-solutions-all span { font-size: 19px; }
.home-redesign .hr-solutions-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.home-redesign .hr-solution-tile { min-height: 290px; position: relative; display: flex; overflow: hidden; padding: 28px; align-items: flex-start; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background-color: #315b65; background-image: linear-gradient(180deg,rgba(3,35,55,.05) 15%,rgba(3,35,55,.9) 100%),linear-gradient(135deg,rgba(143,213,208,.42),transparent 50%),repeating-linear-gradient(90deg,rgba(255,255,255,.06) 0 1px,transparent 1px 44px); color: #fff; text-decoration: none; transition: transform .22s ease,border-color .22s ease; }
.home-redesign .hr-solution-tile { background-position: center; background-repeat: no-repeat; background-size: cover; }
.home-redesign .hr-solution-tile::before { display: none; }
.home-redesign .hr-solution-tile.hr-placeholder--archive { background-image: linear-gradient(180deg,rgba(3,35,55,.08) 10%,rgba(3,35,55,.92) 100%),url('/assets/images/solution-heroes/archives-books-documents-conservation.webp'); }
.home-redesign .hr-solution-tile.hr-placeholder--storage { background-image: linear-gradient(180deg,rgba(3,35,55,.08) 10%,rgba(3,35,55,.92) 100%),url('/assets/images/solution-heroes/museum-storage-solutions.webp'); }
.home-redesign .hr-solution-tile.hr-placeholder--display { background-image: linear-gradient(180deg,rgba(3,35,55,.08) 10%,rgba(3,35,55,.92) 100%),url('/assets/images/solution-heroes/museum-display-case-microclimate-control.webp'); }
.home-redesign .hr-solution-tile.hr-placeholder--room { background-image: linear-gradient(180deg,rgba(3,35,55,.08) 10%,rgba(3,35,55,.92) 100%),url('/assets/images/solution-heroes/museum-archive-pest-control.webp'); }
.home-redesign .hr-solution-tile.hr-placeholder--clean { background-image: linear-gradient(180deg,rgba(3,35,55,.08) 10%,rgba(3,35,55,.92) 100%),url('/assets/images/solution-heroes/collection-dust-mold-decontamination.webp'); }
.home-redesign .hr-solution-tile.hr-placeholder--recovery { background-image: linear-gradient(180deg,rgba(3,35,55,.08) 10%,rgba(3,35,55,.92) 100%),url('/assets/images/solution-heroes/water-damaged-books-archives-recovery.webp'); }
.home-redesign .hr-solution-tile:hover { transform: translateY(-4px); border-color: #8fd5d0; }
.home-redesign .hr-solution-tile__placeholder { position: absolute; z-index: 1; top: 22px; left: 22px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(3,35,55,.28); color: rgba(255,255,255,.78); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.home-redesign .hr-solution-tile h3 { z-index: 1; max-width: calc(100% - 54px); margin: 0 0 18px; color: #fff; font-size: clamp(24px,2.1vw,34px); line-height: 1.04; }
.home-redesign .hr-solution-tile__tags { z-index: 1; display: flex; gap: 8px; flex-wrap: wrap; }
.home-redesign .hr-solution-tile__tags span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.16); color: #fff; font-size: 10px; font-weight: 600; backdrop-filter: blur(8px); }
.home-redesign .hr-solution-tile > i { z-index: 2; position: absolute; right: 22px; bottom: 22px; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #fff; color: var(--hr-deep); font-size: 19px; font-style: normal; }
.home-redesign .hr-section-head--action { display: flex; gap: 32px; align-items: end; justify-content: space-between; }
.home-redesign .hr-section-head--action > a { flex: 0 0 auto; margin-bottom: 8px; color: var(--hr-navy); font-size: 13px; font-weight: 600; text-decoration: none; }
.home-redesign .hr-section-head--action > a span { margin-left: 7px; color: var(--hr-teal); font-size: 18px; }

.home-redesign .hr-filter-row { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 8px; margin: 0 0 28px; }
.home-redesign .hr-resource-tabs { display: flex; gap: 8px; margin: 0 0 28px; overflow-x: auto; scrollbar-width: none; }
.home-redesign .hr-filter-row a { min-height: 58px; display: grid; padding: 9px 10px; place-items: center; border: 1px solid var(--hr-line); border-radius: 7px; background: #fff; color: var(--hr-ink); font-size: 10px; font-weight: 600; line-height: 1.22; text-align: center; text-decoration: none; }
.home-redesign .hr-filter-row a.is-active,
.home-redesign .hr-filter-row a:hover { border-color: var(--hr-navy); background: var(--hr-navy); color: #fff; }
.home-redesign .hr-resource-tabs a { min-width: 80px; padding: 7px 16px; border-radius: 999px; color: var(--hr-ink); font-size: 12px; font-weight: 600; text-align: center; text-decoration: none; }
.home-redesign .hr-resource-tabs a.is-active,
.home-redesign .hr-resource-tabs a:hover { background: var(--hr-navy); color: #fff; }

.home-redesign .hr-grid { display: grid; gap: 20px; }
.home-redesign .hr-grid--six { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.home-redesign .hr-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.home-redesign .hr-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-redesign .hr-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-redesign .hr-card { display: block; overflow: hidden; min-width: 0; border: 1px solid var(--hr-line); border-radius: 12px; background: #fff; color: inherit; text-decoration: none; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.home-redesign .hr-card:hover { transform: translateY(-4px); border-color: rgba(7,142,140,.5); box-shadow: 0 18px 42px rgba(4,44,66,.1); }
.home-redesign .hr-card:focus-visible,
.home-redesign .hr-feature-band:focus-visible { outline: 3px solid #32b8b2; outline-offset: 4px; }
.home-redesign .hr-card-body { padding: 20px; }
.home-redesign .hr-card-body p { margin: 10px 0 19px; color: var(--hr-muted); font-size: 13px; line-height: 1.58; }
.home-redesign .hr-card-body b { display: flex; align-items: center; justify-content: space-between; color: var(--hr-navy); font-size: 12px; font-style: normal; }
.home-redesign .hr-card-body b i { color: var(--hr-teal); font-size: 17px; font-style: normal; transition: transform .2s ease; }
.home-redesign .hr-card:hover b i { transform: translateX(4px); }
.home-redesign .hr-icon { display: grid; width: 34px; height: 34px; margin: -37px 0 13px; position: relative; place-items: center; border: 4px solid #fff; border-radius: 50%; background: var(--hr-mist); color: var(--hr-teal-dark); font-size: 9px; font-weight: 600; letter-spacing: .04em; }

.home-redesign .hr-placeholder { display: grid; min-height: 164px; place-items: center; position: relative; overflow: hidden; background-color: #dce8e7; background-image: linear-gradient(135deg, rgba(6,47,74,.18), transparent 45%), linear-gradient(315deg, rgba(7,142,140,.18), transparent 50%), repeating-linear-gradient(90deg, rgba(255,255,255,.17) 0 1px, transparent 1px 44px); }
.home-redesign .hr-placeholder::before { content: ""; width: 45%; height: 55%; position: absolute; right: 8%; bottom: -5%; border: 1px solid rgba(6,47,74,.18); border-radius: 40px 40px 0 0; background: rgba(255,255,255,.3); transform: skewX(-8deg); }
.home-redesign .hr-placeholder span { position: relative; z-index: 1; padding: 7px 10px; border: 1px solid rgba(6,47,74,.16); border-radius: 999px; background: rgba(247,248,246,.82); color: rgba(6,47,74,.62); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.home-redesign .hr-placeholder--display { background-color: #e5ebe7; }
.home-redesign .hr-placeholder--room { background-color: #dbe3e8; }
.home-redesign .hr-placeholder--clean { background-color: #e7eeed; }
.home-redesign .hr-placeholder--paper { background-color: #ecebe2; }
.home-redesign .hr-placeholder--recovery { background-color: #d8e8e7; }
.home-redesign .hr-placeholder--archive { background-color: #e4e7df; }
.home-redesign .hr-placeholder--lab { background-color: #dfe9eb; }
.home-redesign .hr-placeholder--field { background-color: #dce4df; }
.home-redesign .hr-placeholder--project { background-color: #ddebed; }

.home-redesign .hr-product-card .hr-card-body { min-height: 250px; display: flex; flex-direction: column; }
.home-redesign .hr-product-card .hr-card-body p { flex: 1; }
.home-redesign .hr-feature-band { display: grid; grid-template-columns: 340px 54px 1fr auto; gap: 24px; min-height: 134px; margin-top: 22px; padding: 12px; align-items: center; border: 1px solid rgba(7,142,140,.28); border-radius: 12px; background: linear-gradient(90deg, #f1f7f6, #fff); color: inherit; text-decoration: none; }
.home-redesign .hr-feature-band .hr-placeholder { min-height: 110px; border-radius: 8px; }
.home-redesign .hr-feature-band h3 { font-size: 20px; }
.home-redesign .hr-feature-band p { margin: 7px 0 0; color: var(--hr-muted); font-size: 13px; }
.home-redesign .hr-feature-icon { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(7,142,140,.3); border-radius: 50%; color: var(--hr-teal-dark); font-size: 11px; font-weight: 600; }
.home-redesign .hr-feature-band > b { margin-right: 20px; padding: 14px 20px; border-radius: 6px; background: var(--hr-navy); color: #fff; font-size: 12px; white-space: nowrap; }
.home-redesign .hr-feature-band > b i { margin-left: 12px; color: #9adbd7; font-style: normal; }

.home-redesign .hr-solution-card .hr-placeholder { min-height: 132px; }
.home-redesign .hr-solution-card .hr-card-body { min-height: 208px; }
.home-redesign .hr-solution-card h3 { font-size: 16px; }
.home-redesign .hr-projects { background: #f7f9f8; }
.home-redesign .hr-resources.hr-section--white { background: #f7f9f8; }
.home-redesign .hr-project-card .hr-placeholder { min-height: 260px; }
.home-redesign .hr-project-card .hr-card-body { padding: 24px 26px; }
.home-redesign .hr-project-card h3 { font-size: 22px; }
.home-redesign .hr-project-card .hr-card-body p { min-height: 44px; font-size: 14px; }

/* Homepage content refinements — approved August 2026. */
.home-redesign .hr-products .hr-section-head--split { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); }
.home-redesign .hr-product-deck { height: 600px; }
.home-redesign .hr-system-card { min-height: 470px; }
.home-redesign .hr-system-card__image { height: 185px; }
.home-redesign .hr-system-card__body { padding: 18px 22px 17px; }
.home-redesign .hr-system-card h3 { margin-top: 0; }
.home-redesign .hr-project-card > img { display: block; width: 100%; height: 260px; object-fit: cover; }

@media (max-width: 980px) {
  .home-redesign .hr-products .hr-section-head--split { grid-template-columns: 1fr; gap: 18px; }
}
.home-redesign .hr-meta { display: flex; gap: 24px; padding-top: 15px; border-top: 1px solid var(--hr-line); color: var(--hr-teal-dark); font-size: 11px; font-weight: 600; }
.home-redesign .hr-meta span::before { content: "◇"; margin-right: 6px; }
.home-redesign .hr-resource-card .hr-placeholder { min-height: 190px; }
.home-redesign .hr-resource-card small { color: var(--hr-teal); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.home-redesign .hr-resource-card h3 { margin-top: 8px; font-size: 18px; }
.home-redesign .hr-resource-card .hr-card-body { min-height: 230px; display: flex; flex-direction: column; }
.home-redesign .hr-resource-card .hr-card-body p { flex: 1; }

.home-redesign .hr-project-inquiry,
.home-redesign .hr-project-inquiry * { box-sizing: border-box; }
.home-redesign .hr-project-inquiry { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(500px,.92fr); min-height: 720px; background: var(--hr-deep); color: #fff; }
.home-redesign .hr-project-inquiry__image { min-height: 720px; position: relative; background-image: linear-gradient(90deg,transparent 58%,rgba(3,35,55,.72)),url('/assets/phase-4a/14-contact-discuss-your-application.webp'); background-position: center; background-size: cover; }
.home-redesign .hr-project-inquiry__panel { display: grid; padding: 70px clamp(40px,6vw,100px); align-content: center; }
.home-redesign .hr-project-inquiry__eyebrow { margin: 0; color: #8fd5d0; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.home-redesign .hr-project-inquiry h2 { max-width: 650px; margin: 14px 0 18px; color: #fff; font-family: "Avenir Next", Inter, "Segoe UI", Arial, sans-serif; font-size: clamp(44px,4.3vw,57px); font-weight: 600; letter-spacing: -.045em; line-height: 1; }
.home-redesign .hr-project-inquiry__intro { max-width: 620px; margin: 0 0 30px; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.65; }
.home-redesign .hr-project-inquiry__form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px 20px; }
.home-redesign .hr-project-inquiry__form label { display: grid; gap: 5px; }
.home-redesign .hr-project-inquiry__form label > span { color: rgba(255,255,255,.58); font-size: 15px; font-weight: 500; letter-spacing: .04em; }
.home-redesign .hr-project-inquiry__wide { grid-column: 1 / -1; }
.home-redesign .hr-project-inquiry__form input,
.home-redesign .hr-project-inquiry__form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.36); border-radius: 0; outline: 0; background: transparent; color: #fff; font: inherit; resize: vertical; transition: border-color .2s ease; }
.home-redesign .hr-project-inquiry__form input { min-height: 42px; }
.home-redesign .hr-project-inquiry__form textarea { min-height: 66px; }
.home-redesign .hr-project-inquiry__form input:focus,
.home-redesign .hr-project-inquiry__form textarea:focus { border-bottom-color: #8fd5d0; }
.home-redesign .hr-project-inquiry__form button { grid-column: 1 / -1; min-height: 52px; margin-top: 8px; padding: 0 24px; border: 0; border-radius: 999px; background: #fff; color: var(--hr-deep); font-family: var(--hr-heading); font-size: 24px; font-weight: 600; cursor: pointer; transition: background .2s ease,transform .2s ease; }
.home-redesign .hr-project-inquiry__form button:hover { background: #8fd5d0; transform: translateY(-1px); }
.home-redesign .hr-project-inquiry__form button:focus-visible { outline: 3px solid #8fd5d0; outline-offset: 4px; }
.home-redesign .hr-project-inquiry__panel small { margin-top: 14px; color: rgba(255,255,255,.46); font-size: 10px; line-height: 1.5; }

@media (max-width: 1180px) {
  .home-redesign .hr-product-deck { height: auto; display: flex; gap: 18px; margin-inline: -32px; padding: 20px 32px 34px; overflow-x: auto; perspective: none; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .home-redesign .hr-product-deck::-webkit-scrollbar { display: none; }
  .home-redesign .hr-system-card,
  .home-redesign .hr-system-card--1,
  .home-redesign .hr-system-card--2,
  .home-redesign .hr-system-card--3,
  .home-redesign .hr-system-card--4,
  .home-redesign .hr-system-card--5,
  .home-redesign .hr-system-card--6,
  .home-redesign .hr-system-card--7 { flex: 0 0 310px; position: relative; inset: auto; transform: none; filter: none; scroll-snap-align: center; }
  .home-redesign .hr-solutions-layout { grid-template-columns: 1fr; }
  .home-redesign .hr-solutions-intro { position: static; }
  .home-redesign .hr-solutions-placeholder-copy { max-width: 720px; }
  .home-redesign .hr-grid--six { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .home-redesign .hr-grid--five { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .home-redesign .hr-grid--four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-redesign .hr-project-inquiry { grid-template-columns: minmax(0,.85fr) minmax(480px,1.15fr); }
}
@media (max-width: 820px) {
  .home-redesign .backup-home-hero,
  .home-redesign .backup-home-hero__layout { min-height: 720px; }
  .home-redesign .backup-home-hero__content { top: 130px; width: 100%; }
  .home-redesign .backup-home-hero__overlay { background: linear-gradient(180deg,rgba(3,35,55,.74),rgba(3,35,55,.24) 55%,rgba(3,35,55,.87)),linear-gradient(90deg,rgba(3,35,55,.55),rgba(3,35,55,.1)); }
  .home-redesign .hr-section { padding: 68px 0; }
  .home-redesign .hr-shell { width: min(100% - 36px, 1400px); }
  .home-redesign .hr-section-head--split { grid-template-columns: 1fr; gap: 20px; }
  .home-redesign .hr-filter-row { display: flex; overflow-x: auto; scrollbar-width: none; }
  .home-redesign .hr-filter-row a { flex: 0 0 172px; }
  .home-redesign .hr-grid--six,
  .home-redesign .hr-grid--five,
  .home-redesign .hr-grid--three { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-redesign .hr-feature-band { grid-template-columns: 1fr; padding: 14px; }
  .home-redesign .hr-feature-band .hr-placeholder { min-height: 180px; }
  .home-redesign .hr-feature-icon { display: none; }
  .home-redesign .hr-feature-band > b { width: max-content; margin: 0 0 8px; }
  .home-redesign .hr-project-inquiry { grid-template-columns: 1fr; }
  .home-redesign .hr-project-inquiry__image { min-height: 420px; background-image: linear-gradient(180deg,transparent 70%,rgba(3,35,55,.82)),url('/assets/phase-4a/14-contact-discuss-your-application.webp'); background-position: 58% center; }
  .home-redesign .hr-project-inquiry__panel { padding: 56px 32px 64px; }
}
@media (max-width: 560px) {
  .home-redesign .backup-home-hero,
  .home-redesign .backup-home-hero__layout { min-height: 690px; }
  .home-redesign .backup-home-hero__image { object-position: 66% center; }
  .home-redesign .backup-home-hero__content { top: 118px; }
  .home-redesign .backup-home-hero h1 { font-size: 45px; }
  .home-redesign .backup-home-hero__content > p { width: 100%; font-size: 16px; }
  .home-redesign .backup-home-hero__tabs { width: 100%; }
  .home-redesign .backup-home-hero__tabs a { min-height: 50px; padding-inline: 10px; font-size: 15px; }
  .home-redesign .hr-shell { width: min(100% - 28px, 1400px); }
  .home-redesign .hr-section h2 { font-size: 34px; }
  .home-redesign .hr-section-head--action { align-items: flex-start; }
  .home-redesign .hr-section-head--action > a { margin-top: 5px; font-size: 0; }
  .home-redesign .hr-section-head--action > a span { font-size: 24px; }
  .home-redesign .hr-grid--six,
  .home-redesign .hr-grid--five,
  .home-redesign .hr-grid--three,
  .home-redesign .hr-grid--four { grid-template-columns: 1fr; }
  .home-redesign .hr-solutions-grid { grid-template-columns: 1fr; }
  .home-redesign .hr-solution-tile { min-height: 260px; }
  .home-redesign .hr-product-card .hr-card-body,
  .home-redesign .hr-solution-card .hr-card-body,
  .home-redesign .hr-resource-card .hr-card-body { min-height: 0; }
  .home-redesign .hr-placeholder { min-height: 210px; }
  .home-redesign .hr-project-inquiry__image { min-height: 310px; }
  .home-redesign .hr-project-inquiry__panel { padding: 48px 22px 56px; }
  .home-redesign .hr-project-inquiry h2 { font-size: 42px; }
  .home-redesign .hr-project-inquiry__intro { font-size: 15px; }
  .home-redesign .hr-project-inquiry__form { grid-template-columns: 1fr; }
  .home-redesign .hr-project-inquiry__wide,
  .home-redesign .hr-project-inquiry__form button { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .home-redesign .hr-card,
  .home-redesign .hr-card-body b i { transition: none; }
  .home-redesign .hr-project-inquiry__form button { transition: none; }
}
.home-redesign .hr-guide-cover{display:block;width:100%;height:164px;object-fit:cover}

/* Product systems gallery — full-height 4:3 equipment image surface. */
.home-redesign .hr-products .hr-product-deck { height: 640px; min-height: 640px; align-items: flex-start; }
.home-redesign .hr-products .hr-system-card,
.home-redesign .hr-products .hr-system-card[class*="hr-system-card--"] { min-height: 570px; }
.home-redesign .hr-products .hr-system-card__image { height: auto; aspect-ratio: 4 / 3; }
.home-redesign .hr-products .hr-system-card__image img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-height: 100%;
  padding: 0;
  object-fit: contain !important;
  object-position: center;
}
.home-redesign .hr-products .hr-system-card__body { padding: 15px 22px 14px; }
.home-redesign .hr-products .hr-system-card h3 { min-height: 47px; margin-bottom: 6px; }
.home-redesign .hr-products .hr-system-card__body > p { min-height: 42px; }
.home-redesign .hr-products .hr-system-card dl { margin-top: 12px; padding-block: 11px; }
.home-redesign .hr-products .hr-system-card__action { margin-top: 10px; }

@media (max-width: 1180px) {
  .home-redesign .hr-products .hr-product-deck { height: 620px; min-height: 620px; }
}

@media (max-width: 700px) {
  .home-redesign .hr-products .hr-product-deck { height: 610px; min-height: 610px; }
  .home-redesign .hr-products .hr-system-card,
  .home-redesign .hr-products .hr-system-card[class*="hr-system-card--"] { min-height: 550px; }
  .home-redesign .hr-products .hr-system-card__image { height: auto; aspect-ratio: 4 / 3; }
}
