@font-face {
  font-family: "Onest";
  src: url("../fonts/onest/Onest-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #171717;
  --ink-soft: #34312e;
  --muted: #625d57;
  --line: #ddd8d1;
  --paper: #f3f1ee;
  --paper-deep: #e7e1d8;
  --white: #ffffff;
  --coal: #141414;
  --coal-2: #20201f;
  --graphite: #1d1b1a;
  --graphite-deep: #151719;
  --graphite-blue: #536575;
  --red: #b5121b;
  --red-dark: #891019;
  --amber: #c58943;
  --sage: #647363;
  --blueprint: #536a7c;
  --clay: #8a4f3c;
  --container: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font-sans: "Onest", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --section-subtitle-size: clamp(18px, 1.65vw, 22px);
  --section-subtitle-line: 1.42;
  --diagram-line-fade: linear-gradient(90deg, rgba(52, 49, 46, .32) 0%, rgba(52, 49, 46, .18) 68%, rgba(52, 49, 46, 0) 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-weight: var(--weight-light);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-optical-sizing: auto;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  font-weight: var(--weight-regular);
}

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

:focus-visible {
  outline: 3px solid rgba(181, 18, 27, .35);
  outline-offset: 4px;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  inset-block-start: 0;
  z-index: 20;
  color: var(--ink);
  background: rgba(243, 241, 238, .88);
  border-bottom: 1px solid rgba(221, 216, 209, .8);
  backdrop-filter: blur(18px);
}

.topbar__inner {
  min-height: 72px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(52, 49, 46, .22);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .66);
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle:hover {
  border-color: rgba(181, 18, 27, .42);
  background: var(--white);
  transform: translateY(-1px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-weight: var(--weight-bold);
  letter-spacing: 0;
}

.brand__name {
  display: block;
  font-weight: var(--weight-bold);
  line-height: 1.1;
}

.brand__sub {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-regular);
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 20px);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: var(--weight-regular);
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}

.nav a:hover {
  color: var(--red);
  border-color: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
  font-weight: var(--weight-semibold);
  line-height: 1.15;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}

.button:hover {
  transform: translateY(-1px);
  background: var(--red-dark);
}

.button--small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 14px;
}

.button--light {
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
}

.button--light:hover {
  color: var(--white);
  background: var(--coal);
}

.topbar__phone {
  margin-left: auto;
  white-space: nowrap;
}

.phone-short {
  display: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(20, 20, 20, .38);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}

.site-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: min(328px, 88vw);
  padding: 28px 28px 34px;
  color: var(--ink);
  background: var(--white);
  border-right: 1px solid rgba(221, 216, 209, .9);
  box-shadow: 10px 0 24px rgba(20, 20, 20, .14);
  transform: translateX(-104%);
  transition: transform .26s var(--ease);
}

body.is-drawer-open {
  overflow: hidden;
}

body.is-drawer-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.is-drawer-open .site-drawer {
  transform: translateX(0);
}

.drawer-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border: 1px solid rgba(52, 49, 46, .22);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.drawer-section {
  margin-top: 30px;
}

.drawer-title {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.drawer-link {
  display: flex;
  align-items: center;
  min-height: 34px;
  color: var(--muted);
  font-size: 15px;
  font-weight: var(--weight-regular);
}

.drawer-link:hover {
  color: var(--red);
}

.drawer-link--strong {
  color: var(--ink);
  font-weight: var(--weight-semibold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--red);
  font-weight: var(--weight-semibold);
  border-bottom: 1px solid rgba(181, 18, 27, .35);
}

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

.hero {
  position: relative;
  min-height: clamp(720px, calc(100vh - 72px), 900px);
  display: block;
  padding: clamp(86px, 10vw, 128px) 0 34px;
  color: var(--white);
  background: var(--coal);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .65) 48%, rgba(0, 0, 0, .2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .16) 48%, rgba(0, 0, 0, .32) 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-real-home.jpg");
  background-size: cover;
  background-position: center 54%;
  transform: scale(1.01);
  animation: heroBreath 18s var(--ease) infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding: 0 0 clamp(36px, 5vw, 58px);
}

.section-note {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 15px;
  font-weight: var(--weight-semibold);
}

.no-break {
  white-space: nowrap;
}

.hero__note {
  color: #f4c489;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -.01em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

h1 {
  max-width: 1180px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: var(--weight-bold);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: var(--weight-bold);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: var(--weight-semibold);
}

p {
  text-wrap: pretty;
  hyphens: manual;
}

.hero__lead,
.lead {
  font-size: var(--section-subtitle-size);
  line-height: var(--section-subtitle-line);
}

.hero__lead {
  max-width: 760px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .88);
  font-weight: var(--weight-regular);
}

.hero__text {
  max-width: 650px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  font-weight: var(--weight-regular);
}

.hero__actions,
.section__actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__actions {
  margin-top: 30px;
}

.hero__micro,
.microcopy {
  color: var(--muted);
  font-size: 14px;
  font-weight: var(--weight-regular);
}

.hero__micro {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
}

.hero__proofs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 34px;
  background: rgba(255, 255, 255, .2);
  border-radius: 16px;
  overflow: hidden;
}

.proof-card {
  min-height: 150px;
  padding: 22px;
  background: rgba(17, 17, 17, .62);
  backdrop-filter: blur(10px);
}

.proof-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0;
}

.proof-card p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.section[id] {
  scroll-margin-top: 96px;
}

.section--light {
  background: var(--paper);
}

.section--split,
.section--blog {
  background: #fbfaf8;
}

.section--blog-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 76% 10%, rgba(83, 101, 117, .16), transparent 36%),
    linear-gradient(135deg, rgba(21, 23, 25, .76), rgba(29, 27, 26, .82)),
    url("../images/graphite-texture.jpg");
  background-color: var(--graphite-deep);
  background-size: auto, auto, 720px 720px;
  background-repeat: no-repeat, no-repeat, repeat;
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 76% 10%, rgba(83, 101, 117, .16), transparent 36%),
    linear-gradient(135deg, rgba(21, 23, 25, .76), rgba(29, 27, 26, .82)),
    url("../images/graphite-texture.jpg");
  background-color: var(--graphite-deep);
  background-size: auto, auto, 720px 720px;
  background-repeat: no-repeat, no-repeat, repeat;
}

.section--dark .section-note,
.section--dark .microcopy {
  color: rgba(244, 242, 239, .8);
}

.section--dark p {
  color: rgba(255, 255, 255, .78);
  font-weight: var(--weight-regular);
}

.section__grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: start;
}

.section__intro {
  position: sticky;
  top: 104px;
}

.section__intro p,
.section__header p,
.section__footer p,
.content-stack p,
.final-copy p {
  max-width: 720px;
  color: var(--muted);
}

.section--light .section-note,
.section--designer .section-note,
.section--split .section-note,
.section--blog .section-note {
  color: var(--red);
}

.section--blog-dark .section-note {
  color: rgba(244, 242, 239, .8);
}

.section--blog-dark .section__header h2 {
  color: var(--white);
}

.section--blog-dark .section__header > p:not(.section-note) {
  color: rgba(255, 255, 255, .76);
}

.section__header {
  max-width: 1080px;
  margin-bottom: 34px;
}

.section__header--wide {
  max-width: 1120px;
  margin-bottom: clamp(28px, 4.8vw, 52px);
}

.section__header--wide h2 {
  max-width: 1120px;
}

.section__header--wide .lead,
.section__header--wide p:not(.section-note) {
  max-width: 820px;
}

.section__header > p:not(.section-note),
.section__header .lead {
  font-size: var(--section-subtitle-size);
  line-height: var(--section-subtitle-line);
  font-weight: var(--weight-light);
}

.section__header--dark h2 {
  color: var(--white);
}

.section__header--dark .lead,
.section__header--dark p:not(.section-note) {
  color: rgba(255, 255, 255, .84);
  font-weight: var(--weight-regular);
}

.final-section .section__header--dark .section-note {
  color: rgba(244, 242, 239, .8);
}

.section__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.section__actions {
  margin-top: 26px;
}

.system-card,
.designer-card,
.factor-card,
.blog-card,
.zone-fallback article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .68);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.system-card:hover,
.designer-card:hover,
.factor-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(181, 18, 27, .35);
  background: var(--white);
}

.two-col,
.light-layout,
.designer-layout,
.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.two-col--after-heading,
.light-layout--after-heading,
.designer-layout--after-heading,
.final-layout--after-heading {
  align-items: start;
}

.media-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--coal);
}

.media-panel--plan {
  background:
    linear-gradient(135deg, rgba(20, 20, 20, .96), rgba(73, 63, 53, .78)),
    url("../images/drive-img-5123.jpg");
  background-size: cover;
  background-position: center;
}

.plan-lines {
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255, 255, 255, .32);
}

.plan-lines span {
  position: absolute;
  background: rgba(255, 255, 255, .35);
}

.plan-lines span:nth-child(1) {
  width: 1px;
  height: 70%;
  left: 33%;
  top: 12%;
}

.plan-lines span:nth-child(2) {
  width: 58%;
  height: 1px;
  left: 18%;
  top: 42%;
}

.plan-lines span:nth-child(3) {
  width: 1px;
  height: 38%;
  left: 68%;
  top: 42%;
}

.plan-lines span:nth-child(4) {
  width: 34%;
  height: 1px;
  left: 34%;
  top: 72%;
}

.media-panel__caption,
.light-stage__rail {
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
}

.media-panel__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
}

.media-panel__caption strong,
.media-panel__caption span {
  display: block;
}

.media-panel__caption span {
  color: var(--muted);
}

.content-stack .lead,
.final-copy .lead {
  color: var(--ink-soft);
}

.step-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.step-list article {
  padding: 18px;
  border-radius: 14px;
  background: var(--white);
}

.step-list b,
.step-list span {
  display: block;
}

.step-list span {
  margin-top: 4px;
  color: var(--muted);
}

.light-layout {
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
}

.light-layout--after-heading {
  grid-template-columns: minmax(280px, .66fr) minmax(0, 1.34fr);
}

.light-stage {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 560px;
  background: #000;
}

.light-stage img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.light-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .62), transparent 58%);
}

.light-stage__rail {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: rgba(20, 20, 20, .68);
  backdrop-filter: blur(12px);
}

.light-stage__rail span {
  padding: 9px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .12);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.lighting-map {
  --lighting-photo-ratio: 1672 / 941;
  position: relative;
  width: 100vw;
  min-height: 0;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(38px, 5vw, 70px);
  overflow: hidden;
  border-radius: 0;
  background: var(--graphite-deep);
  isolation: isolate;
}

#light {
  padding-bottom: 0;
}

.lighting-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--lighting-photo-ratio);
  overflow: hidden;
}

.lighting-map__frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lighting-map__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 34%, rgba(12, 14, 16, .24), transparent 24%),
    radial-gradient(circle at 67% 36%, rgba(12, 14, 16, .28), transparent 22%),
    linear-gradient(90deg, rgba(12, 14, 16, .44), rgba(12, 14, 16, .16) 48%, rgba(12, 14, 16, .32)),
    linear-gradient(0deg, rgba(12, 14, 16, .5), rgba(12, 14, 16, .08) 62%, rgba(12, 14, 16, .2));
}

.lighting-map__annotations {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.lighting-annotation {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 32px;
  height: 32px;
  color: var(--white);
  transform: translate(-50%, -50%);
}

.lighting-annotation__dot {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: rgba(14, 16, 18, .36);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .08);
}

.lighting-annotation__dot::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 16px rgba(255, 255, 255, .9);
}

.lighting-annotation__line {
  position: absolute;
  top: 50%;
  width: var(--line, 110px);
  height: 1px;
}

.lighting-annotation--right .lighting-annotation__line {
  left: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .74) 0%, rgba(255, 255, 255, .38) 58%, rgba(255, 255, 255, 0) 100%);
}

.lighting-annotation--left .lighting-annotation__line {
  right: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .38) 42%, rgba(255, 255, 255, .74) 100%);
}

.lighting-annotation__copy {
  position: absolute;
  top: 50%;
  display: block;
  width: min(270px, 21vw);
  min-height: 1px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .78);
}

.lighting-annotation--right .lighting-annotation__copy {
  left: calc(32px + var(--line, 110px) + 14px);
}

.lighting-annotation--left .lighting-annotation__copy {
  right: calc(32px + var(--line, 110px) + 14px);
  text-align: right;
}

.lighting-annotation__copy strong {
  position: absolute;
  right: 0;
  bottom: 11px;
  left: 0;
  display: block;
  font-size: clamp(18px, 1.5vw, 25px);
  font-weight: var(--weight-bold);
  line-height: .96;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.lighting-annotation__copy small {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(12px, .95vw, 15px);
  line-height: 1.32;
}

.lighting-mobile-scenes {
  display: none;
}

.climate-section {
  padding-bottom: clamp(76px, 8vw, 116px);
}

.climate-section .section__header {
  margin-bottom: clamp(34px, 5vw, 66px);
}

.climate-map {
  position: relative;
  width: 100vw;
  min-height: clamp(700px, 62vw, 860px);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  color: var(--white);
  background: var(--graphite-deep);
  isolation: isolate;
}

.climate-map > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.climate-map__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 86% 84%, rgba(181, 18, 27, .22), transparent 22%),
    linear-gradient(90deg, rgba(12, 14, 16, .7) 0%, rgba(12, 14, 16, .45) 28%, rgba(12, 14, 16, .24) 58%, rgba(12, 14, 16, .62) 100%),
    linear-gradient(0deg, rgba(12, 14, 16, .66) 0%, rgba(12, 14, 16, .22) 45%, rgba(12, 14, 16, .5) 100%);
}

.photo-callouts,
.climate-callouts {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.photo-callout,
.climate-callout {
  --copy-left: 40%;
  --copy-top: 14%;
  --copy-width: 400px;
  --headline-rule-width: 320px;
  --connector-left: var(--headline-rule-width);
  --connector-width: 150px;
  --connector-rotate: 42deg;
  --dot-x: 430px;
  --dot-y: 106px;
  position: absolute;
  inset: 0;
  color: var(--white);
  pointer-events: none;
}

.lighting-callout--accent {
  --copy-left: 19%;
  --copy-top: 22%;
  --copy-width: 320px;
  --headline-rule-width: 250px;
  --connector-left: 0px;
  --connector-width: 46px;
  --connector-rotate: -154deg;
  --dot-x: -46px;
  --dot-y: -25px;
}

.lighting-callout--task {
  --copy-left: 38%;
  --copy-top: 54%;
  --copy-width: 310px;
  --headline-rule-width: 220px;
  --connector-left: 0px;
  --connector-width: 112px;
  --connector-rotate: -123deg;
  --dot-x: -72px;
  --dot-y: -112px;
}

.lighting-callout--general {
  --copy-left: 48%;
  --copy-top: 15%;
  --copy-width: 300px;
  --headline-rule-width: 220px;
  --connector-left: 0px;
  --connector-width: 44px;
  --connector-rotate: -128deg;
  --dot-x: -30px;
  --dot-y: -42px;
}

.lighting-callout--ambient {
  --copy-left: 69%;
  --copy-top: 37%;
  --copy-width: 320px;
  --headline-rule-width: 230px;
  --connector-left: 0px;
  --connector-width: 68px;
  --connector-rotate: -130deg;
  --dot-x: -52px;
  --dot-y: -64px;
}

.climate-callout--zoning {
  --copy-left: 39%;
  --copy-top: 9%;
  --copy-width: 390px;
  --headline-rule-width: 342px;
  --connector-left: var(--headline-rule-width);
  --connector-width: 122px;
  --connector-rotate: 42deg;
  --dot-x: 456px;
  --dot-y: 104px;
}

.climate-callout--modes {
  --copy-left: 39%;
  --copy-top: 40.5%;
  --copy-width: 410px;
  --headline-rule-width: 340px;
  --connector-left: 0px;
  --connector-width: 136px;
  --connector-rotate: 137deg;
  --dot-x: -124px;
  --dot-y: 114px;
}

.climate-callout--energy {
  --copy-left: 39%;
  --copy-top: 64.5%;
  --copy-width: 420px;
  --headline-rule-width: 356px;
  --connector-left: var(--headline-rule-width);
  --connector-width: 118px;
  --connector-rotate: -34deg;
  --dot-x: 480px;
  --dot-y: -82px;
}

.photo-callout__dot,
.climate-callout__dot {
  position: absolute;
  left: var(--dot-x);
  top: calc(100% + var(--dot-y));
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .64), rgba(181, 18, 27, .92) 42%, rgba(137, 16, 25, .86) 68%, rgba(137, 16, 25, .56) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .18),
    0 0 32px rgba(181, 18, 27, .48),
    0 22px 44px rgba(0, 0, 0, .28);
  font-size: 17px;
  font-weight: var(--weight-bold);
  letter-spacing: -.01em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.photo-callout__dot::before,
.climate-callout__dot::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: inherit;
}

.photo-callout__dot::after,
.climate-callout__dot::after {
  content: none;
}

.photo-callout__dot span,
.climate-callout__dot span {
  position: relative;
  z-index: 1;
}

.photo-callout__dot span:empty {
  display: none;
}

.lighting-callout .photo-callout__dot {
  width: 42px;
  height: 42px;
  border-color: rgba(255, 255, 255, .86);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .98) 0 8%, rgba(255, 255, 255, .22) 18%, rgba(12, 14, 16, .38) 54%, rgba(255, 255, 255, .1) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .16),
    0 0 18px rgba(255, 255, 255, .38),
    0 14px 28px rgba(0, 0, 0, .26);
}

.lighting-callout .photo-callout__dot::before {
  inset: 6px;
  border-color: rgba(255, 255, 255, .28);
}

.photo-callout__copy,
.climate-callout__copy {
  position: absolute;
  left: var(--copy-left);
  top: var(--copy-top);
  width: var(--copy-width);
  max-width: min(var(--copy-width), 34vw);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .84);
}

.climate-callout__number {
  display: none;
  align-items: center;
  min-height: 18px;
  margin-bottom: 7px;
  color: #f0bd7b;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: .04em;
}

.photo-callout h3,
.climate-callout h3 {
  position: relative;
  display: block;
  margin: 0;
  padding-bottom: 13px;
  color: var(--white);
  font-size: clamp(22px, 1.85vw, 30px);
  line-height: .95;
  font-weight: var(--weight-bold);
  letter-spacing: .016em;
  text-transform: uppercase;
}

.photo-callout h3::before,
.photo-callout h3::after,
.climate-callout h3::before,
.climate-callout h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  transform-origin: left center;
}

.photo-callout h3::after,
.climate-callout h3::after {
  left: 0;
  width: min(var(--headline-rule-width), 100%);
  background: rgba(255, 255, 255, .68);
}

.photo-callout h3::before,
.climate-callout h3::before {
  left: var(--connector-left);
  width: var(--connector-width);
  background: linear-gradient(90deg, rgba(255, 255, 255, .66) 0%, rgba(255, 255, 255, .58) 72%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(var(--connector-rotate));
}

.photo-callout p,
.climate-callout p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(13px, .92vw, 15px);
  line-height: 1.27;
  font-weight: var(--weight-regular);
}

.climate-callout__rule,
.climate-callout__diagonal {
  display: none;
}

.climate-summary {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  margin-top: clamp(42px, 5.5vw, 72px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.climate-summary h3 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  font-weight: var(--weight-bold);
}

.climate-summary p {
  max-width: 730px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
  font-weight: var(--weight-regular);
}

.security-section {
  padding-bottom: clamp(74px, 8vw, 118px);
}

.security-map {
  --security-photo-ratio: 1280 / 960;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(38px, 5vw, 70px);
  color: var(--white);
  background: var(--graphite-deep);
  overflow: hidden;
}

.security-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--security-photo-ratio);
  min-height: clamp(720px, 75vw, 920px);
  overflow: hidden;
}

.security-map__frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.security-map__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 42%, rgba(181, 18, 27, .14), transparent 24%),
    linear-gradient(90deg, rgba(12, 14, 16, .76) 0%, rgba(12, 14, 16, .56) 42%, rgba(12, 14, 16, .36) 70%, rgba(12, 14, 16, .58) 100%),
    linear-gradient(0deg, rgba(12, 14, 16, .74) 0%, rgba(12, 14, 16, .18) 54%, rgba(12, 14, 16, .42) 100%);
}

.security-map__callouts {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.security-callout {
  --copy-left: 43%;
  --copy-top: 16%;
  --copy-width: 430px;
  --headline-rule-width: 360px;
  --connector-left: var(--headline-rule-width);
  --connector-width: 120px;
  --connector-rotate: 40deg;
  --dot-x: 430px;
  --dot-y: 94px;
}

.security-callout--leak {
  --copy-top: 51%;
  --connector-left: 0px;
  --connector-width: 214px;
  --connector-rotate: 150deg;
  --dot-x: -184px;
  --dot-y: 114px;
}

.security-callout--smoke {
  --copy-top: 19%;
  --connector-left: 0px;
  --connector-width: 268px;
  --connector-rotate: 143deg;
  --dot-x: -214px;
  --dot-y: 148px;
}

.security-callout--motion {
  --copy-top: 35%;
  --connector-left: var(--headline-rule-width);
  --connector-width: 190px;
  --connector-rotate: -32deg;
  --dot-x: 522px;
  --dot-y: -124px;
}

.security-callout--opening {
  --copy-top: 67%;
  --connector-left: var(--headline-rule-width);
  --connector-width: 210px;
  --connector-rotate: -36deg;
  --dot-x: 532px;
  --dot-y: -122px;
}

.security-callout .photo-callout__copy {
  max-width: min(var(--copy-width), 40vw);
}

.security-callout h3 {
  font-size: clamp(21px, 1.7vw, 28px);
  letter-spacing: .012em;
}

.security-callout p {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(13px, .88vw, 15px);
}

.security-callout__dot {
  position: absolute;
  left: var(--dot-x);
  top: calc(100% + var(--dot-y));
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .2), rgba(12, 14, 16, .44) 48%, rgba(181, 18, 27, .72) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .18),
    0 0 26px rgba(255, 255, 255, .26),
    0 18px 36px rgba(0, 0, 0, .3);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.security-callout__dot::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: inherit;
}

.security-callout__dot svg {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-callout__dot--smoke svg path:first-child {
  fill: rgba(255, 255, 255, .12);
}

.security-response {
  display: grid;
  grid-template-columns: minmax(300px, .58fr) minmax(0, 1.42fr);
  gap: clamp(36px, 5vw, 64px);
  margin-top: clamp(54px, 7vw, 90px);
  padding-top: clamp(34px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.security-response__intro {
  max-width: 520px;
}

.security-response__intro .section-note {
  color: rgba(244, 242, 239, .78);
}

.security-response h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.02;
  font-weight: var(--weight-bold);
}

.security-response__intro p:not(.section-note) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.48;
}

.security-response__final {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.security-modes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 62px) clamp(32px, 4vw, 56px);
}

.security-mode {
  position: relative;
  min-height: 178px;
  padding: 48px 0 0 82px;
}

.security-mode > span {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 50%;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: var(--weight-bold);
}

.security-mode h4 {
  position: relative;
  max-width: 330px;
  margin: 0 0 12px;
  padding-bottom: 14px;
  color: var(--white);
  font-size: clamp(22px, 1.85vw, 28px);
  line-height: 1;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.security-mode h4::before,
.security-mode h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  pointer-events: none;
}

.security-mode h4::before {
  left: -54px;
  width: 54px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .52));
  transform: rotate(51deg);
  transform-origin: right center;
}

.security-mode h4::after {
  left: 0;
  width: min(100%, 306px);
  background: rgba(255, 255, 255, .42);
}

.security-mode p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 16px;
  line-height: 1.46;
}

.phasing-content {
  min-width: 0;
  margin-top: clamp(42px, 6vw, 76px);
}

.phasing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 34px);
}

.phasing-card {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border-radius: 8px;
  transition:
    transform .32s cubic-bezier(.22, 1, .36, 1),
    box-shadow .32s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.phasing-card--now {
  color: var(--white);
  background: var(--graphite-deep);
}

.phasing-card--later {
  color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, .12);
}

@media (hover: hover) and (pointer: fine) {
  .phasing-card:hover {
    z-index: 1;
    transform: translateY(-10px);
  }

  .phasing-card--now:hover {
    box-shadow: 0 0 34px rgba(181, 18, 27, .2);
  }

  .phasing-card--later:hover {
    box-shadow:
      inset 0 0 0 1px rgba(181, 18, 27, .26),
      0 0 34px rgba(181, 18, 27, .16);
  }
}

.phasing-card__label {
  margin: 0 0 26px;
  color: var(--red);
  font-size: 13px;
  font-weight: var(--weight-bold);
}

.phasing-card--now .phasing-card__label {
  color: #ff5a61;
}

.phasing-card h3 {
  max-width: 420px;
  margin: 0 0 16px;
  color: inherit;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.phasing-card > p:not(.phasing-card__label) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.phasing-card--now > p:not(.phasing-card__label) {
  color: rgba(255, 255, 255, .76);
  font-weight: var(--weight-regular);
}

.phasing-card small {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 23, 23, .12);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.phasing-card--now small {
  color: rgba(255, 255, 255, .6);
  border-top-color: rgba(255, 255, 255, .16);
  font-weight: var(--weight-regular);
}

.phasing-content .section__actions {
  margin-top: 26px;
}

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

.system-card,
.designer-card,
.factor-card {
  min-height: 210px;
  padding: 24px;
}

.system-card:nth-child(2),
.factor-card:nth-child(2) {
  background: rgba(100, 115, 99, .10);
}

.system-card:nth-child(3),
.factor-card:nth-child(3) {
  background: rgba(83, 106, 124, .10);
}

.system-card:nth-child(4),
.factor-card:nth-child(4) {
  background: rgba(138, 79, 60, .10);
}

.system-card p,
.designer-card p,
.factor-card p {
  margin: 0;
  color: var(--muted);
}

.section--map {
  padding-bottom: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 0%, rgba(83, 101, 117, .22), transparent 38%),
    linear-gradient(135deg, rgba(19, 22, 25, .74), rgba(29, 27, 26, .82)),
    url("../images/graphite-texture.jpg");
  background-color: var(--graphite-deep);
  background-size: auto, auto, 720px 720px;
  background-repeat: no-repeat, no-repeat, repeat;
}

.section--map .section-note {
  color: rgba(244, 242, 239, .8);
}

.section--map .section__header p {
  color: rgba(255, 255, 255, .74);
}

.zone-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
  gap: 28px;
  align-items: stretch;
}

.zone-map {
  position: relative;
  min-height: 560px;
  border-radius: 16px;
  overflow: hidden;
  background: #1e1d1c;
}

.zone-map img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: .88;
}

.zone-point {
  position: absolute;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 999px;
  background: var(--red);
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease);
}

.zone-point::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  background: rgba(181, 18, 27, .18);
  z-index: -1;
}

.zone-point:hover,
.zone-point.is-active {
  transform: scale(1.16);
  background: var(--amber);
}

.zone-point--living { left: 47%; top: 43%; }
.zone-point--bedroom { left: 24%; top: 32%; }
.zone-point--bathroom { left: 72%; top: 34%; }
.zone-point--kids { left: 30%; top: 68%; }
.zone-point--entry { left: 67%; top: 68%; }
.zone-point--outdoor { left: 84%; top: 54%; }

.zone-control {
  padding: 26px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--paper);
}

.zone-control > p {
  color: var(--muted);
}

.zone-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.zone-tab {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
  cursor: pointer;
}

.zone-tab:hover,
.zone-tab.is-active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.zone-card {
  padding: 24px;
  border-radius: 16px;
  color: var(--white);
  background: var(--coal);
}

.zone-card__label {
  margin-bottom: 8px;
  color: #f1bd82;
  font-weight: var(--weight-bold);
}

.zone-card p {
  color: rgba(255, 255, 255, .78);
}

.zone-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.zone-card li {
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, .82);
}

.zone-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--amber);
}

.zone-fallback {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.js .zone-fallback {
  display: none;
}

.zone-fallback article {
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
}

.designer-layout {
  align-items: start;
}

.designer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.section--designer {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78)),
    url("../images/drive-img-5123.jpg");
  background-size: cover;
  background-position: center;
}

.designer-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 64px);
  border-top: 1px solid rgba(20, 20, 20, .24);
  border-bottom: 1px solid rgba(20, 20, 20, .16);
}

.designer-principle {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px) clamp(18px, 2.4vw, 32px);
}

.designer-principle + .designer-principle {
  border-left: 1px solid rgba(20, 20, 20, .16);
}

.designer-principle h3 {
  margin: 0 0 14px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.08;
}

.designer-principle p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.designer-action {
  margin-top: 28px;
}

.systems-action {
  margin-top: clamp(28px, 4vw, 48px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(48px, 5vw, 72px) clamp(26px, 4vw, 52px);
  margin-top: clamp(44px, 6vw, 76px);
}

.process-item {
  position: relative;
  min-width: 0;
  padding: 42px 8px 0 0;
}

.process-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--diagram-line-fade);
}

.process-item__number {
  position: absolute;
  top: -21px;
  left: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--red);
  background: var(--paper);
  border: 1px solid rgba(181, 18, 27, .38);
  border-radius: 50%;
  box-shadow:
    0 0 0 5px var(--paper),
    0 0 0 6px rgba(181, 18, 27, .14);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: .04em;
}

.process-item h3 {
  max-width: 290px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: var(--weight-semibold);
  line-height: 1.08;
}

.process-cost {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(58px, 8vw, 104px);
  padding: clamp(30px, 4.5vw, 52px) 0 0;
  border-top: 1px solid rgba(20, 20, 20, .24);
}

.process-cost__body {
  grid-column: 2;
  display: grid;
  justify-items: start;
  gap: 24px;
}

.process-cost__body p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: var(--weight-light);
  line-height: 1.52;
  text-wrap: pretty;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--line);
}

.timeline__item {
  min-height: 260px;
  padding: 22px;
  background: var(--white);
}

.timeline__item span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coal);
  font-weight: var(--weight-bold);
}

.timeline__item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.blog-carousel__button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(20, 20, 20, .18);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  transition: color .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}

.blog-carousel__button:hover,
.blog-carousel__button:focus-visible {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.blog-carousel__button:focus-visible {
  outline: 2px solid rgba(181, 18, 27, .35);
  outline-offset: 4px;
}

.section--blog-dark .blog-carousel__button {
  border-color: rgba(255, 255, 255, .24);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.section--blog-dark .blog-carousel__button:hover,
.section--blog-dark .blog-carousel__button:focus-visible {
  border-color: rgba(181, 18, 27, .92);
  background: var(--red);
}

.blog-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: clamp(12px, 2vw, 26px);
  align-items: center;
  margin-top: clamp(36px, 5vw, 64px);
}

.blog-grid {
  --blog-gap: clamp(22px, 3vw, 38px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (2 * var(--blog-gap))) / 3);
  align-items: stretch;
  gap: var(--blog-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 18px;
}

.blog-grid::-webkit-scrollbar {
  display: none;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  scroll-snap-align: start;
}

.blog-card:hover {
  transform: none;
  border-color: transparent;
  background: transparent;
}

.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: var(--coal);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.035);
}

.blog-card__format {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: var(--weight-bold);
}

.blog-card__body {
  display: grid;
  flex: 1;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  padding-top: 20px;
}

.blog-card time {
  color: var(--muted);
  font-size: 13px;
}

.blog-card h3 {
  margin: 10px 0 12px;
  padding: 0;
  min-height: calc(3 * 1.12em);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.12;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: color .18s var(--ease);
}

.blog-card:hover h3 {
  color: var(--red);
}

.blog-card p {
  margin: 0;
  padding: 0;
  min-height: calc(3 * 1.5em);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-card__link {
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 17px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}

.blog-card p + .blog-card__link {
  margin-top: 22px;
}

.blog-card:hover .blog-card__link {
  color: var(--red);
  background: transparent;
}

.blog-card:focus-visible {
  outline: 2px solid rgba(181, 18, 27, .55);
  outline-offset: 6px;
}

.section--blog-dark .blog-grid {
  margin: -64px -52px -70px;
  padding: 64px 52px 74px;
  scroll-padding-inline: 52px;
}

.section--blog-dark .blog-card {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 18, 20, .96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
  isolation: isolate;
  transform-origin: center bottom;
  transition:
    transform .34s cubic-bezier(.19, 1, .22, 1),
    border-color .34s var(--ease),
    box-shadow .34s var(--ease),
    background .34s var(--ease);
}

.section--blog-dark .blog-card::before,
.section--blog-dark .blog-card::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  z-index: 2;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(244, 242, 239, .82), rgba(181, 18, 27, .9), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity .34s var(--ease), filter .34s var(--ease);
}

.section--blog-dark .blog-card::before {
  left: -2px;
  filter: drop-shadow(-14px 0 24px rgba(181, 18, 27, .42));
}

.section--blog-dark .blog-card::after {
  right: -2px;
  filter: drop-shadow(14px 0 24px rgba(181, 18, 27, .42));
}

.section--blog-dark .blog-card:hover,
.section--blog-dark .blog-card:focus-visible {
  z-index: 3;
  transform: translateY(-12px) scale(1.018);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(17, 18, 20, .98);
  box-shadow:
    0 34px 78px rgba(0, 0, 0, .46),
    -20px 0 46px rgba(181, 18, 27, .24),
    20px 0 46px rgba(181, 18, 27, .24),
    0 0 28px rgba(255, 255, 255, .08);
}

.section--blog-dark .blog-card:hover::before,
.section--blog-dark .blog-card:hover::after,
.section--blog-dark .blog-card:focus-visible::before,
.section--blog-dark .blog-card:focus-visible::after {
  opacity: 1;
}

.section--blog-dark .blog-card__media {
  border-radius: 8px 8px 0 0;
}

.section--blog-dark .blog-card__media img {
  filter: brightness(.84) contrast(1.04) saturate(.94);
  transition: filter .34s var(--ease);
}

.section--blog-dark .blog-card:hover .blog-card__media img,
.section--blog-dark .blog-card:focus-visible .blog-card__media img {
  transform: none;
  filter: brightness(.98) contrast(1.06) saturate(1);
}

.section--blog-dark .blog-card__format {
  color: var(--white);
  background: rgba(181, 18, 27, .92);
}

.section--blog-dark .blog-card__body {
  padding: 20px clamp(18px, 2vw, 24px) clamp(20px, 2.2vw, 26px);
}

.section--blog-dark .blog-card time {
  color: rgba(255, 255, 255, .68);
}

.section--blog-dark .blog-card h3 {
  color: var(--white);
}

.section--blog-dark .blog-card:hover h3,
.section--blog-dark .blog-card:focus-visible h3 {
  color: var(--white);
}

.section--blog-dark .blog-card p {
  color: rgba(255, 255, 255, .76);
}

.section--blog-dark .blog-card__link {
  border-color: rgba(255, 255, 255, .24);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.section--blog-dark .blog-card:hover .blog-card__link,
.section--blog-dark .blog-card:focus-visible .blog-card__link {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.final-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 12, 14, .96) 0%, rgba(11, 12, 14, .84) 42%, rgba(11, 12, 14, .54) 100%),
    linear-gradient(0deg, rgba(11, 12, 14, .82) 0%, rgba(11, 12, 14, .18) 46%, rgba(11, 12, 14, .64) 100%),
    url("../images/contact-project-planning-kaliningrad.jpg");
  background-size: cover;
  background-position: center 56%;
}

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

.final-layout {
  align-items: start;
}

.final-layout--after-heading {
  margin-top: clamp(22px, 3vw, 38px);
}

.final-copy {
  max-width: 620px;
  padding-top: 6px;
}

.final-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.48;
}

.final-copy .lead {
  color: rgba(255, 255, 255, .9);
}

.final-copy__timing {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9) !important;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  align-self: start;
  margin-top: -6px;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 19, 22, .94), rgba(18, 19, 22, .82)),
    rgba(18, 19, 22, .88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(22px, 3vw, 32px);
  left: clamp(22px, 3vw, 32px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  color-scheme: dark;
  transition: border-color .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease);
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 0 0 3px rgba(181, 18, 27, .24);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .48);
  opacity: 1;
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  color: rgba(255, 255, 255, .54);
}

.form-checkbox {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  padding-top: 2px;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.contact-form .form-checkbox span {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.35;
}

.form-status {
  min-height: 22px;
  margin: 0;
}

.final-section .form-actions {
  gap: 12px;
}

.final-section .contact-form .button {
  min-height: 46px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
}

.final-section .contact-form .button--light {
  border-color: rgba(255, 255, 255, .22);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.final-section .contact-form .button--light:hover,
.final-section .contact-form .button--light:focus-visible {
  border-color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .14);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.js .section--blog-dark .blog-card.reveal:hover,
.js .section--blog-dark .blog-card.reveal:focus-visible {
  transform: translateY(-12px) scale(1.018);
}

@keyframes heroBreath {
  from { transform: scale(1.02); }
  to { transform: scale(1.07); }
}

/* Compatibility for the existing child prototype pages. */
.page {
  min-height: 100vh;
}

.subhero {
  padding: 88px 0;
  background: #fbfaf8;
}

.subhero__grid,
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: var(--weight-semibold);
}

.hero-visual,
.image-frame,
.scene-panel__image {
  overflow: hidden;
  border-radius: 16px;
  background: var(--coal);
}

.hero-visual img,
.image-frame img,
.scene-panel__image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-visual__note {
  padding: 16px;
  background: var(--white);
}

.hero-visual__note span,
.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.interactive,
.scene-panel {
  display: grid;
  gap: 18px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.tab-button[aria-selected="true"],
.tab-button.is-active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.scene-panel {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  align-items: stretch;
}

.scene-panel__content {
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
}

.scenario-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .lighting-callout--accent {
    --copy-width: 220px;
    --headline-rule-width: 185px;
    --connector-width: 36px;
    --connector-rotate: -155deg;
    --dot-x: -36px;
    --dot-y: -25px;
  }

  .lighting-callout--general {
    --copy-left: 48%;
    --copy-width: 260px;
    --headline-rule-width: 185px;
    --connector-width: 38px;
    --connector-rotate: -130deg;
    --dot-x: -30px;
    --dot-y: -39px;
  }

  .lighting-callout--task {
    --copy-left: 38%;
    --copy-top: 55%;
    --copy-width: 280px;
    --headline-rule-width: 200px;
    --connector-width: 90px;
    --connector-rotate: -122deg;
    --dot-x: -58px;
    --dot-y: -94px;
  }

  .lighting-callout--ambient {
    --copy-left: 68%;
    --copy-top: 38%;
    --copy-width: 260px;
    --headline-rule-width: 180px;
    --connector-width: 48px;
    --connector-rotate: -114deg;
    --dot-x: -29px;
    --dot-y: -58px;
  }

  .security-callout--leak,
  .security-callout--smoke,
  .security-callout--motion,
  .security-callout--opening {
    --copy-left: 39%;
    --copy-width: 360px;
    --headline-rule-width: 300px;
  }

  .security-callout--leak {
    --connector-width: 176px;
    --dot-x: -150px;
    --dot-y: 92px;
  }

  .security-callout--smoke {
    --connector-width: 206px;
    --dot-x: -164px;
    --dot-y: 116px;
  }

  .security-callout--motion {
    --connector-width: 154px;
    --dot-x: 426px;
    --dot-y: -108px;
  }

  .security-callout--opening {
    --connector-width: 170px;
    --dot-x: 430px;
    --dot-y: -104px;
  }

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

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

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

  .designer-principle:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(20, 20, 20, .16);
  }

  .designer-principle:nth-child(4) {
    border-top: 1px solid rgba(20, 20, 20, .16);
  }

  .section__grid,
  .two-col,
  .light-layout,
  .designer-layout,
  .final-layout,
  .subhero__grid,
  .hero__grid,
  .scene-panel {
    grid-template-columns: 1fr;
  }

  .section__intro {
    position: static;
  }

  .blog-grid {
    grid-auto-columns: calc((100% - var(--blog-gap)) / 2);
  }

  .final-copy {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .security-map__frame {
    aspect-ratio: auto;
    min-height: clamp(860px, 116vw, 980px);
  }

  .security-map__frame > img {
    object-position: center;
  }

  .security-map__shade {
    background:
      linear-gradient(180deg, rgba(12, 14, 16, .66) 0%, rgba(12, 14, 16, .28) 34%, rgba(12, 14, 16, .88) 100%),
      linear-gradient(90deg, rgba(12, 14, 16, .72) 0%, rgba(12, 14, 16, .18) 48%, rgba(12, 14, 16, .64) 100%);
  }

  .security-callout--leak,
  .security-callout--smoke,
  .security-callout--motion,
  .security-callout--opening {
    --copy-left: 28px;
    --copy-width: 268px;
    --headline-rule-width: 220px;
    --connector-left: var(--headline-rule-width);
    --connector-width: 64px;
    --connector-rotate: 34deg;
    --dot-x: 294px;
    --dot-y: 52px;
  }

  .security-callout--leak {
    --copy-top: 55%;
  }

  .security-callout--smoke {
    --copy-top: 12%;
  }

  .security-callout--motion {
    --copy-top: 34%;
  }

  .security-callout--opening {
    --copy-top: 76%;
    --connector-rotate: -34deg;
    --dot-y: -48px;
  }

  .security-callout .photo-callout__copy {
    max-width: calc(100vw - 56px);
  }

  .security-callout h3 {
    font-size: 21px;
    line-height: .98;
  }

  .security-callout p {
    font-size: 13px;
    line-height: 1.28;
  }

  .security-callout__dot {
    width: 48px;
    height: 48px;
  }

  .security-callout__dot svg {
    width: 23px;
    height: 23px;
  }

  .security-response {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .security-response__intro {
    max-width: 760px;
  }

  .lighting-map {
    min-height: 0;
    height: auto;
    overflow: hidden;
  }

  .lighting-map__frame {
    display: none;
  }

  .lighting-mobile-scenes {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .lighting-mobile-scenes::-webkit-scrollbar {
    display: none;
  }

  .lighting-mobile-slide {
    position: relative;
    flex: 0 0 100%;
    min-height: clamp(620px, 158vw, 780px);
    overflow: hidden;
    scroll-snap-align: start;
    color: var(--white);
    background: var(--graphite-deep);
  }

  .lighting-mobile-slide > img {
    position: absolute;
    inset: 0;
    left: calc(var(--step) * -100%);
    width: 300%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: none;
  }

  .lighting-mobile-slide__shade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(12, 14, 16, .22) 0%, rgba(12, 14, 16, .08) 34%, rgba(12, 14, 16, .78) 100%),
      linear-gradient(90deg, rgba(12, 14, 16, .44) 0%, rgba(12, 14, 16, .08) 45%, rgba(12, 14, 16, .34) 100%);
  }

  .lighting-mobile-slide__pin {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
  }

  .lighting-mobile-slide__dot {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 999px;
    background: rgba(10, 12, 14, .32);
    box-shadow:
      0 0 0 7px rgba(255, 255, 255, .1),
      0 0 24px rgba(255, 255, 255, .42);
  }

  .lighting-mobile-slide__dot::after {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: inherit;
    background: var(--white);
    box-shadow: 0 0 18px rgba(255, 255, 255, .9);
  }

  .lighting-mobile-slide__line {
    position: absolute;
    top: 50%;
    left: 30px;
    width: var(--line, 104px);
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .76) 0%, rgba(255, 255, 255, .42) 58%, rgba(255, 255, 255, 0) 100%);
  }

  .lighting-mobile-slide__pin--left .lighting-mobile-slide__line {
    right: 30px;
    left: auto;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .42) 42%, rgba(255, 255, 255, .76) 100%);
  }

  .lighting-mobile-slide__copy {
    position: absolute;
    top: 50%;
    left: calc(30px + var(--line, 104px) + 14px);
    display: block;
    width: var(--copy-width, 220px);
    max-width: 54vw;
    min-height: 1px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .82);
  }

  .lighting-mobile-slide__pin--left .lighting-mobile-slide__copy {
    right: calc(30px + var(--line, 104px) + 14px);
    left: auto;
    text-align: right;
  }

  .lighting-mobile-slide__copy strong {
    position: absolute;
    right: 0;
    bottom: 9px;
    left: 0;
    display: block;
    font-size: clamp(18px, 5vw, 24px);
    font-weight: var(--weight-bold);
    line-height: .98;
    letter-spacing: .032em;
    text-transform: uppercase;
  }

  .lighting-mobile-slide__copy small {
    position: absolute;
    top: 11px;
    right: 0;
    left: 0;
    display: block;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(12px, 3.2vw, 15px);
    line-height: 1.35;
  }

  .lighting-mobile-slide__footer {
    position: absolute;
    right: 34px;
    bottom: 34px;
    left: 34px;
    display: grid;
    justify-items: center;
    gap: 18px;
  }

  .lighting-mobile-slide__progress {
    position: relative;
    width: min(230px, 60vw);
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, .5);
  }

  .lighting-mobile-slide__progress span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--step) * 33.333%);
    width: 33.333%;
    background: var(--white);
  }

  .lighting-mobile-slide__arrows {
    color: var(--white);
    font-size: 44px;
    line-height: .6;
    letter-spacing: .18em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .7);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .section[id] {
    scroll-margin-top: 78px;
  }

  .topbar__inner {
    min-height: 64px;
  }

  .brand__sub,
  .topbar .button:not(.topbar__phone) {
    display: none;
  }

  .topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .topbar__phone {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
    min-height: 38px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .phone-full {
    display: none;
  }

  .phone-short {
    display: inline;
  }

  .hero {
    min-height: clamp(720px, calc(100vh - 64px), 820px);
    padding: 94px 0 22px;
  }

  .hero__content {
    width: min(350px, calc(100vw - 40px));
    max-width: min(350px, calc(100vw - 40px));
    margin-left: 20px;
    margin-right: auto;
    padding: 0 0 28px;
  }

  .hero__lead,
  .hero__text {
    max-width: min(350px, calc(100vw - 40px));
    font-size: 17px;
    line-height: 1.48;
    overflow-wrap: break-word;
  }

  h1 {
    max-width: min(350px, calc(100vw - 40px));
    font-size: clamp(28px, 7.8vw, 32px);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  h2 {
    font-size: clamp(27px, 7.2vw, 34px);
    line-height: 1.08;
  }

  .section__header > p:not(.section-note),
  .section__header .lead {
    font-size: 17px;
    line-height: 1.48;
  }

  .hero__proofs,
  .systems-grid,
  .designer-cards,
  .timeline,
  .zone-fallback,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .designer-principles {
    grid-template-columns: 1fr;
  }

  .designer-principle,
  .designer-principle + .designer-principle,
  .designer-principle:nth-child(3),
  .designer-principle:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(20, 20, 20, .16);
  }

  .designer-principle:first-child {
    border-top: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .process-item {
    min-height: 74px;
    padding-top: 34px;
  }

  .process-item h3 {
    max-width: none;
    font-size: 22px;
  }

  .process-cost {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 58px;
    padding: 32px 0 0;
  }

  .process-cost__body {
    grid-column: 1;
  }

  .blog-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 6px;
  }

  .blog-grid {
    --blog-gap: 20px;
    grid-auto-columns: 100%;
  }

  .section--blog-dark .blog-grid {
    margin: -48px -18px -58px;
    padding: 48px 18px 62px;
    scroll-padding-inline: 18px;
  }

  .blog-card h3 {
    min-height: calc(4 * 1.12em);
    -webkit-line-clamp: 4;
  }

  .blog-carousel__button {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .section__footer {
    display: block;
  }

  .section__footer .section__actions {
    margin-top: 18px;
  }

  .zone-shell {
    grid-template-columns: 1fr;
  }

  .zone-map,
  .zone-map img,
  .light-stage,
  .light-stage img,
  .media-panel {
    min-height: 380px;
  }

  .climate-section {
    padding-bottom: 70px;
  }

  .climate-map {
    min-height: clamp(780px, 194vw, 920px);
  }

  .climate-map > img {
    object-position: center;
  }

  .climate-map__shade {
    background:
      linear-gradient(180deg, rgba(12, 14, 16, .62) 0%, rgba(12, 14, 16, .24) 34%, rgba(12, 14, 16, .86) 100%),
      linear-gradient(90deg, rgba(12, 14, 16, .64) 0%, rgba(12, 14, 16, .24) 45%, rgba(12, 14, 16, .6) 100%);
  }

  .climate-callout--zoning {
    --copy-left: 28px;
    --copy-top: 8%;
    --copy-width: 248px;
    --headline-rule-width: 210px;
    --connector-left: var(--headline-rule-width);
    --connector-width: 64px;
    --connector-rotate: 40deg;
    --dot-x: 278px;
    --dot-y: 56px;
  }

  .climate-callout--modes {
    --copy-left: 28px;
    --copy-top: 40%;
    --copy-width: 250px;
    --headline-rule-width: 210px;
    --connector-left: var(--headline-rule-width);
    --connector-width: 62px;
    --connector-rotate: 34deg;
    --dot-x: 280px;
    --dot-y: 50px;
  }

  .climate-callout--energy {
    --copy-left: 28px;
    --copy-top: 70%;
    --copy-width: 256px;
    --headline-rule-width: 214px;
    --connector-left: var(--headline-rule-width);
    --connector-width: 64px;
    --connector-rotate: -34deg;
    --dot-x: 284px;
    --dot-y: -48px;
  }

  .climate-callout__dot {
    width: 48px;
    height: 48px;
    font-size: 13px;
  }

  .climate-callout__copy {
    width: var(--copy-width);
    max-width: calc(100vw - 56px);
  }

  .climate-callout__number {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .climate-callout h3 {
    font-size: 20px;
    line-height: .96;
  }

  .climate-callout p {
    font-size: 13px;
    line-height: 1.26;
    margin-top: 14px;
  }

  .climate-summary {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
    padding-top: 26px;
  }

  .climate-summary h3 {
    font-size: 25px;
    line-height: 1.08;
  }

  .climate-summary p {
    font-size: 17px;
    line-height: 1.48;
  }

  .security-section {
    padding-bottom: 70px;
  }

  .security-map {
    margin-top: 34px;
  }

  .security-map__frame {
    min-height: clamp(860px, 220vw, 980px);
  }

  .security-response {
    margin-top: 34px;
    padding-top: 26px;
  }

  .security-response h3 {
    font-size: 25px;
    line-height: 1.08;
  }

  .security-response__intro p:not(.section-note) {
    font-size: 16px;
    line-height: 1.48;
  }

  .security-modes {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .security-mode {
    min-height: 0;
  }

  .security-mode h4 {
    max-width: none;
    font-size: 22px;
  }

  .security-mode p {
    max-width: none;
  }

  .phasing-card {
    padding: 24px 20px;
  }

  .phasing-cards {
    grid-template-columns: 1fr;
  }

  .zone-control,
  .contact-form {
    padding: 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .final-copy {
    padding-top: 0;
  }

  .final-copy p {
    font-size: 17px;
    line-height: 1.48;
  }

  .final-copy__timing {
    margin-top: 18px;
    padding-top: 16px;
  }

  .hero__actions,
  .section__actions,
  .form-actions {
    align-items: stretch;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .topbar .topbar__phone {
    width: auto;
    max-width: calc(100vw - 94px);
  }
}

/* WordPress content system */

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

.screen-reader-text:focus {
  z-index: 100;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
}

.nav__list,
.site-footer__menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav .menu-item,
.site-footer__menu .menu-item {
  display: contents;
}

.content-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(243, 241, 238, .96)),
    var(--paper);
  border-bottom: 1px solid rgba(52, 49, 46, .08);
}

.content-hero__inner {
  min-height: clamp(240px, 24vw, 340px);
  display: grid;
  align-content: end;
  gap: 20px;
  padding: clamp(58px, 6vw, 86px) 0 clamp(32px, 4vw, 52px);
}

.content-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 5.5vw, 78px);
  line-height: .98;
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  text-wrap: balance;
}

.content-hero__text,
.content-hero__lead {
  max-width: 760px;
  padding: 16px 18px 16px 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, .64);
  border: 1px solid rgba(205, 164, 91, .34);
  border-radius: 6px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.58;
}

.content-hero__text p,
.content-hero__lead {
  margin: 0;
}

.content-hero__search {
  width: min(680px, 100%);
  margin-top: 12px;
}

.content-hero__search form,
.search-form {
  display: flex;
  gap: 10px;
}

.content-hero__search label,
.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(221, 216, 209, .95);
  border-radius: 8px;
}

.search-submit {
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: var(--weight-semibold);
}

.topic-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
}

.topic-filter__item {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(52, 49, 46, .16);
  border-radius: 999px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  transition: color .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}

.topic-filter__item:hover,
.topic-filter__item.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.content-list {
  padding-top: clamp(36px, 5vw, 66px);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.post-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.post-card {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(249, 247, 244, .96));
  border: 1px solid rgba(52, 49, 46, .12);
  border-radius: 8px;
  box-shadow: 0 6px 8px rgba(21, 23, 25, .055);
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

.post-card:hover,
.post-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(181, 18, 27, .28);
  background: var(--white);
  box-shadow: 0 8px 8px rgba(21, 23, 25, .08);
}

.post-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--graphite);
}

.post-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}

.post-card--featured .post-card__media {
  aspect-ratio: auto;
  min-height: 100%;
}

.post-card--featured .post-card__body {
  align-content: center;
  min-height: clamp(300px, 28vw, 430px);
}

.post-card--featured .post-card__title {
  font-size: clamp(30px, 3.2vw, 44px);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .32s var(--ease), filter .32s var(--ease);
}

.post-card:hover .post-card__media img,
.post-card:focus-within .post-card__media img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.post-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    var(--graphite-deep) url("../images/graphite-texture.jpg") center / cover;
}

.post-card__body {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
}

.post-card__meta,
.material-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 14px;
  font-weight: var(--weight-regular);
}

.post-card__meta {
  color: rgba(52, 49, 46, .58);
}

.material-meta {
  color: rgba(52, 49, 46, .58);
}

.post-card__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  text-wrap: balance;
}

.post-card__title a {
  color: inherit;
}

.post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.post-card__link {
  width: max-content;
  color: var(--red-dark);
  border-bottom: 1px solid rgba(181, 18, 27, .35);
  font-weight: var(--weight-semibold);
}

.post-grid--note {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 980px;
}

.ng-material-card--note {
  display: block;
}

.ng-material-card--note .post-card__body {
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
}

.ng-material-card--note .post-card__title {
  max-width: 860px;
  font-size: clamp(25px, 2.8vw, 36px);
  line-height: 1.1;
}

.ng-material-card--note p {
  max-width: 74ch;
}

.navigation.pagination {
  margin-top: clamp(34px, 5vw, 58px);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(52, 49, 46, .16);
  border-radius: 999px;
  font-weight: var(--weight-semibold);
}

.page-numbers.current {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.empty-state {
  max-width: 720px;
  padding: clamp(34px, 5vw, 52px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(52, 49, 46, .12);
  border-radius: 8px;
  box-shadow: 0 6px 8px rgba(21, 23, 25, .055);
}

.empty-state h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.empty-state p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
}

.material-hero {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(243, 241, 238, .97)),
    var(--paper);
  border-bottom: 1px solid rgba(52, 49, 46, .08);
}

.material-hero__grid {
  min-height: clamp(260px, 26vw, 360px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(30px, 6vw, 76px);
  align-items: end;
  padding: clamp(58px, 6vw, 90px) 0 clamp(34px, 4.5vw, 56px);
}

.material-hero__main {
  display: grid;
  gap: 20px;
}

.material-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.7vw, 66px);
  line-height: 1;
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  text-wrap: balance;
}

.material-hero__lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.5;
}

.material-hero__side {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 8px;
  box-shadow: 0 7px 8px rgba(21, 23, 25, .12);
}

.material-hero__side h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
}

.material-hero__side p {
  margin: 0 0 20px;
  color: var(--muted);
}

.material-hero__side-note {
  margin: 0 0 12px;
  color: rgba(52, 49, 46, .56);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.material-cover {
  margin-top: clamp(34px, 5vw, 70px);
}

.material-cover img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
}

.material-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 320px);
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
  padding: clamp(44px, 6vw, 76px) 0;
}

.material-content,
.page-content {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.76;
  font-weight: var(--weight-regular);
}

.material-content > *:first-child,
.page-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin: 1.75em 0 .7em;
  color: var(--ink);
  line-height: 1.12;
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  text-wrap: balance;
}

.entry-content h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.entry-content h3 {
  font-size: clamp(23px, 2.25vw, 31px);
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.1em;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.25em;
}

.entry-content li + li {
  margin-top: .42em;
}

.entry-content strong {
  color: var(--ink);
  font-weight: var(--weight-bold);
}

.entry-content em {
  color: rgba(52, 49, 46, .78);
}

.entry-content a {
  color: var(--red-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(205, 164, 91, .32);
  border-radius: 8px;
  font-size: 1.08em;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content .article-note,
.entry-content .wp-block-group.is-style-ng-note {
  margin: 1.8em 0;
  padding: 22px 24px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(52, 49, 46, .12);
  border-radius: 8px;
  box-shadow: 0 6px 8px rgba(21, 23, 25, .045);
}

.entry-content img,
.wp-block-image img {
  border-radius: 8px;
}

.entry-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}

.entry-content pre {
  overflow-x: auto;
  padding: 20px;
  color: var(--white);
  background: var(--graphite-deep);
  border-radius: 8px;
  font-size: 15px;
}

.entry-content code {
  padding: .08em .3em;
  color: var(--red-dark);
  background: rgba(181, 18, 27, .08);
  border-radius: 5px;
}

.entry-content pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.material-cta {
  margin: clamp(38px, 6vw, 64px) 0 0;
}

.material-cta__inner {
  padding: clamp(26px, 4vw, 38px);
  color: var(--white);
  background: var(--graphite-deep) url("../images/graphite-texture.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: 0 8px 8px rgba(21, 23, 25, .14);
}

.material-cta__note {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
}

.material-cta h2 {
  max-width: 680px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
}

.material-cta p:not(.material-cta__note) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.material-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.material-cta__button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: var(--weight-semibold);
  line-height: 1.15;
  text-decoration: none;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}

.entry-content .material-cta__button {
  color: var(--white);
  text-decoration: none;
}

.material-cta__button:hover {
  transform: translateY(-1px);
}

.material-cta__button--primary {
  color: var(--white);
  background: var(--red);
}

.material-cta__button--primary:hover {
  background: var(--red-dark);
}

.material-cta__button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
}

.material-cta__button--secondary:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .34);
}

.material-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
  padding-left: 26px;
  border-left: 1px solid rgba(52, 49, 46, .14);
}

.material-sidecard {
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(52, 49, 46, .12);
  border-radius: 8px;
  box-shadow: 0 6px 8px rgba(21, 23, 25, .055);
}

.material-sidecard__note {
  margin: 0 0 12px;
  color: rgba(52, 49, 46, .56);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.material-sidecard a,
.material-tags a {
  display: block;
  color: var(--ink-soft);
  font-weight: var(--weight-semibold);
}

.material-sidecard a + a {
  margin-top: 10px;
}

.material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.material-tags a {
  display: inline-flex;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(52, 49, 46, .13);
  border-radius: 999px;
  font-size: 14px;
}

.related-materials {
  color: var(--ink);
  background: var(--paper-deep);
  border-top: 1px solid rgba(52, 49, 46, .08);
}

.related-materials .section-note {
  color: var(--red);
}

.related-materials .section__header h2 {
  color: var(--ink);
}

.material-comments__inner {
  max-width: 860px;
}

.content-page .content-hero__inner {
  min-height: clamp(320px, 38vw, 500px);
}

.page-content {
  max-width: 860px;
  padding: clamp(54px, 7vw, 92px) 0;
}

.site-footer {
  color: rgba(255, 255, 255, .74);
  background: var(--graphite-deep);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: clamp(42px, 6vw, 70px) 0;
}

.site-footer .brand__name {
  color: var(--white);
}

.site-footer .brand__sub,
.site-footer__brand p {
  color: rgba(255, 255, 255, .62);
}

.site-footer__brand p {
  max-width: 480px;
  margin: 18px 0 0;
}

.site-footer__nav,
.site-footer__contacts {
  display: grid;
  gap: 10px;
  font-weight: var(--weight-semibold);
}

.site-footer__nav a,
.site-footer__contacts a {
  color: rgba(255, 255, 255, .8);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .material-hero__grid,
  .material-layout,
  .post-card--featured,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .material-sidebar {
    position: static;
    padding-left: 0;
    border-left: 0;
  }

  .material-hero__side {
    max-width: 560px;
  }
}

@media (max-width: 680px) {
  .content-hero__inner {
    padding-top: 76px;
  }

  .material-hero__grid {
    padding-top: 60px;
  }

  .content-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .material-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .material-hero__lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .content-hero__inner,
  .material-hero__grid {
    min-height: auto;
  }

  .content-hero__search form,
  .search-form,
  .not-found-actions {
    display: grid;
  }

  .topic-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: calc(100% - 20px);
    padding-bottom: 6px;
  }

  .topic-filter__item {
    white-space: nowrap;
  }

  .post-card__body {
    padding: 20px;
  }

  .post-card__title {
    font-size: 25px;
  }

  .post-card--featured .post-card__body {
    min-height: auto;
  }

  .material-content,
  .page-content {
    font-size: 17px;
    line-height: 1.65;
  }

  .material-hero__side,
  .material-sidecard {
    padding: 20px;
  }

  .material-cta__actions,
  .material-cta__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phasing-card:hover {
    transform: none;
  }

  .section--blog-dark .blog-card:hover,
  .section--blog-dark .blog-card:focus-visible,
  .js .section--blog-dark .blog-card.reveal:hover,
  .js .section--blog-dark .blog-card.reveal:focus-visible {
    transform: none;
  }

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