@font-face {
  font-family: "Euclid Circular A";
  src: url("fonts/EuclidCircularA-Regular-WebXL.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.architecture-directory-page {
  background: #f5f1e5;
}

.architecture-archive {
  position: relative;
  width: min(100%, 1820px);
  margin: 0 auto;
  padding: clamp(132px, 11vw, 190px) clamp(22px, 5vw, 92px) clamp(84px, 9vw, 160px);
}

.architecture-archive__rails {
  --archive-rail-edge: clamp(18px, 2.8vw, 48px);
  --archive-rail-top: clamp(210px, 28vh, 318px);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  height: 0;
  pointer-events: none;
}

.architecture-archive__rail {
  position: absolute;
  top: var(--archive-rail-top);
  z-index: 1;
  display: grid;
  width: max-content;
  margin: 0;
  color: rgba(23, 23, 19, 0.34);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.architecture-archive__rail--left {
  left: var(--archive-rail-edge);
  transform: rotate(180deg);
}

.architecture-archive__rail--right {
  right: var(--archive-rail-edge);
}

.architecture-archive__rails.is-released .architecture-archive__rail {
  top: 0;
}

.architecture-archive__rails.is-released {
  position: absolute;
  top: var(--archive-rail-release-top, 0px);
}

.architecture-archive__intro {
  display: grid;
  justify-items: center;
  min-height: clamp(340px, 36vw, 560px);
  margin: 0 auto clamp(54px, 7vw, 112px);
  text-align: center;
}

.architecture-archive__eyebrow,
.architecture-case__meta,
.architecture-case__footer,
.architecture-case__action {
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.45;
  text-transform: uppercase;
}

.architecture-archive__eyebrow {
  align-self: end;
  margin: 0 0 clamp(20px, 2.5vw, 38px);
  color: rgba(23, 23, 19, 0.62);
}

.architecture-archive__intro h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4.8rem, 12vw, 13.2rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: none;
}

.architecture-archive__intro > p:last-child {
  align-self: start;
  max-width: 760px;
  margin: clamp(28px, 4vw, 58px) auto 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: clamp(1rem, 1.04vw, 1.18rem);
  line-height: 1.78;
}

.architecture-archive-plate {
  width: min(100%, 1580px);
  margin: 0 auto clamp(58px, 7vw, 118px);
}

.architecture-archive-plate__link,
.architecture-archive-plate__figure,
.architecture-archive-plate__media {
  display: block;
}

.architecture-archive-plate__figure {
  margin: 0;
}

.architecture-archive-plate__media {
  position: relative;
  aspect-ratio: 16 / 7.35;
  overflow: hidden;
  background: #171713;
}

.architecture-archive-plate__media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23, 23, 19, 0.08), rgba(23, 23, 19, 0) 32%),
    linear-gradient(0deg, rgba(23, 23, 19, 0.12), rgba(23, 23, 19, 0) 42%);
  content: "";
}

.architecture-archive-plate__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.9) contrast(0.98) brightness(0.96);
  transform: scale(1.001);
  transition: filter 900ms cubic-bezier(0.16, 0.74, 0.18, 1), transform 900ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.architecture-archive-plate__link:hover img,
.architecture-archive-plate__link:focus-visible img {
  filter: saturate(0.98) contrast(1.02) brightness(0.99);
  transform: scale(1.025);
}

.architecture-archive-plate__caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 26px;
  padding-top: clamp(14px, 1.45vw, 24px);
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.45;
  text-transform: uppercase;
}

.architecture-feature {
  margin: 0 auto clamp(64px, 8vw, 126px);
}

.architecture-feature__link {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.32fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: end;
}

.architecture-feature__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #191712;
}

.architecture-feature__media::after,
.architecture-case__media::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(23, 23, 19, 0.34);
  opacity: 0;
  content: "View project";
  transition: opacity 360ms ease;
}

.architecture-feature__media img,
.architecture-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.98) brightness(0.94);
  transform: scale(1.001);
  transition: filter 820ms cubic-bezier(0.16, 0.74, 0.18, 1), transform 820ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.architecture-feature__copy {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  padding-bottom: clamp(4px, 1vw, 18px);
}

.architecture-feature__copy strong {
  display: block;
  max-width: 720px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.9vw, 8.4rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.92;
}

.architecture-feature__text {
  max-width: 500px;
  color: rgba(23, 23, 19, 0.7);
  font-size: clamp(1rem, 1vw, 1.12rem);
  line-height: 1.7;
}

.architecture-case__meta {
  color: rgba(23, 23, 19, 0.62);
}

.architecture-case__action {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 8px;
  color: var(--ink);
  border-bottom: 1px solid rgba(23, 23, 19, 0.36);
}

.architecture-feature__link:hover .architecture-feature__media::after,
.architecture-feature__link:focus-visible .architecture-feature__media::after,
.architecture-case:hover .architecture-case__media::after,
.architecture-case:focus-visible .architecture-case__media::after {
  opacity: 1;
}

.architecture-feature__link:hover img,
.architecture-feature__link:focus-visible img,
.architecture-case:hover img,
.architecture-case:focus-visible img {
  filter: saturate(0.98) contrast(1.01) brightness(0.98);
  transform: scale(1.035);
}

.architecture-archive__statement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 7vw, 132px);
  margin: 0 auto clamp(56px, 8vw, 130px);
  padding: clamp(38px, 5vw, 72px) 0;
  border-top: 1px solid rgba(23, 23, 19, 0.16);
  border-bottom: 1px solid rgba(23, 23, 19, 0.16);
}

.architecture-archive__statement p {
  max-width: 46em;
  margin: 0;
  color: rgba(23, 23, 19, 0.76);
  font-size: clamp(1.05rem, 1.1vw, 1.3rem);
  line-height: 1.8;
}

.architecture-case-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 92px) clamp(24px, 3.8vw, 72px);
}

.architecture-case {
  display: grid;
  align-content: start;
  gap: clamp(18px, 2vw, 30px);
  min-width: 0;
}

.architecture-case--landscape {
  grid-column: span 7;
}

.architecture-case--portrait {
  grid-column: span 5;
}

.architecture-case__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-deep);
}

.architecture-case--landscape .architecture-case__media {
  aspect-ratio: 1.42 / 1;
}

.architecture-case--portrait .architecture-case__media {
  aspect-ratio: 0.78 / 1;
}

.architecture-case__copy {
  display: grid;
  gap: 14px;
  max-width: 700px;
  padding-top: clamp(4px, 0.8vw, 12px);
}

.architecture-case__copy strong {
  display: block;
  max-width: 820px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 4.9rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
}

.architecture-case__description {
  max-width: 620px;
  color: rgba(23, 23, 19, 0.7);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.66;
}

.architecture-case__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  color: rgba(23, 23, 19, 0.48);
}

.architecture-case__footer span + span::before {
  margin-right: 0.75em;
  content: "/";
}

@media (max-width: 1180px) {
  .architecture-archive {
    padding-right: clamp(18px, 4vw, 42px);
    padding-left: clamp(18px, 4vw, 42px);
  }

  .architecture-archive__rails {
    display: none;
  }

  .architecture-feature__link,
  .architecture-archive__statement {
    grid-template-columns: 1fr;
  }

  .architecture-feature__media {
    aspect-ratio: 16 / 11;
  }

  .architecture-archive-plate__media {
    aspect-ratio: 16 / 8.8;
  }

  .architecture-case--landscape,
  .architecture-case--portrait {
    grid-column: span 6;
  }

  .architecture-case__copy strong {
    font-size: clamp(2rem, 5.4vw, 4.2rem);
  }
}

@media (max-width: 760px) {
  .architecture-archive {
    padding: 112px 16px 78px;
  }

  .architecture-archive__intro {
    min-height: 330px;
    margin-bottom: 46px;
  }

  .architecture-archive__eyebrow,
  .architecture-case__meta,
  .architecture-case__footer,
  .architecture-case__action {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  .architecture-archive__intro h1 {
    max-width: 100%;
    font-size: clamp(4rem, 21vw, 5.5rem);
    line-height: 0.9;
    overflow-wrap: anywhere;
  }

  .architecture-archive__intro > p:last-child,
  .architecture-archive__statement p,
  .architecture-feature__text,
  .architecture-case__description {
    font-size: 0.96rem;
    line-height: 1.64;
  }

  .architecture-feature {
    margin-bottom: 58px;
  }

  .architecture-archive-plate {
    margin-bottom: 46px;
  }

  .architecture-archive-plate__media {
    aspect-ratio: 4 / 5;
  }

  .architecture-archive-plate__media img {
    object-position: 54% 50%;
  }

  .architecture-archive-plate__caption {
    display: grid;
    gap: 6px;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  .architecture-feature__link {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .architecture-feature__media {
    aspect-ratio: 4 / 5;
  }

  .architecture-feature__copy strong {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 0.95;
  }

  .architecture-archive__statement {
    gap: 22px;
    margin-bottom: 52px;
    padding: 32px 0;
  }

  .architecture-case-list {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .architecture-case--landscape,
  .architecture-case--portrait {
    grid-column: auto;
  }

  .architecture-case--landscape .architecture-case__media,
  .architecture-case--portrait .architecture-case__media {
    aspect-ratio: 4 / 5;
  }

  .architecture-case__copy {
    gap: 12px;
  }

  .architecture-case__copy strong {
    font-size: clamp(2.05rem, 10.4vw, 3.2rem);
    line-height: 0.98;
  }
}

@font-face {
  font-family: "Euclid Circular A";
  src: url("fonts/EuclidCircularA-Medium-WebXL.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Circular A";
  src: url("fonts/EuclidCircularA-Semibold-WebXL.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Circular A";
  src: url("fonts/EuclidCircularA-Bold-WebXL.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Flex";
  src: url("fonts/EuclidFlex-Ultralight-WebXL.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Flex";
  src: url("fonts/EuclidFlex-Light-WebXL.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Circular B";
  src: url("fonts/EuclidCircularB-Light-WebXL.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Circular B";
  src: url("fonts/EuclidCircularB-Regular-WebXL.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Circular B";
  src: url("fonts/EuclidCircularB-Medium-WebXL.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Circular B";
  src: url("fonts/EuclidCircularB-Semibold-WebXL.woff2") format("woff2");
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Flex";
  src: url("fonts/EuclidFlex-Regular-WebXL.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Flex";
  src: url("fonts/EuclidFlex-Medium-WebXL.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Flex";
  src: url("fonts/EuclidFlex-Bold-WebXL.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Square";
  src: url("fonts/EuclidSquare-Light-WebXL.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Square";
  src: url("fonts/EuclidSquare-Regular-WebXL.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Square";
  src: url("fonts/EuclidSquare-Medium-WebXL.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Euclid Triangle";
  src: url("fonts/EuclidTriangle-Bold-WebXL.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f5f1e5;
  --paper-soft: #f5f1e5;
  --paper-deep: #f5f1e5;
  --ink: #171713;
  --muted: #6d685f;
  --line: rgba(23, 23, 19, 0.16);
  --line-strong: rgba(23, 23, 19, 0.32);
  --shadow: 0 28px 90px rgba(23, 23, 19, 0.12);
  --display: "Euclid Flex", "Euclid Circular A", Arial, sans-serif;
  --text: "Euclid Circular B", "Euclid Circular A", Arial, sans-serif;
  --caption: "Euclid Square", "Euclid Circular B", Arial, sans-serif;
  --sans: "Euclid Circular A", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-weight: 400;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

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

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

img {
  display: block;
  max-width: 100%;
  min-width: 0;
  height: auto;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

figure {
  margin: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  max-width: 100%;
  min-width: 0;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 40;
  isolation: isolate;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: var(--paper);
  backdrop-filter: none;
  box-shadow: 0 0 0 rgba(23, 23, 19, 0);
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.has-premium-header {
  transition: none;
}

.home-page .site-header,
.residence-page .site-header,
.image-hero-page .site-header {
  color: rgba(250, 246, 237, 0.94);
  border-bottom-color: transparent;
  background: rgba(245, 241, 229, 0);
  backdrop-filter: blur(0);
}

.site-header::before,
.site-header::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.site-header::before {
  inset: 0;
  z-index: -1;
  opacity: var(--header-glow-opacity, 0);
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.32) 48%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.site-header::after {
  display: none;
}

.home-page .site-header:not(.has-premium-header).is-scrolled,
.home-page.is-menu-open .site-header:not(.has-premium-header),
.residence-page .site-header:not(.has-premium-header).is-scrolled,
.residence-page.is-menu-open .site-header:not(.has-premium-header),
.image-hero-page .site-header:not(.has-premium-header).is-scrolled,
.image-hero-page.is-menu-open .site-header:not(.has-premium-header) {
  color: var(--ink);
  border-bottom-color: transparent;
  background: var(--paper);
  backdrop-filter: none;
}

.site-header__inner {
  position: relative;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: min(100%, 1680px);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 76px);
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 0.5em;
  color: var(--footer-cta-bg, currentColor);
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.home-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand,
.residence-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand,
.image-hero-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand {
  color: inherit;
}

.home-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand--byggsikt,
.residence-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand--byggsikt,
.image-hero-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand--byggsikt {
  color: inherit;
  font-weight: 500;
  letter-spacing: 0.095em;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.home-page:not(.is-menu-open) .site-header:not(.is-scrolled) .header-cta,
.residence-page:not(.is-menu-open) .site-header:not(.is-scrolled) .header-cta,
.image-hero-page:not(.is-menu-open) .site-header:not(.is-scrolled) .header-cta {
  --header-cta-hover-bg: #fff5e6;
  --header-cta-hover-ink: #173452;
}

.brand::before {
  display: block;
  flex: 0 0 auto;
  width: 0.82em;
  height: 1.1em;
  background: currentColor;
  transform: translateY(-0.03em);
  -webkit-mask: url("assets/block_shape_empty_cutouts.svg?v=3") 0 0 / 100% 100% no-repeat;
  mask: url("assets/block_shape_empty_cutouts.svg?v=3") 0 0 / 100% 100% no-repeat;
  content: "";
}

.brand--byggsikt {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  width: auto;
  height: auto;
  color: #173a56;
  font-family: "Euclid Triangle", var(--display);
  font-size: clamp(1.18rem, 1.35vw, 1.62rem);
  font-weight: 800;
  letter-spacing: 0.095em;
  line-height: 1;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.brand--byggsikt::before {
  display: none;
}

.brand__mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 1.55em;
  height: 1.62em;
  overflow: visible;
  transform: translateY(-0.01em);
}

.brand__mark--full-logo {
  width: clamp(44px, 4.2vw, 60px);
  height: auto;
  aspect-ratio: 1;
  transform: none;
}

.brand__mark-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

.brand__mark-image--dark {
  opacity: 1;
}

.brand__mark-image--light {
  opacity: 0;
}

.home-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand--byggsikt .brand__mark-image--dark,
.residence-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand--byggsikt .brand__mark-image--dark,
.image-hero-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand--byggsikt .brand__mark-image--dark {
  opacity: 0;
}

.home-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand--byggsikt .brand__mark-image--light,
.residence-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand--byggsikt .brand__mark-image--light,
.image-hero-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand--byggsikt .brand__mark-image--light {
  opacity: 1;
}

.brand__text {
  display: block;
  transform: translateY(0.02em);
}

.site-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: clamp(22px, 2.7vw, 40px);
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav--panel {
  display: none;
}

.site-nav a {
  position: relative;
  padding: 0.42rem 0;
}

.site-nav a::after {
  display: none;
  content: none;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  display: none;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  position: relative;
  z-index: 60;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.is-menu-open .menu-button span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.is-menu-open .menu-button span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 32px;
  min-height: 100svh;
  max-height: 100svh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(92px, 13vh, 150px) clamp(22px, 7vw, 120px) clamp(28px, 6vw, 72px);
  background: rgba(245, 241, 229, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.is-menu-open .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.is-menu-closing-fast .menu-panel {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(0) !important;
  transition: none !important;
}

.is-menu-navigating .menu-panel {
  opacity: 1 !important;
  pointer-events: none !important;
  transform: translateY(0) !important;
  transition: none !important;
}

.is-menu-navigating .menu-button {
  pointer-events: none;
}

.menu-panel__nav {
  display: grid;
  align-content: start;
  gap: clamp(20px, 4vh, 36px);
  color: rgba(23, 23, 19, 0.48);
}

.menu-panel__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 23, 19, 0.08);
  font-family: var(--display);
  font-size: clamp(2.2rem, 7vw, 6.8rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 0.98;
  text-transform: uppercase;
  transition: color 180ms ease, letter-spacing 180ms ease;
}

.menu-panel__nav a::after {
  content: "+";
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0;
}

.menu-panel__nav a:hover {
  color: var(--ink);
  letter-spacing: 0.14em;
}

.menu-panel__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  min-width: 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-panel__foot span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.site-main {
  min-height: 100vh;
  padding-top: 73px;
}

.home-page .site-main,
.residence-page .site-main,
.image-hero-page .site-main {
  padding-top: 0;
}

.section {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 154px) clamp(22px, 5vw, 96px);
}

.site-main,
.section,
.section > *,
.image-frame,
.panel,
.project-feature,
.project-feature__copy,
.project-feature__media,
.directory-feature,
.directory-feature__copy,
.directory-feature__media,
.directory-project-row,
.directory-project-row__body,
.directory-project-row__image,
.residence-feature,
.residence-feature__copy,
.residence-feature__media,
.residence-intro__copy,
.residence-breakdown__text,
.residence-materials__copy,
.residence-materials__grid,
.residence-showcase__intro,
.project-directory__hero,
.project-directory__essay,
.project-index__intro,
.project-index__layout,
.project-sequence,
.project-sequence__copy,
.project-interior-story,
.project-interior-story__copy,
.story-grid,
.story-card,
.studio-craft,
.studio-craft__text,
.studio-craft__image,
.contact-hero,
.contact-hero__copy,
.contact-visual,
.contact-brief,
.contact-brief__notes,
.contact-form,
.contact-note,
.field,
.footer-card-shell {
  min-width: 0;
  max-width: 100%;
}

.home-hero {
  --hero-y-shift: 70px;
  --hero-sky-tone: #e1ded2;
  --hero-warm-wash: rgba(226, 220, 207, 0.12);
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--hero-sky-tone);
  color: rgba(250, 246, 237, 0.95);
  isolation: isolate;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: var(--hero-warm-wash);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.home-hero__media,
.home-hero__sky,
.home-hero__house,
.home-hero__traces {
  position: absolute;
  inset: 0 0 calc(-1 * var(--hero-y-shift)) 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  transform: translateY(var(--hero-y-shift));
}

.home-hero__sky {
  z-index: -3;
  background: var(--hero-sky-tone);
}

.home-hero__house {
  z-index: -2;
}

.home-hero__traces {
  z-index: -1;
}

.home-hero__sky img,
.home-hero__house img,
.home-hero__roof-segment,
.home-hero__roof-segment img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero__sky img {
  visibility: hidden;
  opacity: 0 !important;
}

.home-hero__roof-segment {
  overflow: hidden;
}

.home-hero__sky img,
.home-hero__house img,
.home-hero__roof-segment img {
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.home-hero__media {
  z-index: -4;
  overflow: hidden;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.js .home-page .home-hero__media img,
.js .home-page .home-hero__sky img,
.js .home-page .home-hero__house img {
  opacity: 0;
}

.js .home-page .home-hero__media img,
.js .home-page .home-hero__roof-segment img {
  clip-path: inset(0 100% 0 0);
}

.home-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(23, 23, 19, 0.07);
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: minmax(0, 0.92fr) minmax(0, 1fr);
  place-items: center;
  width: min(92vw, 1260px);
  min-height: 100vh;
  padding: clamp(110px, 12vh, 180px) clamp(18px, 4vw, 72px) clamp(58px, 8vh, 110px);
  text-align: center;
}

.home-hero__brand-lock {
  position: relative;
  display: grid;
  gap: 0.34rem;
  place-items: center;
  width: min(100%, 760px);
  filter: drop-shadow(0 18px 34px rgba(7, 8, 10, 0.34));
  transform: translateY(-0.2rem);
}

.home-hero__title {
  max-width: none;
  margin: 0;
  color: inherit;
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.82;
  text-shadow:
    0 2px 16px rgba(7, 8, 10, 0.4),
    0 0 34px rgba(255, 205, 141, 0.16);
  text-transform: uppercase;
}

.home-hero__brand-lock .home-hero__title {
  transform: none;
}

.home-hero__subbrand {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(255, 241, 218, 0.98);
  font-family: "Euclid Triangle", var(--display);
  font-size: 2.58rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.94;
  -webkit-text-stroke: 0.35px rgba(8, 8, 7, 0.62);
  text-shadow:
    0 2px 5px rgba(7, 8, 10, 0.82),
    0 0 14px rgba(255, 176, 88, 0.18),
    0 1px 22px rgba(7, 8, 10, 0.38);
  text-transform: uppercase;
  white-space: normal;
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 0.82rem;
  transform: translateY(clamp(58px, 7.2vh, 92px));
  margin: clamp(16px, 1.8vh, 22px) 0 0;
  color: rgba(250, 246, 237, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.28;
  text-shadow: 0 1px 12px rgba(23, 23, 19, 0.22);
  text-transform: uppercase;
}

.home-hero__meta span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.home-hero__meta span + span::before {
  content: "|";
  margin-right: 0.82rem;
  opacity: 0.7;
}

.home-hero__lead {
  position: absolute;
  right: 0;
  bottom: clamp(18px, 3.2vh, 42px);
  left: 0;
  width: min(92vw, 760px);
  margin: 0 auto;
  color: rgba(250, 246, 237, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 1px 16px rgba(23, 23, 19, 0.26);
}

.home-hero--static .home-hero__media {
  inset: 0;
  z-index: 0;
  transform: none;
}

.home-hero--static .home-hero__media img,
.js .home-page .home-hero--static .home-hero__media img {
  opacity: 1;
  clip-path: none;
  filter: none;
}

.home-hero--static .home-hero__media::after {
  background: transparent;
}

.home-hero--static::after {
  display: none;
}

.home-hero--static .home-hero__content {
  z-index: 2;
}

.home-hero--build {
  background: #8cc7e6;
}

.home-hero--build::after {
  display: none;
}

.home-hero--build .home-hero__media {
  inset: 0;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  background: #8cc7e6;
  transform: none;
}

.home-hero-build img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform-origin: center;
  user-select: none;
}

.home-hero-build__base {
  z-index: 1;
}

.home-hero-build__layer {
  z-index: 2;
  opacity: 0;
}

.home-hero-build__line {
  z-index: 3;
}

.home-hero-build__panel {
  z-index: 4;
}

.home-hero-build__final {
  z-index: 5;
}

.home-hero-build__night {
  z-index: 7;
  opacity: 0;
}

.home-hero-build__light-pass {
  z-index: 11;
  opacity: 0;
}

.home-hero-build__light-pass[data-build-light-pass="window-lower"],
.home-hero-build__light-pass[data-build-light-pass="window-right"],
.home-hero-build__light-pass[data-build-light-pass="window-left"] {
  z-index: 30;
}

.home-hero-build__window-glow {
  z-index: 14;
  opacity: 0;
  mix-blend-mode: screen;
}

.home-hero-build__light {
  z-index: 9;
  opacity: 0;
}

.home-hero-build__dusk,
.home-hero-build__light-bloom {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.home-hero-build__dusk {
  z-index: 10;
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(28, 91, 155, 0.44) 0%, rgba(12, 35, 75, 0.42) 32%, rgba(3, 7, 18, 0) 60%),
    linear-gradient(180deg, rgba(2, 8, 19, 0.2) 0%, rgba(1, 5, 14, 0.78) 48%, rgba(0, 1, 5, 0.98) 100%),
    radial-gradient(ellipse at 50% 82%, rgba(0, 1, 5, 0.88) 0%, rgba(0, 1, 5, 0.42) 44%, rgba(0, 1, 5, 0) 72%);
  backdrop-filter: blur(1.4px) saturate(0.76) brightness(0.66);
  transform: scale(1.025);
  transform-origin: 50% 46%;
}

.home-hero-build__light-bloom {
  z-index: 12;
  opacity: 0;
  background:
    radial-gradient(circle at 43% 32%, rgba(255, 183, 88, 0.48) 0%, rgba(255, 183, 88, 0.14) 18%, rgba(255, 183, 88, 0) 42%),
    radial-gradient(circle at 64% 69%, rgba(255, 196, 116, 0.3) 0%, rgba(255, 196, 116, 0.08) 18%, rgba(255, 196, 116, 0) 37%),
    radial-gradient(circle at 32% 70%, rgba(255, 175, 84, 0.2) 0%, rgba(255, 175, 84, 0.05) 16%, rgba(255, 175, 84, 0) 36%);
  mix-blend-mode: screen;
}

.home-hero-build__trace {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.home-hero-build__trace-path {
  fill: none;
  opacity: 0;
  stroke: rgba(250, 246, 237, 0.9);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.75px;
  vector-effect: non-scaling-stroke;
  filter:
    drop-shadow(0 1px 1px rgba(23, 23, 19, 0.38))
    drop-shadow(0 0 8px rgba(250, 246, 237, 0.22));
}

.js .home-page .home-hero--build .home-hero-build__base,
.home-page .home-hero--build .home-hero-build__base {
  opacity: 1;
  clip-path: none;
}

.js .home-page .home-hero--build .home-hero-build__layer {
  clip-path: none;
}

.js .home-page .home-hero--build .home-hero-build__night,
.js .home-page .home-hero--build .home-hero-build__light,
.js .home-page .home-hero--build .home-hero-build__light-pass {
  clip-path: none !important;
}

.home-hero--build .home-hero__media::after {
  z-index: 8;
  background:
    linear-gradient(180deg, rgba(23, 23, 19, 0.2) 0%, rgba(23, 23, 19, 0.02) 42%, rgba(23, 23, 19, 0.26) 100%),
    linear-gradient(90deg, rgba(23, 23, 19, 0.12) 0%, rgba(23, 23, 19, 0) 34%, rgba(23, 23, 19, 0) 66%, rgba(23, 23, 19, 0.14) 100%);
}

.home-hero--build .home-hero__content {
  z-index: 2;
}

@media (min-width: 1440px) {
  .home-hero__title {
    font-size: 6.55rem;
  }

  .home-hero__subbrand {
    font-size: 2.92rem;
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 520px);
  gap: clamp(48px, 9vw, 132px);
  align-items: center;
  min-height: calc(100vh - 92px);
}

.hero-copy,
.panel,
.section-heading,
.detail-hero > div:first-child {
  display: grid;
  gap: clamp(18px, 2.6vw, 34px);
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

h1 {
  max-width: 820px;
  font-size: clamp(5.4rem, 12vw, 13rem);
}

h2 {
  font-size: clamp(3.8rem, 7.8vw, 8rem);
}

h3 {
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
}

p {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.18rem);
  font-weight: 500;
  line-height: 1.42;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: fit-content;
  padding: 0 28px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button {
  background: var(--ink);
  color: var(--paper-soft);
}

.ghost-button {
  background: transparent;
  color: var(--ink);
}

.button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.panel--dark .ghost-button {
  border-color: rgba(250, 246, 237, 0.74);
  color: var(--paper-soft);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  justify-self: end;
  width: min(100%, 520px);
  aspect-ratio: 560 / 770;
}

.section-heading {
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.42fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 82px);
}

.project-index {
  padding-top: clamp(70px, 7vw, 126px);
  padding-bottom: clamp(78px, 7.4vw, 132px);
}

.project-index__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 62px);
  padding-bottom: clamp(22px, 2.8vw, 38px);
  border-bottom: 1px solid var(--line);
}

.project-index__intro h2 {
  font-size: clamp(3rem, 5.4vw, 6.3rem);
  max-width: 980px;
}

.project-index__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.46fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(360px, 0.46fr);
  min-height: clamp(430px, 38vw, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  transition: transform 260ms ease, border-color 260ms ease;
}

.project-feature:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.project-feature__media {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.project-feature__media img,
.project-line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-feature__media img {
  object-position: center bottom;
}

.project-feature__copy {
  position: relative;
  min-width: 0;
  container-type: inline-size;
  display: grid;
  grid-template-rows: auto minmax(120px, 1fr) auto auto;
  align-content: stretch;
  gap: clamp(18px, 2.1vw, 30px);
  padding: clamp(28px, 3vw, 48px);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(250, 246, 237, 0.94), rgba(238, 231, 216, 0.72)),
    radial-gradient(circle at 100% 0%, rgba(23, 23, 19, 0.075), transparent 34%);
  overflow: hidden;
}

.project-feature__copy::before {
  position: absolute;
  top: clamp(18px, 2vw, 34px);
  right: clamp(18px, 2vw, 32px);
  content: "01";
  color: rgba(23, 23, 19, 0.055);
  font-family: var(--display);
  font-size: clamp(7rem, 10vw, 12rem);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.72;
  pointer-events: none;
}

.project-feature__copy::after {
  position: absolute;
  right: clamp(28px, 3vw, 48px);
  bottom: clamp(28px, 3vw, 48px);
  left: clamp(28px, 3vw, 48px);
  height: 1px;
  background: var(--line);
  content: "";
  opacity: 0.72;
  transform: translateY(clamp(-48px, -4vw, -30px));
}

.project-feature__copy .project-meta {
  position: relative;
  z-index: 1;
  align-self: start;
  padding-bottom: clamp(18px, 2.2vw, 32px);
  border-bottom: 1px solid var(--line);
}

.project-feature__copy strong {
  position: relative;
  z-index: 1;
  align-self: center;
  display: block;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(3rem, 4.1vw, 4.75rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.86;
  overflow-wrap: normal;
  white-space: nowrap;
}

@supports (font-size: 1cqw) {
  .project-feature__copy strong {
    font-size: clamp(3.1rem, 17cqw, 4.75rem);
  }
}

.project-feature__copy span:not(.project-meta):not(.project-feature__cta) {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 360px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
}

.project-feature__cta {
  position: relative;
  z-index: 1;
  align-self: end;
  width: fit-content;
  margin-top: clamp(12px, 1.4vw, 24px);
  padding-top: 14px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.project-feature__cta::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.72);
  transform-origin: left;
  transition: transform 220ms ease;
}

.project-feature:hover .project-feature__cta::before {
  transform: scaleX(1);
}

.project-index__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.project-line {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  grid-template-rows: minmax(92px, auto);
  gap: 10px;
  align-items: center;
  min-height: 108px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(250, 246, 237, 0.52);
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.project-line:hover {
  border-color: var(--line-strong);
  background: var(--paper-soft);
  color: var(--muted);
  transform: translateY(-5px);
}

.project-line span,
.project-line em {
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-line span {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding: 18px 0 0 18px;
}

.project-line strong {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 2.7vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.project-line em {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  padding: 0 0 18px;
}

.project-line img {
  grid-column: 3;
  grid-row: 1;
  width: 92px;
  height: 76px;
  margin-right: 16px;
  border: 0;
  border-left: 1px solid var(--line);
  opacity: 1;
  pointer-events: none;
  transform: scale(1);
  transition: transform 260ms ease;
}

.project-line:hover img {
  transform: scale(1.045);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(18px, 2.1vw, 34px);
}

.project-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(250, 246, 237, 0.62);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.project-card:hover {
  border-color: var(--ink);
  background: var(--paper-soft);
  transform: translateY(-5px);
}

.project-card .image-frame {
  width: 100%;
  aspect-ratio: 4 / 5.15;
  border: 0;
  box-shadow: none;
}

.project-card__body {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 20px;
  border-top: 1px solid var(--line);
}

.project-card h3 {
  font-size: clamp(2.5rem, 3vw, 3.8rem);
  line-height: 0.84;
}

.project-card p,
.project-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-directory {
  padding-top: clamp(96px, 9vw, 150px);
}

.project-directory--editorial {
  width: min(100%, 1880px);
}

.project-directory__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.44fr);
  gap: clamp(42px, 8vw, 132px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 70px);
  padding-bottom: clamp(28px, 3.4vw, 48px);
  border-bottom: 1px solid var(--line);
}

.project-directory__hero h1 {
  font-size: clamp(4.3rem, 8.2vw, 9rem);
  max-width: 980px;
}

.project-directory--editorial .project-directory__hero {
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.42fr);
  min-height: clamp(300px, 28vw, 470px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 74px);
  padding-bottom: clamp(32px, 4.8vw, 78px);
}

.project-directory--editorial .project-directory__hero h1 {
  max-width: 980px;
  width: max-content;
  font-size: clamp(5rem, 10.6vw, 13.4rem);
  line-height: 0.9;
}

.project-directory--editorial .project-directory__hero p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.05vw, 1.18rem);
  font-weight: 400;
  line-height: 1.68;
}

.directory-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.48fr);
  min-height: clamp(430px, 45vw, 620px);
  margin-bottom: clamp(42px, 5vw, 80px);
  border: 1px solid var(--line);
  background: rgba(250, 246, 237, 0.68);
  overflow: hidden;
}

.directory-feature--editorial {
  position: relative;
  display: block;
  min-height: clamp(560px, 62vw, 880px);
  margin-bottom: clamp(56px, 7vw, 118px);
  color: #fff;
  border: 0;
  background: #1f1d18;
}

.directory-feature--editorial::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23, 23, 19, 0.08), rgba(23, 23, 19, 0.18) 40%, rgba(23, 23, 19, 0.66)),
    radial-gradient(circle at 48% 48%, transparent 0 34%, rgba(23, 23, 19, 0.34) 84%);
  content: "";
  pointer-events: none;
}

.directory-feature__media {
  position: relative;
  overflow: hidden;
}

.directory-feature--editorial .directory-feature__media {
  position: absolute;
  inset: 0;
}

.directory-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directory-feature--editorial .directory-feature__media img {
  filter: saturate(0.9) contrast(0.98) brightness(0.84);
  object-position: center;
}

.directory-feature__copy {
  display: grid;
  align-content: end;
  gap: 24px;
  padding: clamp(34px, 4.6vw, 74px);
  border-left: 1px solid var(--line);
}

.directory-feature--editorial .directory-feature__copy {
  position: absolute;
  right: clamp(24px, 6.4vw, 124px);
  bottom: clamp(28px, 6vw, 112px);
  left: clamp(24px, 6.4vw, 124px);
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.36fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  padding: 0;
  border: 0;
}

.directory-feature__copy h2 {
  font-size: clamp(4rem, 7.4vw, 9rem);
}

.directory-feature--editorial .directory-feature__copy h2 {
  grid-column: 1;
  color: #fff;
  font-size: clamp(3.6rem, 8.2vw, 11rem);
  line-height: 0.92;
  text-shadow: 0 3px 28px rgba(23, 23, 19, 0.52);
}

.directory-feature--editorial .project-meta {
  grid-column: 1;
}

.directory-feature--editorial .project-meta,
.directory-feature--editorial p,
.directory-feature--editorial .project-feature__cta {
  color: #fff;
  text-shadow: 0 2px 18px rgba(23, 23, 19, 0.48);
}

.directory-feature__copy p {
  max-width: 430px;
}

.directory-feature--editorial .directory-feature__copy p {
  grid-column: 2;
  max-width: 430px;
  margin: 0;
  font-size: clamp(0.95rem, 1vw, 1.12rem);
  font-weight: 400;
  line-height: 1.62;
}

.directory-feature--editorial .project-feature__cta {
  grid-column: 2;
}

.project-directory__essay {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 96px);
  margin-bottom: clamp(52px, 7vw, 118px);
  padding: clamp(36px, 5vw, 76px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-directory__essay p {
  max-width: 42em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.12vw, 1.28rem);
  font-weight: 400;
  line-height: 1.72;
}

.directory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.directory-list .project-line {
  min-height: 170px;
  background: rgba(250, 246, 237, 0.76);
}

.directory-list--editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.directory-project-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) minmax(190px, 0.28fr);
  gap: clamp(18px, 4vw, 74px);
  align-items: center;
  min-height: clamp(210px, 21vw, 330px);
  padding: clamp(24px, 3.2vw, 52px) 0;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, border-color 220ms ease;
}

.directory-project-row:hover,
.directory-project-row:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--line-strong);
}

.directory-project-row__number {
  align-self: start;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1;
}

.directory-project-row__body {
  display: grid;
  gap: clamp(12px, 1.4vw, 22px);
}

.directory-project-row__body strong {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7.3vw, 9rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.92;
}

.directory-project-row__body > span:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  font-weight: 400;
  line-height: 1.56;
}

.directory-project-row__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.34 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.directory-project-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.97) brightness(0.94);
  transition: transform 680ms cubic-bezier(0.16, 0.74, 0.18, 1), filter 680ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.directory-project-row:hover .directory-project-row__image img,
.directory-project-row:focus-visible .directory-project-row__image img {
  filter: saturate(0.98) contrast(1) brightness(0.98);
  transform: scale(1.035);
}

.residence-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 0.98fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding-top: clamp(76px, 7vw, 118px);
  padding-bottom: clamp(74px, 7vw, 118px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.residence-feature__copy {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  max-width: 560px;
}

.residence-feature__copy h2 {
  font-size: clamp(3.4rem, 6vw, 6.8rem);
}

.text-link {
  width: fit-content;
  margin-top: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.residence-feature__media {
  position: relative;
  display: block;
  height: clamp(380px, 36vw, 560px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.residence-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.residence-feature__media span {
  position: absolute;
  left: clamp(18px, 2vw, 32px);
  bottom: clamp(18px, 2vw, 32px);
  padding-top: 18px;
  color: rgba(250, 246, 237, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-top: 1px solid rgba(250, 246, 237, 0.62);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: stretch;
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 0.92fr);
}

.panel {
  align-content: end;
  min-height: clamp(420px, 38vw, 560px);
  padding: clamp(30px, 4.2vw, 68px);
  border: 1px solid var(--line);
  background: rgba(250, 246, 237, 0.56);
  overflow: hidden;
}

.panel h2 {
  max-width: 100%;
  font-size: clamp(3rem, 4.6vw, 5.7rem);
}

.panel--dark {
  background: var(--ink);
  color: var(--paper);
}

.panel--dark p,
.panel--dark .eyebrow {
  color: rgba(250, 246, 237, 0.72);
}

.wide-media {
  aspect-ratio: 16 / 9;
}

.tall-media {
  aspect-ratio: 4 / 5.35;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.7fr);
  gap: clamp(38px, 5.4vw, 84px);
  align-items: center;
  min-height: min(760px, calc(88vh - 72px));
  padding-top: clamp(86px, 7.4vw, 128px);
  padding-bottom: clamp(56px, 5vw, 84px);
  border-bottom: 1px solid var(--line);
}

.detail-hero > div:first-child {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
}

.detail-hero h1 {
  font-size: clamp(4rem, 7.1vw, 8.8rem);
  max-width: 900px;
}

.detail-hero > .image-frame {
  width: 100%;
  height: clamp(390px, 40vw, 620px);
  min-height: 0;
  box-shadow: none;
}

.detail-hero > .image-frame img {
  height: 100%;
  object-fit: cover;
}

.project-image-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #1f1d18;
}

.project-image-hero__media,
.project-image-hero__shade {
  position: absolute;
  inset: 0;
}

.project-image-hero__media {
  z-index: 0;
  overflow: hidden;
}

.project-image-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.9) contrast(0.98) brightness(0.78);
}

.project-image-hero__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23, 23, 19, 0.36), rgba(23, 23, 19, 0.08) 36%, rgba(23, 23, 19, 0.48)),
    radial-gradient(circle at 50% 44%, rgba(23, 23, 19, 0.06) 0 32%, rgba(23, 23, 19, 0.38) 86%);
  pointer-events: none;
}

.project-image-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(92vw, 1040px);
  min-width: 0;
  max-width: 100%;
  padding: clamp(120px, 16vh, 190px) clamp(20px, 4vw, 72px) clamp(56px, 8vh, 92px);
  color: #fff;
  text-align: center;
}

.project-image-hero__content *,
.project-story-card figcaption {
  color: #fff;
}

.project-image-hero__kicker,
.project-image-hero__meta {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(23, 23, 19, 0.44);
}

.project-image-hero__kicker {
  align-self: start;
  margin-bottom: clamp(150px, 23vh, 260px);
}

.project-image-hero h1 {
  max-width: none;
  color: #fff;
  font-size: clamp(3.3rem, 6.1vw, 8.4rem);
  letter-spacing: 0.18em;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 3px 28px rgba(23, 23, 19, 0.52);
}

.project-image-hero__meta {
  margin-top: clamp(18px, 2vw, 28px);
}

.project-image-hero__lead {
  align-self: end;
  max-width: 740px;
  margin: clamp(144px, 22vh, 248px) auto 0;
  color: #fff;
  font-size: clamp(0.82rem, 0.92vw, 1rem);
  font-weight: 850;
  line-height: 1.5;
  text-shadow: 0 2px 22px rgba(23, 23, 19, 0.62);
}

/* Standard placement for new image-led project heroes. */
.project-image-hero--editorial-lock .project-image-hero__content {
  height: 100%;
  grid-template-rows: minmax(118px, 0.28fr) auto minmax(72px, 0.18fr) auto auto minmax(160px, 1fr) auto;
  align-content: stretch;
}

.project-image-hero--editorial-lock .project-image-hero__kicker {
  grid-row: 2;
  align-self: center;
  margin-bottom: 0;
}

.project-image-hero--editorial-lock h1 {
  grid-row: 4;
  align-self: center;
  white-space: normal;
}

.project-image-hero--editorial-lock .project-image-hero__meta {
  grid-row: 5;
  align-self: start;
  margin-top: 0;
}

.project-image-hero--editorial-lock .project-image-hero__lead {
  grid-row: 7;
  align-self: end;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .project-image-hero--editorial-lock .project-image-hero__content {
    grid-template-rows: minmax(88px, 0.24fr) auto minmax(48px, 0.18fr) auto auto minmax(58px, 0.9fr) auto;
  }

  .project-image-hero--editorial-lock .project-image-hero__kicker,
  .project-image-hero--editorial-lock .project-image-hero__meta {
    white-space: normal;
  }
}

.detail-facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.detail-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.detail-facts b {
  color: var(--ink);
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}

.gallery-grid .image-frame:first-child {
  aspect-ratio: 4 / 5.2;
}

.gallery-grid .image-frame:not(:first-child) {
  aspect-ratio: 5 / 4.1;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.story-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
  min-height: clamp(220px, 22vw, 310px);
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid var(--line);
  background: rgba(250, 246, 237, 0.58);
  overflow: hidden;
}

.story-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-card strong {
  align-self: end;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.9rem, 2.7vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.story-card p {
  max-width: 34em;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.studio-story-grid {
  grid-template-columns: 1fr;
}

.studio-craft {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.52fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.studio-craft__text {
  display: grid;
  align-content: end;
  gap: clamp(18px, 2vw, 28px);
  min-height: clamp(360px, 38vw, 540px);
  padding: clamp(34px, 5vw, 82px);
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.studio-craft__text h2 {
  max-width: 720px;
  font-size: clamp(3.2rem, 6vw, 7.2rem);
  line-height: 0.98;
}

.studio-craft__image {
  min-height: clamp(360px, 40vw, 580px);
}

.about-page .site-main {
  background:
    linear-gradient(90deg, rgba(23, 52, 82, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 52, 82, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 76px 76px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.72fr);
  gap: clamp(44px, 6vw, 106px);
  align-items: end;
  padding-top: clamp(132px, 11vw, 190px);
  padding-bottom: clamp(70px, 8vw, 132px);
}

.about-hero__copy {
  display: grid;
  gap: clamp(20px, 2.2vw, 34px);
  align-content: end;
}

.about-hero h1,
.about-section-head h2,
.about-process__copy h2,
.about-region h2 {
  max-width: 980px;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}

.about-hero h1 {
  font-size: 6.4rem;
}

.about-hero__lead {
  max-width: 620px;
  margin: 0;
  color: rgba(23, 23, 19, 0.72);
  font-size: 1.14rem;
  line-height: 1.58;
}

.about-hero__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-hero__signals span {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
  padding: 1rem clamp(0.9rem, 1.2vw, 1.3rem);
  color: rgba(23, 23, 19, 0.7);
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-hero__signals span + span {
  border-left: 1px solid var(--line);
}

.about-hero__signals strong {
  color: #173452;
  font-size: 0.64rem;
}

.about-hero__media {
  display: grid;
  align-items: end;
  min-width: 0;
}

.about-hero__image,
.about-process__image,
.about-image-band figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 19, 0.14);
  background: #e9e2d3;
}

.about-hero__image img,
.about-process__image img,
.about-image-band img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__image--main {
  aspect-ratio: 1 / 1.08;
}

.about-hero__image--detail {
  justify-self: end;
  width: min(66%, 360px);
  aspect-ratio: 4 / 5.1;
  margin-top: clamp(-118px, -7vw, -72px);
  margin-right: clamp(18px, 3vw, 46px);
  border-color: rgba(250, 246, 237, 0.9);
  box-shadow: 0 28px 76px rgba(23, 23, 19, 0.22);
}

.about-statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-statement > p {
  max-width: 1080px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 3.35rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.about-statement__list {
  display: grid;
  border-top: 1px solid var(--line);
}

.about-statement__list span {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: rgba(23, 23, 19, 0.7);
  font-size: 0.9rem;
  font-weight: 850;
}

.about-principles {
  display: grid;
  gap: clamp(34px, 5vw, 76px);
}

.about-section-head {
  display: grid;
  gap: 18px;
  max-width: 940px;
}

.about-section-head h2,
.about-process__copy h2,
.about-region h2 {
  font-size: 4.8rem;
}

.about-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-principles__grid article {
  display: grid;
  align-content: space-between;
  gap: clamp(24px, 4vw, 72px);
  min-height: 360px;
  padding: clamp(24px, 3.2vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 246, 237, 0.7);
}

.about-principles__grid span,
.about-process__steps span {
  color: #173452;
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-principles__grid strong {
  font-family: var(--display);
  font-size: 2.28rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.about-principles__grid p {
  margin: 0;
  color: rgba(23, 23, 19, 0.68);
  line-height: 1.58;
}

.about-process {
  display: grid;
  grid-template-columns: minmax(340px, 0.55fr) minmax(0, 0.85fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: stretch;
}

.about-process__image {
  min-height: 620px;
}

.about-process__copy {
  display: grid;
  align-content: center;
  gap: clamp(20px, 2.4vw, 34px);
  padding: clamp(32px, 5vw, 76px) 0 clamp(32px, 5vw, 76px) clamp(26px, 4vw, 68px);
  border-left: 1px solid var(--line);
}

.about-process__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: rgba(23, 23, 19, 0.72);
  font-size: 1.04rem;
  line-height: 1.62;
}

.about-process__steps {
  display: grid;
  gap: 0;
  max-width: 720px;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.about-process__steps li {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: 22px;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.about-process__steps p {
  margin: 0;
  color: rgba(23, 23, 19, 0.68);
  line-height: 1.5;
}

.about-image-band {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 46px);
  align-items: end;
  padding-top: clamp(40px, 5vw, 72px);
}

.about-image-band figure {
  display: grid;
  gap: 0;
  background: transparent;
}

.about-image-band figure:first-child {
  aspect-ratio: 4 / 5.35;
}

.about-image-band figure:last-child {
  aspect-ratio: 16 / 10;
}

.about-image-band figcaption {
  padding: 0.9rem 0 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.45;
}

.about-region {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.5fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 92px);
  background: #173452;
  color: var(--paper);
}

.about-region .eyebrow,
.about-region p {
  color: rgba(250, 246, 237, 0.72);
}

.about-region p {
  max-width: 560px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .about-hero,
  .about-statement,
  .about-process,
  .about-region {
    grid-template-columns: 1fr;
  }

  .about-hero {
    align-items: start;
  }

  .about-hero__copy {
    max-width: 900px;
  }

  .about-hero__media {
    width: min(100%, 760px);
  }

  .about-principles__grid {
    grid-template-columns: 1fr;
  }

  .about-principles__grid article {
    min-height: 280px;
  }

  .about-process__copy {
    padding: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .about-hero {
    gap: 34px;
    padding-top: 112px;
  }

  .about-hero h1 {
    font-size: 3.85rem;
    line-height: 0.94;
  }

  .about-hero__lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .about-hero__signals {
    grid-template-columns: 1fr;
  }

  .about-hero__signals span {
    padding: 0.82rem 0;
  }

  .about-hero__signals span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-hero__image--main {
    aspect-ratio: 4 / 4.8;
  }

  .about-hero__image--detail {
    width: min(74%, 280px);
    margin-top: -54px;
    margin-right: 14px;
  }

  .about-statement > p {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .about-section-head h2,
  .about-process__copy h2,
  .about-region h2 {
    font-size: 3rem;
    line-height: 0.98;
  }

  .about-principles__grid article {
    min-height: auto;
    gap: 28px;
    padding: 24px 0;
    border-right: 0;
    background: transparent;
  }

  .about-principles__grid {
    border-left: 0;
  }

  .about-principles__grid strong {
    font-size: 2rem;
  }

  .about-process__image {
    min-height: 420px;
  }

  .about-process__steps li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-image-band {
    grid-template-columns: 1fr;
  }

  .about-image-band figure:first-child,
  .about-image-band figure:last-child {
    aspect-ratio: 4 / 4.8;
  }

  .about-region {
    margin-bottom: 42px;
    padding-top: 54px;
    padding-bottom: 54px;
  }
}

@media (max-width: 360px) {
  .about-hero h1 {
    font-size: 3.1rem;
  }

  .about-section-head h2,
  .about-process__copy h2,
  .about-region h2 {
    font-size: 2.55rem;
  }

  .about-statement > p {
    font-size: 1.9rem;
  }
}

.project-narrative {
  display: grid;
  grid-template-columns: minmax(360px, 0.4fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 104px);
  align-items: start;
}

.project-narrative__copy {
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
  position: sticky;
  top: 118px;
  padding: clamp(10px, 1.2vw, 18px) 0;
}

.project-narrative__copy h2 {
  max-width: 620px;
  font-size: clamp(2.7rem, 4vw, 5.15rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.project-narrative__copy p {
  max-width: 560px;
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.55;
}

.project-narrative__list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.project-narrative__list div {
  display: grid;
  grid-template-columns: minmax(78px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.project-abstract {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 96px);
  border-bottom: 1px solid var(--line);
}

.project-abstract p {
  margin: 0;
  max-width: 35em;
  color: rgba(23, 23, 19, 0.8);
  font-family: var(--text);
  font-size: clamp(0.92rem, 0.98vw, 1.08rem);
  font-weight: 300;
  letter-spacing: 0.006em;
  line-height: 1.84;
  text-wrap: pretty;
}

.project-abstract p::before {
  display: block;
  margin-bottom: 16px;
  color: rgba(23, 23, 19, 0.46);
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
}

.project-abstract p:nth-child(1)::before {
  content: "01 / HELHET";
}

.project-abstract p:nth-child(2)::before {
  content: "02 / MATERIAL";
}

.project-abstract p:nth-child(3)::before {
  content: "03 / RYTME";
}

.project-sequence,
.project-interior-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: start;
}

.project-sequence__copy,
.project-interior-story__copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: clamp(20px, 2.4vw, 34px);
  padding-top: clamp(12px, 2vw, 32px);
}

.project-sequence__copy h2,
.project-interior-story__copy h2 {
  max-width: 720px;
  font-size: clamp(3rem, 5.1vw, 7rem);
  line-height: 0.98;
}

.project-sequence__copy p,
.project-interior-story__copy p {
  max-width: 620px;
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.62;
}

.project-sequence__images,
.project-interior-story__grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
}

.project-story-card {
  position: relative;
  min-height: clamp(300px, 34vw, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.project-story-card--wide {
  grid-column: span 2;
}

.project-story-card--tall {
  min-height: clamp(520px, 54vw, 820px);
}

.project-story-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0), rgba(23, 23, 19, 0.68));
  content: "";
  pointer-events: none;
}

.project-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.97) brightness(0.92);
}

.project-story-card figcaption {
  position: absolute;
  right: clamp(14px, 1.5vw, 24px);
  bottom: clamp(13px, 1.4vw, 24px);
  left: clamp(14px, 1.5vw, 24px);
  z-index: 2;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(23, 23, 19, 0.62);
  text-transform: uppercase;
}

.image-mosaic {
  display: block;
  columns: 3 280px;
  column-gap: clamp(20px, 2.4vw, 36px);
}

.image-mosaic .image-frame {
  display: inline-block;
  width: 100%;
  min-height: 0 !important;
  margin: 0 0 clamp(18px, 2.2vw, 32px);
  aspect-ratio: auto !important;
  box-shadow: none;
  break-inside: avoid;
}

.image-mosaic .image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.residence-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #1f1d18;
}

.residence-hero__media,
.residence-hero__shade {
  position: absolute;
  inset: 0;
}

.residence-hero__media {
  z-index: 0;
  overflow: hidden;
}

.residence-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.98) brightness(0.84);
}

.residence-hero__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23, 23, 19, 0.2), transparent 28%, rgba(23, 23, 19, 0.34)),
    radial-gradient(circle at 50% 52%, transparent 0 34%, rgba(23, 23, 19, 0.28) 78%);
  pointer-events: none;
}

.residence-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(92vw, 980px);
  padding: clamp(120px, 16vh, 190px) clamp(20px, 4vw, 72px) clamp(56px, 8vh, 92px);
  color: #fff;
  text-align: center;
}

.residence-hero__content *,
.residence-panorama div,
.residence-panorama div *,
.residence-showcase-card figcaption {
  color: #fff;
}

.residence-hero__kicker,
.residence-hero__meta {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.residence-hero__kicker {
  align-self: start;
  margin-bottom: clamp(160px, 25vh, 280px);
}

.residence-hero h1 {
  max-width: none;
  color: inherit;
  font-size: clamp(3.4rem, 5.4vw, 7.6rem);
  letter-spacing: 0.22em;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(23, 23, 19, 0.32);
}

.residence-hero__meta {
  margin-top: clamp(18px, 2vw, 28px);
  text-shadow: 0 2px 16px rgba(23, 23, 19, 0.3);
}

.residence-hero__meta span {
  opacity: 0.56;
}

.residence-hero__lead {
  align-self: end;
  max-width: 760px;
  margin: clamp(150px, 23vh, 260px) auto 0;
  color: #fff;
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  font-weight: 800;
  line-height: 1.5;
  text-shadow: 0 2px 22px rgba(23, 23, 19, 0.58);
}

.residence-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.72fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}

.residence-intro__plate {
  display: grid;
  gap: 26px;
  margin-top: clamp(8px, 2vw, 38px);
}

.residence-intro__plate img {
  width: 100%;
  aspect-ratio: 3 / 4.25;
  object-fit: cover;
  border: 1px solid var(--line);
}

.residence-intro__plate figcaption {
  max-width: 34em;
  padding-top: 22px;
  color: var(--ink);
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);
  font-weight: 800;
  line-height: 1.5;
  border-top: 1px solid var(--line);
}

.residence-intro__copy {
  display: grid;
  gap: clamp(22px, 3vw, 44px);
  padding-top: clamp(4px, 1.5vw, 26px);
}

.residence-intro__copy h2,
.residence-breakdown__text h2,
.residence-materials__copy h2 {
  max-width: 960px;
  font-size: clamp(3.2rem, 6.2vw, 8.4rem);
  line-height: 0.96;
}

.residence-intro__copy p,
.residence-breakdown__text p,
.residence-materials__copy p {
  max-width: 760px;
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.65;
}

.residence-breakdown {
  display: grid;
  gap: clamp(36px, 6vw, 90px);
}

.residence-breakdown__text {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(320px, 0.45fr);
  gap: clamp(36px, 7vw, 124px);
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: clamp(34px, 5vw, 80px);
}

.residence-breakdown__text .eyebrow {
  grid-column: 1 / -1;
}

.residence-fragments {
  display: grid;
  grid-template-columns: 0.82fr 1.12fr 0.72fr;
  gap: clamp(18px, 2vw, 34px);
  align-items: stretch;
}

.residence-fragment {
  position: relative;
  min-height: clamp(340px, 40vw, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.residence-fragment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.residence-fragment--roof img {
  object-position: center top;
}

.residence-fragment--threshold {
  transform: translateY(clamp(42px, 7vw, 110px));
}

.residence-fragment--window {
  min-height: clamp(280px, 32vw, 480px);
  transform: translateY(clamp(92px, 12vw, 180px));
}

.residence-panorama {
  position: relative;
  margin: clamp(76px, 9vw, 150px) auto;
  overflow: hidden;
  color: rgba(250, 246, 237, 0.95);
}

.residence-panorama img {
  width: 100%;
  height: clamp(340px, 48vw, 760px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.96) brightness(0.82);
}

.residence-panorama div {
  position: absolute;
  right: clamp(26px, 8vw, 150px);
  bottom: clamp(24px, 5vw, 82px);
  width: min(520px, calc(100% - 48px));
  padding-top: 20px;
  font-size: clamp(0.82rem, 0.92vw, 1rem);
  font-weight: 850;
  line-height: 1.55;
  border-top: 1px solid rgba(250, 246, 237, 0.64);
}

.residence-materials {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: start;
}

.residence-materials__copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: clamp(20px, 2.7vw, 38px);
  padding-top: clamp(12px, 2vw, 32px);
}

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

.residence-materials__grid .image-frame {
  min-height: clamp(260px, 34vw, 520px);
  box-shadow: none;
}

.residence-materials__grid .image-frame:nth-child(2),
.residence-materials__grid .image-frame:nth-child(4) {
  transform: translateY(clamp(38px, 6vw, 92px));
}

.residence-materials__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.residence-showcase {
  display: grid;
  gap: clamp(42px, 6vw, 92px);
}

.residence-showcase__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: clamp(30px, 6vw, 106px);
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: clamp(36px, 5vw, 78px);
}

.residence-showcase__intro .eyebrow {
  grid-column: 1 / -1;
}

.residence-showcase__intro h2 {
  max-width: 940px;
  font-size: clamp(3rem, 5.8vw, 7.8rem);
  line-height: 0.96;
}

.residence-showcase__intro p {
  max-width: 680px;
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  line-height: 1.65;
}

.residence-showcase__grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.45vw, 26px);
}

.residence-showcase-card {
  position: relative;
  min-height: clamp(250px, 26vw, 460px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.residence-showcase-card--wide {
  grid-column: span 2;
}

.residence-showcase-card--tall {
  grid-row: span 2;
  min-height: clamp(520px, 55vw, 860px);
}

.residence-showcase-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0), rgba(23, 23, 19, 0.66));
  content: "";
  pointer-events: none;
}

.residence-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.98) brightness(0.9);
}

.residence-showcase-card figcaption {
  position: absolute;
  right: clamp(14px, 1.5vw, 24px);
  bottom: clamp(13px, 1.4vw, 24px);
  left: clamp(14px, 1.5vw, 24px);
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(23, 23, 19, 0.62);
  text-transform: uppercase;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  gap: clamp(40px, 7vw, 126px);
  align-items: end;
  padding-top: clamp(126px, 10vw, 188px);
  padding-bottom: clamp(48px, 5vw, 90px);
}

.contact-hero__copy {
  display: grid;
  gap: clamp(24px, 2.5vw, 38px);
  max-width: 980px;
}

.contact-hero__copy h1 {
  max-width: 980px;
  font-size: clamp(4.5rem, 8.8vw, 12.4rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.92;
}

.contact-hero__copy > p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  font-weight: 450;
  line-height: 1.52;
}

.contact-hero__meta {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  max-width: 760px;
  padding-top: clamp(20px, 2.4vw, 34px);
  border-top: 1px solid var(--line);
  color: rgba(23, 23, 19, 0.74);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-hero__meta a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
}

.contact-visual {
  position: relative;
  min-height: clamp(520px, 48vw, 760px);
  overflow: hidden;
  border: 0;
  background: var(--paper-deep);
}

.contact-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 23, 19, 0.18), rgba(23, 23, 19, 0.02) 34%, rgba(23, 23, 19, 0.46)),
    linear-gradient(90deg, rgba(23, 23, 19, 0.16), transparent 44%);
  content: "";
  pointer-events: none;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.96) brightness(0.88);
}

.contact-visual figcaption {
  position: absolute;
  left: clamp(22px, 3vw, 48px);
  right: clamp(22px, 3vw, 48px);
  bottom: clamp(22px, 3vw, 48px);
  z-index: 2;
  color: rgba(250, 246, 237, 0.86);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-brief {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.76fr);
  gap: clamp(46px, 7vw, 132px);
  align-items: start;
  padding-top: clamp(48px, 5vw, 86px);
}

.contact-brief__notes {
  display: grid;
  gap: clamp(22px, 2.4vw, 34px);
  position: sticky;
  top: 120px;
  padding-top: 4px;
}

.contact-brief__notes h2 {
  max-width: 560px;
  font-family: var(--display);
  font-size: clamp(2.55rem, 4.5vw, 6.1rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
}

.contact-note {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: clamp(18px, 2vw, 30px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-note span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.contact-note p {
  max-width: 520px;
  color: rgba(23, 23, 19, 0.68);
  font-size: clamp(0.98rem, 1.02vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
}

.contact-form--premium {
  background:
    linear-gradient(180deg, rgba(250, 246, 237, 0.72), rgba(245, 241, 229, 0.46)),
    var(--paper);
  box-shadow: none;
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 3vw, 52px);
  border-top: 1px solid var(--line-strong);
  background: transparent;
}

.contact-form__head {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 92px);
  padding-top: clamp(22px, 2.4vw, 36px);
}

.contact-form__head p:last-child {
  max-width: 760px;
  color: rgba(23, 23, 19, 0.68);
  font-size: clamp(1rem, 1.16vw, 1.28rem);
  font-weight: 500;
  line-height: 1.58;
}

.contact-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 72px);
  border-top: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 13px;
  min-width: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

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

.field label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.18vw, 1.28rem);
  font-weight: 400;
  line-height: 1.35;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(23, 23, 19, 0.42);
}

.field select {
  appearance: none;
  cursor: pointer;
}

.field textarea {
  min-height: 164px;
  resize: vertical;
}

.form-status {
  max-width: 720px;
  margin: -16px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(23, 52, 82, 0.24);
  background: rgba(23, 52, 82, 0.08);
  color: #173452;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.form-status.is-error {
  border-color: rgba(139, 37, 27, 0.28);
  background: rgba(139, 37, 27, 0.08);
  color: #8b251b;
}

.contact-form .contact-submit-button[disabled] {
  cursor: wait;
  opacity: 0.78;
}

.contact-form .contact-submit-button.is-sent {
  border-color: #5d5549 !important;
  background: #5d5549 !important;
  color: #fffaf0 !important;
}

.form-submit {
  justify-self: start;
  width: auto;
  min-height: 58px;
  padding: 0 30px;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--paper-soft);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 220ms ease, transform 220ms ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: #3d382f;
  transform: translateY(-2px);
}

.form-submit.is-sent {
  background: #5d5549;
}

.page-footer {
  --footer-frame-inset: 0px;
  --footer-frame-bottom-inset: 0px;
  --footer-text: #fff5e6;
  --footer-muted: rgba(255, 245, 230, 0.78);
  --footer-soft: rgba(255, 245, 230, 0.62);
  --footer-heading: #f4d89b;
  --footer-rule: rgba(255, 245, 230, 0.18);
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 0;
  border-top: 0;
  background: var(--paper);
  color: #f7efe2;
}

.page-footer::before {
  content: none;
}

.footer-card-shell {
  --footer-ribbon-left: -58px;
  --footer-ribbon-top: 105.7%;
  --footer-ribbon-height: 86%;
  --footer-ribbon-bleed: 0px;
  --footer-f-clearance: clamp(360px, 29vw, 450px);
  --footer-logo-size: clamp(140px, 9.8vw, 184px);
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  width: calc(100% - var(--footer-frame-inset) - var(--footer-frame-inset));
  min-height: clamp(340px, 40vh, 430px);
  margin: 0 var(--footer-frame-inset) var(--footer-frame-bottom-inset);
  border: 0;
  border-radius: 0;
  background: var(--footer-cta-bg, var(--paper));
  box-shadow: none;
}

.footer-card-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 18%, rgba(48, 151, 190, 0.28), rgba(48, 151, 190, 0) 30%),
    radial-gradient(circle at 61% 18%, rgba(244, 216, 155, 0.14), rgba(10, 9, 7, 0) 38%),
    linear-gradient(90deg, rgba(5, 7, 8, 0.94), rgba(7, 24, 31, 0.76) 45%, rgba(5, 6, 5, 0.92)),
    linear-gradient(180deg, rgba(20, 45, 70, 0.48), rgba(7, 7, 6, 0.92)),
    url("assets/footer-wood-cv6.webp") center / cover no-repeat;
  -webkit-mask: url("assets/footer-wood-cutout.svg?v=13") 0 0 / 100% 100% no-repeat;
  mask: url("assets/footer-wood-cutout.svg?v=13") 0 0 / 100% 100% no-repeat;
  content: "";
}

.footer-card-shell::after {
  position: absolute;
  top: var(--footer-ribbon-top);
  bottom: auto;
  left: var(--footer-ribbon-left);
  z-index: 2;
  width: auto;
  height: var(--footer-ribbon-height);
  aspect-ratio: 655 / 465;
  pointer-events: none;
  background: url("assets/brand/byggsikt-footer-ribbon-only-true-cutouts-extended-source.svg?v=12") 0 0 / 100% 100% no-repeat;
  opacity: 1;
  transform: rotate(-90deg);
  transform-origin: 0 0;
  content: "";
}

.footer-cta {
  position: relative;
  isolation: isolate;
  background: var(--footer-cta-bg, #dfd8ca);
  color: var(--footer-cta-ink, #171510);
  border-top: 1px solid var(--footer-cta-line, rgba(23, 21, 16, 0.08));
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: minmax(112px, 0.18fr) minmax(0, 0.78fr) minmax(180px, 0.24fr);
  gap: clamp(52px, 6.8vw, 136px);
  align-items: end;
  max-width: none;
  min-height: 0;
  padding-top: clamp(58px, 5.8vw, 96px);
  padding-bottom: clamp(86px, 7.2vw, 128px);
}

.footer-cta__eyebrow {
  margin: 0;
  color: var(--footer-cta-faint, rgba(23, 21, 16, 0.58));
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-cta__copy {
  display: grid;
  gap: clamp(18px, 1.9vw, 28px);
}

.footer-cta__copy h2 {
  margin: 0;
  max-width: 840px;
  color: var(--footer-cta-ink, #171510);
  font-family: var(--display);
  font-size: clamp(4rem, 6.35vw, 7.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}

.footer-cta__copy p {
  margin: 0;
  max-width: 640px;
  color: var(--footer-cta-muted, rgba(23, 21, 16, 0.62));
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  font-weight: 560;
  line-height: 1.68;
}

.footer-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  margin-bottom: clamp(6px, 0.8vw, 14px);
  min-width: 174px;
  min-height: 46px;
  padding: 0.98rem 1.48rem 0.92rem;
  border: 1px solid var(--footer-cta-ink, #171510);
  border-radius: 2px;
  background: transparent;
  color: var(--footer-cta-ink, #171510);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(23, 21, 16, 0);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.footer-cta__button:hover,
.footer-cta__button:focus-visible {
  transform: translateY(-1px);
  background: var(--footer-cta-ink, #171510);
  color: var(--footer-cta-bg, var(--paper-soft));
  box-shadow: inset 0 0 0 1px rgba(243, 238, 226, 0.18);
}

@media (max-width: 1180px) {
  .footer-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(24px, 5vw, 52px);
    padding-top: clamp(58px, 7vw, 84px);
    padding-bottom: clamp(72px, 8vw, 96px);
  }

  .footer-cta__eyebrow {
    grid-column: 1 / -1;
  }

  .footer-cta__copy h2 {
    font-size: clamp(3.7rem, 10vw, 6.8rem);
  }

  .footer-mark::before {
    top: calc(0px - var(--footer-logo-size) - clamp(42px, 7vw, 64px));
    left: 0;
  }
}

@media (max-width: 760px) {
  .footer-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .footer-cta__copy h2 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .footer-cta__copy p {
    font-size: 0.98rem;
  }

  .footer-cta__button {
    justify-self: start;
    min-width: 164px;
  }
}

.page-footer .section {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  padding: clamp(42px, 4.6vw, 72px) clamp(34px, 7vw, 132px);
}

.page-footer .footer-grid {
  padding-top: clamp(72px, 8vh, 104px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) repeat(3, minmax(150px, 0.42fr));
  gap: clamp(36px, 4.8vw, 96px);
  align-items: start;
}

.footer-mark {
  box-sizing: border-box;
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 560px;
}

.footer-mark::before {
  position: absolute;
  top: clamp(-22px, -1.35vw, -8px);
  left: clamp(-292px, -15.6vw, -216px);
  z-index: 1;
  width: var(--footer-logo-size);
  height: var(--footer-logo-size);
  pointer-events: none;
  background:
    url("assets/brand/mw-logo-light-footer.webp") center / 92% auto no-repeat,
    radial-gradient(circle at 50% 52%, rgba(49, 151, 185, 0.1), rgba(20, 52, 82, 0.05) 46%, rgba(0, 0, 0, 0) 70%);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.44));
  mix-blend-mode: normal;
  opacity: 0.9;
  content: "";
}

.footer-mark strong {
  font-family: var(--sans);
  font-size: clamp(0.94rem, 0.92vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--footer-text);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 30px rgba(8, 7, 6, 0.34);
  white-space: nowrap;
}

.footer-mark p {
  color: var(--footer-muted);
  max-width: 480px;
  font-size: clamp(0.94rem, 0.95vw, 1.02rem);
  font-weight: 570;
  line-height: 1.72;
}

.footer-col {
  display: grid;
  gap: 13px;
  padding-left: clamp(14px, 1.3vw, 22px);
  border-left: 1px solid var(--footer-rule);
  color: var(--footer-muted);
  font-size: 0.84rem;
  font-weight: 680;
}

.footer-col h2 {
  margin: 0 0 12px;
  color: var(--footer-heading);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-col a {
  width: fit-content;
  color: var(--footer-muted);
  line-height: 1.28;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-col a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--footer-text);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 245, 230, 0.12);
  color: var(--footer-soft);
  font-size: 0.78rem;
  font-weight: 680;
  padding-top: clamp(22px, 2.4vw, 38px);
  padding-bottom: clamp(24px, 2.8vw, 42px);
}

.footer-bottom span:last-child {
  color: var(--footer-muted);
}

.small-link {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-footer .small-link {
  color: rgba(247, 239, 226, 0.72);
}

.split-line {
  overflow: hidden;
  padding-top: 0.18em;
  padding-bottom: 0.16em;
  margin-top: -0.18em;
  margin-bottom: -0.16em;
}

@media (max-width: 1180px) {
  .hero,
  .detail-hero,
  .split,
  .split--reverse,
  .contact-hero,
  .contact-brief,
  .project-narrative,
  .residence-intro,
  .residence-breakdown__text,
  .residence-fragments,
  .residence-materials,
  .residence-showcase__intro,
  .project-abstract,
  .project-sequence,
  .project-interior-story,
  .studio-craft,
  .project-directory__essay,
  .project-index__intro,
  .project-index__layout,
  .project-feature,
  .project-directory__hero,
  .directory-feature,
  .residence-feature {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .detail-hero .image-frame {
    justify-self: start;
    width: min(100%, 520px);
  }

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

  .project-feature__copy,
  .directory-feature__copy {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .directory-list,
  .project-index__list {
    grid-template-columns: 1fr;
  }

  .directory-feature--editorial .directory-feature__copy {
    grid-template-columns: 1fr;
  }

  .directory-feature--editorial .directory-feature__copy p,
  .directory-feature--editorial .project-feature__cta {
    grid-column: 1;
  }

  .directory-project-row {
    grid-template-columns: 54px minmax(0, 1fr) minmax(150px, 0.32fr);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .project-narrative__copy {
    position: static;
  }

  .project-sequence__copy,
  .project-interior-story__copy {
    position: static;
  }

  .residence-intro__plate {
    width: min(100%, 520px);
  }

  .residence-fragment--threshold,
  .residence-fragment--window,
  .residence-materials__grid .image-frame:nth-child(2),
  .residence-materials__grid .image-frame:nth-child(4) {
    transform: none;
  }

  .residence-materials__copy {
    position: static;
  }

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

  .contact-brief__notes {
    position: static;
  }

  .contact-visual {
    min-height: 520px;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .home-hero,
  .residence-hero,
  .project-image-hero {
    height: 100svh;
    min-height: 100svh;
    max-height: none;
  }

  .home-hero__content,
  .residence-hero__content,
  .project-image-hero__content {
    height: 100%;
    min-height: 100%;
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .home-hero__content {
    grid-template-rows: minmax(0, 0.82fr) minmax(0, 1fr);
    width: min(100%, 860px);
  }

  .home-hero__brand-lock {
    gap: 0.28rem;
    transform: translateY(0.2rem);
  }

  .home-hero__title {
    font-size: 5.15rem;
  }

  .home-hero__subbrand {
    font-size: 2.36rem;
  }

  .home-hero__meta {
    max-width: 650px;
    font-size: 0.82rem;
    transform: translateY(54px);
  }

  .home-hero__lead {
    bottom: 34px;
    width: min(88vw, 620px);
    font-size: 0.82rem;
  }

  .home-hero-build img {
    object-position: 49% center;
  }

  .residence-hero__kicker,
  .project-image-hero__kicker {
    margin-bottom: clamp(86px, 13vh, 140px);
  }

  .residence-hero__lead,
  .project-image-hero__lead {
    margin-top: clamp(86px, 13vh, 140px);
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 70px;
    padding: 0 16px;
  }

  .brand {
    font-size: clamp(1.05rem, 5.2vw, 1.45rem);
    letter-spacing: 0.05em;
  }

  .brand--byggsikt {
    font-size: clamp(1.02rem, 4.8vw, 1.28rem);
    letter-spacing: 0.11em;
  }

.brand__mark--full-logo {
    width: clamp(38px, 10.5vw, 48px);
    max-width: calc(100vw - 76px);
  }

  .menu-button {
    display: inline-grid;
    place-content: center;
    width: 40px;
    height: 40px;
  }

  .site-nav {
    display: none;
  }

  .site-nav a {
    padding: 0;
    border-bottom: 0;
  }

  .section {
    padding: 54px 16px;
  }

  .menu-panel {
    gap: 24px;
    padding: 88px 18px 24px;
  }

  .menu-panel__nav {
    gap: clamp(12px, 2.6vh, 22px);
  }

  .menu-panel__nav a {
    min-height: 54px;
    padding: 0.2em 0 0.34em;
    font-size: clamp(1.65rem, 11vw, 3.2rem);
    letter-spacing: 0.08em;
    line-height: 1.02;
  }

  .menu-panel__foot {
    font-size: 0.64rem;
  }

  .home-hero {
    --hero-y-shift: 24px;
    height: 100svh;
    min-height: 100svh;
    max-height: none;
  }

  .home-hero__content {
    grid-template-rows: minmax(0, 0.82fr) minmax(0, 1fr);
    min-height: 100%;
    padding: 96px 18px 42px;
  }

  .home-hero__brand-lock {
    gap: 0.22rem;
    width: min(100%, 330px);
    transform: translateY(10px);
  }

  .home-hero__title {
    font-size: 4.1rem;
    letter-spacing: 0;
  }

  .home-hero__subbrand {
    font-size: 1.58rem;
    letter-spacing: 0;
  }

  .home-hero__meta {
    position: absolute;
    right: auto;
    bottom: clamp(148px, 20svh, 170px);
    left: 50%;
    width: min(calc(100% - 36px), 330px);
    max-width: 330px;
    transform: translateX(-50%);
    gap: 0.16rem 0.58rem;
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0;
    line-height: 1.22;
  }

  .home-hero__meta span + span::before {
    margin-right: 0.58rem;
  }

  .home-hero__lead {
    bottom: 22px;
    max-width: 332px;
    font-size: 0.78rem;
    line-height: 1.36;
  }

  .home-hero-build img {
    object-position: 49% center;
  }

  .home-hero--build .home-hero__media::after {
    background:
      linear-gradient(180deg, rgba(2, 7, 16, 0.1) 0%, rgba(2, 7, 16, 0) 34%, rgba(2, 7, 16, 0.54) 100%),
      linear-gradient(90deg, rgba(0, 2, 7, 0.18) 0%, rgba(0, 2, 7, 0) 42%, rgba(0, 2, 7, 0.22) 100%);
  }

  .residence-hero {
    height: 100svh;
    min-height: 100svh;
    max-height: none;
  }

  .residence-hero__content {
    width: 100%;
    height: 100%;
    padding: 96px 18px 38px;
  }

  .residence-hero__kicker {
    margin-bottom: clamp(54px, 10vh, 84px);
  }

  .residence-hero h1 {
    font-size: clamp(2.25rem, 11vw, 4.1rem);
    letter-spacing: 0.14em;
  }

  .residence-hero__meta {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .residence-hero__lead {
    margin-top: clamp(58px, 11vh, 92px);
    max-width: 330px;
    font-size: 0.76rem;
  }

  .project-image-hero {
    height: 100svh;
    min-height: 100svh;
    max-height: none;
  }

  .project-image-hero__content {
    width: 100%;
    height: 100%;
    padding: 96px 18px 38px;
  }

  .project-image-hero__kicker {
    margin-bottom: clamp(54px, 10vh, 84px);
  }

  .project-image-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.8rem);
    letter-spacing: 0.13em;
  }

  .project-image-hero__meta {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .project-image-hero__lead {
    margin-top: clamp(58px, 11vh, 92px);
    max-width: 330px;
    font-size: 0.76rem;
  }

  .contact-hero {
    gap: 34px;
    padding-top: 112px;
  }

  .contact-hero__copy h1 {
    font-size: clamp(3.1rem, 14vw, 5.2rem);
  }

  .contact-hero__meta,
  .contact-form__head,
  .contact-form__fields {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    height: min(58svh, 480px);
    min-height: 340px;
  }

  .contact-brief {
    gap: 38px;
  }

  .residence-intro__copy h2,
  .residence-breakdown__text h2,
  .residence-materials__copy h2 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .residence-fragment {
    min-height: 320px;
  }

  .residence-panorama {
    margin: 54px auto;
  }

  .residence-panorama img {
    height: 420px;
  }

  .residence-panorama div {
    right: 18px;
    bottom: 22px;
    left: 18px;
    width: auto;
  }

  .residence-materials__grid {
    grid-template-columns: 1fr;
  }

  .project-sequence__copy h2,
  .project-interior-story__copy h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .project-directory--editorial .project-directory__hero {
    display: block;
    min-height: auto;
    margin-bottom: 34px;
    padding-bottom: 28px;
  }

  .project-directory--editorial .project-directory__hero h1 {
    width: min-content;
    max-width: 100%;
    font-size: clamp(4.3rem, 18vw, 6.6rem);
  }

  .project-directory--editorial .project-directory__hero p:not(.eyebrow) {
    max-width: none;
    margin-top: 22px;
    text-align: left;
  }

  .directory-feature--editorial {
    min-height: 620px;
  }

  .directory-feature--editorial .directory-feature__copy {
    right: 18px;
    bottom: 28px;
    left: 18px;
  }

  .directory-feature--editorial .directory-feature__copy h2 {
    font-size: clamp(3.7rem, 17vw, 6.1rem);
  }

  .project-directory__essay {
    gap: 22px;
  }

  .directory-project-row {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
  }

  .directory-project-row__number {
    align-self: auto;
  }

  .directory-project-row__body strong {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .directory-project-row__image {
    width: min(100%, 360px);
  }

  .project-sequence__images,
  .project-interior-story__grid {
    grid-template-columns: 1fr;
  }

  .project-story-card,
  .project-story-card--tall {
    grid-column: auto;
    min-height: 340px;
  }

  .project-story-card--wide {
    grid-column: auto;
  }

  .residence-showcase__intro h2 {
    font-size: clamp(2.9rem, 14vw, 5rem);
  }

  .residence-showcase__grid {
    grid-template-columns: 1fr;
  }

  .residence-showcase-card,
  .residence-showcase-card--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .residence-showcase-card--wide {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(4.6rem, 21vw, 7rem);
  }

  h2 {
    font-size: clamp(3.2rem, 15vw, 5.1rem);
  }

  .section-heading,
  .gallery-grid,
  .project-grid,
  .directory-list {
    grid-template-columns: 1fr;
  }

  .project-feature,
  .directory-feature,
  .residence-feature__media {
    min-height: 0;
  }

  .directory-feature--editorial {
    min-height: 620px;
  }

  .project-feature__media,
  .directory-feature__media,
  .residence-feature__media {
    aspect-ratio: 4 / 5;
  }

  .project-line {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 12px 14px;
    min-height: 0;
    padding: 16px;
  }

  .project-line span {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
  }

  .project-line strong {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    min-width: 0;
    padding: 0;
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  .project-line em {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: start;
    padding: 0;
  }

  .project-line img {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    height: 180px;
    margin: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .project-line strong {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .studio-craft__text {
    min-height: auto;
    padding: 28px;
  }

  .studio-craft__text h2 {
    font-size: clamp(2.9rem, 14vw, 4.9rem);
    letter-spacing: 0;
  }

  .studio-craft__image {
    min-height: 360px;
  }

  .panel {
    min-height: 360px;
  }

  .page-footer {
    padding: 0;
    background: var(--footer-cta-bg, #173452);
  }

  .footer-card-shell {
    width: 100%;
    min-height: clamp(650px, 82svh, 760px);
    margin: 0;
    border-radius: 0;
  }

  .page-footer .section {
    padding: 54px 22px;
  }

  .page-footer .footer-grid {
    padding-top: clamp(210px, 38vw, 270px);
  }

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

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    padding-top: 44px;
  }

  .image-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    columns: auto;
    gap: 18px;
  }

  .image-mosaic .image-frame {
    display: block;
    grid-column: auto !important;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5.15 !important;
  }
}

@media (max-width: 1000px) {
  .footer-card-shell {
    --footer-ribbon-left: -58px;
    --footer-ribbon-top: 105.7%;
    --footer-ribbon-height: 86%;
    --footer-ribbon-bleed: 0px;
    --footer-f-clearance: clamp(330px, 56vw, 430px);
    --footer-logo-size: clamp(132px, 21vw, 174px);
    min-height: auto;
  }

  .page-footer .section {
    padding-right: clamp(18px, 5vw, 42px);
    padding-left: clamp(18px, 5vw, 42px);
  }

  .page-footer .footer-grid {
    padding-top: calc(var(--footer-f-clearance) + clamp(26px, 5vw, 48px));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 46px) clamp(22px, 5vw, 44px);
  }

  .footer-mark {
    grid-column: 1 / -1;
    max-width: min(100%, 520px);
  }

  .footer-mark::before {
    top: calc(0px - var(--footer-logo-size) - clamp(42px, 7vw, 64px));
    left: 0;
  }

  .footer-mark p {
    max-width: min(100%, 420px);
  }

  .footer-bottom {
    padding-top: clamp(34px, 7vw, 56px);
  }
}

@media (max-width: 760px) {
  .footer-card-shell {
    --footer-ribbon-left: -58px;
    --footer-ribbon-top: 105.7%;
    --footer-ribbon-height: 86%;
    --footer-ribbon-bleed: 0px;
    --footer-f-clearance: clamp(320px, 92vw, 410px);
    --footer-logo-size: clamp(172px, 50vw, 210px);
  }

  .page-footer .footer-grid {
    padding-top: calc(var(--footer-f-clearance) + 30px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    gap: 12px;
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid var(--footer-rule);
    border-left: 0;
  }

  .footer-mark strong {
    font-size: 0.92rem;
    letter-spacing: 0.14em;
  }

  .footer-mark::before {
    top: calc(0px - var(--footer-logo-size) - clamp(104px, 28vw, 142px));
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.82;
  }
}

@media (max-width: 360px) {
  .site-header__inner {
    min-height: 62px;
    padding: 0 12px;
  }

  .brand {
    font-size: clamp(0.86rem, 6.2vw, 1.08rem);
    letter-spacing: 0.02em;
  }

  .menu-button {
    width: 34px;
    height: 34px;
  }

  .menu-button span {
    width: 15px;
    margin: 4px auto;
  }

  .site-main {
    padding-top: 63px;
  }

  .section {
    padding: 42px 12px;
  }

  .menu-panel {
    gap: 18px;
    padding: 76px 12px 18px;
  }

  .menu-panel__nav a {
    min-height: 44px;
    font-size: clamp(1.15rem, 11vw, 2.05rem);
    letter-spacing: 0.03em;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .home-hero__content,
  .residence-hero__content,
  .project-image-hero__content {
    padding: 78px 12px 28px;
  }

  .home-hero__brand-lock {
    width: min(100%, 304px);
    transform: translateY(8px);
  }

  .home-hero__title {
    font-size: 3.45rem;
    letter-spacing: 0;
  }

  .home-hero__subbrand {
    font-size: 1.36rem;
    letter-spacing: 0;
  }

  .home-hero__meta,
  .residence-hero__meta,
  .project-image-hero__meta {
    font-size: 0.66rem;
    letter-spacing: 0;
  }

  .home-hero__lead,
  .residence-hero__lead,
  .project-image-hero__lead {
    max-width: min(100%, 260px);
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .home-hero__lead {
    max-width: min(100%, 316px);
    line-height: 1.38;
  }

  .project-feature__copy > *,
  .directory-feature__copy > * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .project-feature__copy strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .residence-hero h1,
  .project-image-hero h1 {
    font-size: clamp(1.8rem, 14vw, 3rem);
    letter-spacing: 0.08em;
    line-height: 1.02;
  }

  h1 {
    font-size: clamp(2.3rem, 18vw, 4rem);
  }

  h2,
  .contact-hero__copy h1,
  .studio-craft__text h2,
  .project-directory--editorial .project-directory__hero h1,
  .directory-feature--editorial .directory-feature__copy h2,
  .directory-project-row__body strong,
  .residence-intro__copy h2,
  .residence-breakdown__text h2,
  .residence-materials__copy h2,
  .residence-showcase__intro h2,
  .project-sequence__copy h2,
  .project-interior-story__copy h2 {
    font-size: clamp(2rem, 16vw, 3.4rem);
    letter-spacing: 0;
    line-height: 1.02;
  }

  .eyebrow,
  .project-meta,
  .project-story-card figcaption,
  .residence-showcase-card figcaption,
  .contact-hero__meta,
  .contact-visual figcaption,
  .small-link,
  .text-link {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .split-line,
  [data-split] .split-line,
  [data-split] .split-line > * {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .section h1,
  .section h2,
  .section h3,
  .section p,
  .section span,
  .section strong,
  .section a,
  .section div,
  .page-footer h2,
  .page-footer p,
  .page-footer span,
  .page-footer strong,
  .page-footer a,
  .hero-copy,
  .detail-hero > div:first-child,
  .panel > *,
  .studio-craft__text > *,
  .contact-brief__notes > *,
  .footer-mark,
  .footer-mark > *,
  .footer-col,
  .footer-col > * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .project-directory--editorial .project-directory__hero h1 {
    width: auto;
  }

  .project-feature__copy,
  .directory-feature__copy,
  .panel,
  .studio-craft__text {
    padding: 22px;
  }

  .project-feature__media,
  .directory-feature__media,
  .residence-feature__media,
  .detail-hero > .image-frame,
  .contact-visual,
  .studio-craft__image,
  .panel {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .project-feature__media,
  .directory-feature__media,
  .residence-feature__media,
  .contact-visual,
  .studio-craft__image {
    aspect-ratio: 4 / 5;
  }

  .residence-feature__media span {
    right: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    font-size: 0.58rem;
    letter-spacing: 0.07em;
    overflow-wrap: anywhere;
  }

  .directory-project-row {
    padding: 18px 0;
  }

  .directory-project-row__image {
    width: 100%;
  }

  .project-line {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 12px;
  }

  .project-line img {
    height: 150px;
  }

  .contact-note,
  .project-narrative__list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form__head,
  .contact-form__fields,
  .contact-hero__meta {
    grid-template-columns: 1fr;
  }

  .field {
    padding: 18px 0;
  }

  .field input,
  .field textarea,
  .field select {
    font-size: 0.95rem;
  }

  .form-submit {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .image-mosaic,
  .residence-materials__grid,
  .residence-showcase__grid,
  .project-sequence__images,
  .project-interior-story__grid {
    gap: 14px;
  }

  .page-footer {
    padding: 0;
  }

  .page-footer .section {
    padding: 42px 12px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-mark {
    gap: 16px;
  }

  .footer-mark strong {
    font-size: clamp(0.72rem, 5.2vw, 0.96rem);
    letter-spacing: 0.12em;
  }

  .footer-mark p,
  .footer-col,
  .footer-bottom {
    font-size: clamp(0.66rem, 4.6vw, 0.84rem);
  }

  .footer-col h2 {
    font-size: clamp(0.58rem, 4vw, 0.72rem);
    letter-spacing: 0.1em;
  }
}

@media (max-width: 240px) {
  .site-header__inner {
    min-height: 56px;
    padding: 0 8px;
  }

  .brand {
    font-size: 0.82rem;
    letter-spacing: 0;
  }

  .menu-button {
    width: 31px;
    height: 31px;
  }

  .site-main {
    padding-top: 57px;
  }

  .section {
    padding: 34px 8px;
  }

  .menu-panel {
    padding: 66px 8px 14px;
  }

  .home-hero__content,
  .residence-hero__content,
  .project-image-hero__content {
    padding: 68px 8px 24px;
  }

  .home-hero__title {
    font-size: 1.22rem;
    letter-spacing: 0.07em;
  }

  .home-hero__lead,
  .residence-hero__lead,
  .project-image-hero__lead {
    font-size: 0.62rem;
  }

  h1,
  h2,
  .contact-hero__copy h1,
  .studio-craft__text h2,
  .project-directory--editorial .project-directory__hero h1,
  .directory-feature--editorial .directory-feature__copy h2,
  .directory-project-row__body strong,
  .residence-intro__copy h2,
  .residence-breakdown__text h2,
  .residence-materials__copy h2,
  .residence-showcase__intro h2,
  .project-sequence__copy h2,
  .project-interior-story__copy h2 {
    font-size: clamp(1.72rem, 16vw, 2.55rem);
  }

  .project-feature__copy,
  .directory-feature__copy,
  .panel,
  .studio-craft__text {
    padding: 16px;
  }

  .eyebrow,
  .project-meta,
  .project-story-card figcaption,
  .residence-showcase-card figcaption,
  .contact-hero__meta,
  .contact-visual figcaption,
  .small-link,
  .text-link,
  .field label {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .page-footer .section {
    padding: 32px 8px;
  }

  .footer-grid,
  .footer-mark,
  .footer-col {
    gap: 12px;
  }

  .footer-bottom {
    gap: 12px;
    padding-top: 28px;
    padding-bottom: 34px;
  }
}

@media (max-width: 180px) {
  .site-header__inner {
    min-height: 50px;
    padding: 0 6px;
  }

  .brand {
    font-size: 0.68rem;
    line-height: 1.05;
  }

  .menu-button {
    width: 28px;
    height: 28px;
  }

  .menu-button span {
    width: 12px;
  }

  .site-main {
    padding-top: 51px;
  }

  .section {
    padding: 28px 6px;
  }

  .menu-panel {
    padding: 58px 6px 12px;
  }

  .menu-panel__nav a {
    min-height: 34px;
    font-size: clamp(0.92rem, 12vw, 1.35rem);
    letter-spacing: 0;
  }

  .menu-panel__nav,
  .menu-panel__nav a,
  .home-hero__content,
  .residence-hero__content,
  .project-image-hero__content,
  .home-hero__content > *,
  .residence-hero__content > *,
  .project-image-hero__content > *,
  .contact-form,
  .contact-form__head,
  .contact-form__fields,
  .contact-form__head > *,
  .contact-form__fields > *,
  .field,
  .field > *,
  .story-card,
  .story-card > *,
  .footer-card-shell,
  .footer-card-shell * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }

  .project-feature__copy,
  .project-feature__copy > *,
  .project-feature__media,
  .project-feature__media img,
  .directory-feature__copy,
  .directory-feature__copy > *,
  .image-frame img {
    clip-path: none !important;
    transform: none !important;
  }

  .project-feature__copy {
    grid-template-rows: auto;
  }

  .project-feature__copy::after {
    display: none;
  }

  .project-feature__copy strong {
    font-size: clamp(1.1rem, 14vw, 1.6rem);
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .project-feature__copy span:not(.project-meta):not(.project-feature__cta),
  .project-feature__cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-form,
  .contact-form__head,
  .contact-form__fields,
  .field {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .home-hero__content,
  .residence-hero__content,
  .project-image-hero__content {
    padding: 58px 6px 18px;
  }

  .home-hero__title,
  .residence-hero h1,
  .project-image-hero h1 {
    font-size: clamp(1rem, 13vw, 1.45rem);
    letter-spacing: 0.04em;
  }

  h1,
  .detail-hero h1,
  h2,
  .contact-hero__copy h1,
  .studio-craft__text h2,
  .project-directory--editorial .project-directory__hero h1,
  .directory-feature--editorial .directory-feature__copy h2,
  .directory-project-row__body strong,
  .residence-intro__copy h2,
  .residence-breakdown__text h2,
  .residence-materials__copy h2,
  .residence-showcase__intro h2,
  .project-sequence__copy h2,
  .project-interior-story__copy h2 {
    font-size: clamp(1.32rem, 15vw, 2rem);
    line-height: 1.04;
  }

  p,
  .home-hero__lead,
  .residence-hero__lead,
  .project-image-hero__lead,
  .field input,
  .field textarea,
  .field select,
  .footer-mark p,
  .footer-col,
  .footer-bottom {
    font-size: 0.58rem;
    line-height: 1.42;
  }

  .project-feature__copy,
  .directory-feature__copy,
  .panel,
  .studio-craft__text,
  .story-card {
    padding: 12px;
  }

  .project-feature__media,
  .directory-feature__media,
  .residence-feature__media,
  .contact-visual,
  .studio-craft__image,
  .project-story-card,
  .residence-showcase-card {
    min-height: 120px;
  }

  .project-line {
    grid-template-columns: 1fr;
  }

  .project-line span,
  .project-line strong,
  .project-line em,
  .project-line img {
    grid-column: 1;
  }

  .project-line img {
    height: 112px;
  }

  .page-footer .section {
    padding: 26px 6px;
  }

  .footer-mark strong {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 120px) {
  .site-header__inner {
    min-height: 42px;
    padding: 0 4px;
  }

  .brand {
    font-size: 0.52rem;
  }

  .menu-button {
    width: 24px;
    height: 24px;
  }

  .menu-button span {
    width: 10px;
    margin: 3px auto;
  }

  .site-main {
    padding-top: 43px;
  }

  .section {
    padding: 22px 4px;
  }

  .home-hero__content,
  .residence-hero__content,
  .project-image-hero__content,
  .home-hero__content > *,
  .residence-hero__content > *,
  .project-image-hero__content > *,
  .menu-panel {
    padding-left: 4px;
    padding-right: 4px;
  }

  .home-hero__content > *,
  .residence-hero__content > *,
  .project-image-hero__content > *,
  .contact-form > *,
  .contact-form__head > *,
  .contact-form__fields > *,
  .field > *,
  .story-card,
  .story-card > *,
  .footer-card-shell,
  .footer-card-shell * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }

  h1,
  h2,
  h3,
  strong,
  a,
  span,
  p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .menu-panel {
    padding-top: 48px;
  }

  .menu-panel__nav {
    gap: 7px;
  }

  .menu-panel__nav a {
    min-height: 26px;
    font-size: 0.7rem;
    line-height: 1.05;
  }

  .menu-panel__nav a::after {
    display: none;
  }

  .menu-panel__foot {
    gap: 4px 6px;
    font-size: 0.44rem;
    letter-spacing: 0.03em;
  }

  .home-hero__title,
  .residence-hero h1,
  .project-image-hero h1,
  h1,
  .detail-hero h1,
  h2,
  .contact-hero__copy h1,
  .studio-craft__text h2,
  .project-directory--editorial .project-directory__hero h1,
  .directory-feature--editorial .directory-feature__copy h2,
  .directory-project-row__body strong,
  .residence-intro__copy h2,
  .residence-breakdown__text h2,
  .residence-materials__copy h2,
  .residence-showcase__intro h2,
  .project-sequence__copy h2,
  .project-interior-story__copy h2 {
    font-size: clamp(0.9rem, 15vw, 1.25rem);
    line-height: 1.08;
  }

  .eyebrow,
  .project-meta,
  .small-link,
  .text-link,
  .field label,
  .footer-col h2 {
    font-size: 0.45rem;
    letter-spacing: 0.03em;
  }

  p,
  .home-hero__lead,
  .residence-hero__lead,
  .project-image-hero__lead,
  .field input,
  .field textarea,
  .field select,
  .footer-mark p,
  .footer-col,
  .footer-bottom {
    font-size: 0.48rem;
  }

  .project-feature__copy,
  .directory-feature__copy,
  .panel,
  .studio-craft__text,
  .story-card {
    padding: 8px;
  }

  .project-feature__media,
  .directory-feature__media,
  .residence-feature__media,
  .contact-visual,
  .studio-craft__image,
  .project-story-card,
  .residence-showcase-card {
    min-height: 82px;
  }

  .project-line img {
    height: 74px;
  }

  .page-footer .section {
    padding: 20px 4px;
  }
}

@media (max-width: 70px) {
  .site-header__inner {
    min-height: 34px;
    padding: 0 2px;
  }

  .brand {
    font-size: 0.38rem;
  }

  .menu-button {
    width: 18px;
    height: 18px;
  }

  .menu-button span {
    width: 8px;
    margin: 2px auto;
  }

  .site-main {
    padding-top: 35px;
  }

  .section {
    padding: 16px 2px;
  }

  .home-hero__content,
  .residence-hero__content,
  .project-image-hero__content {
    padding: 38px 2px 12px;
  }

  .home-hero__content > *,
  .residence-hero__content > *,
  .project-image-hero__content > *,
  .contact-form,
  .contact-form > *,
  .contact-form__head,
  .contact-form__head > *,
  .contact-form__fields,
  .contact-form__fields > *,
  .field,
  .field > *,
  .story-card,
  .story-card > *,
  .footer-card-shell,
  .footer-card-shell * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }

  .home-hero__media img,
  .residence-hero__media img,
  .project-image-hero__media img,
  .residence-intro__plate img,
  .residence-fragment img,
  .residence-panorama img,
  .contact-visual img,
  .image-frame img {
    transform: none !important;
  }

  .project-feature__copy,
  .project-feature__copy > *,
  .project-feature__media,
  .project-feature__media img,
  .directory-feature__copy,
  .directory-feature__copy > * {
    clip-path: none !important;
    transform: none !important;
  }

  .project-feature__copy::after {
    display: none;
  }

  .project-feature__copy strong {
    font-size: 0.52rem;
    letter-spacing: 0;
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .project-feature__copy span:not(.project-meta):not(.project-feature__cta),
  .project-feature__cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .detail-hero h1 {
    font-size: 0.48rem !important;
    letter-spacing: 0;
    line-height: 1.12;
    word-break: break-all;
  }

  .residence-intro__plate,
  .residence-intro__plate img,
  .residence-fragment,
  .residence-fragment img,
  .residence-panorama,
  .residence-panorama img {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    clip-path: none !important;
    transform: none !important;
  }

  .residence-intro__plate {
    gap: 4px;
    overflow: hidden;
  }

  .residence-intro__plate figcaption {
    width: 100%;
    max-width: 100%;
    padding-top: 4px;
    font-size: 0.3rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .residence-panorama {
    margin: 12px auto;
  }

  .residence-panorama img {
    height: 82px;
  }

  .residence-panorama div {
    right: 2px;
    bottom: 2px;
    left: 2px;
    width: auto;
    max-width: calc(100% - 4px);
    padding-top: 2px;
    font-size: 0.3rem;
    line-height: 1.12;
  }

  .button-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
    width: 100%;
    max-width: 100%;
  }

  .button,
  .ghost-button {
    width: 100%;
    min-width: 0;
    padding: 4px 1px;
    font-size: 0.32rem;
    letter-spacing: 0;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contact-visual figcaption,
  .project-story-card figcaption,
  .residence-showcase-card figcaption {
    right: 4px;
    bottom: 4px;
    left: 4px;
    width: auto;
    max-width: calc(100% - 8px);
    font-size: 0.3rem;
    letter-spacing: 0;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .menu-panel {
    padding: 40px 2px 8px;
  }

  .menu-panel__nav {
    gap: 4px;
  }

  .menu-panel__nav a {
    min-height: 18px;
    font-size: 0.34rem;
    line-height: 1.08;
  }

  .menu-panel__foot {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    font-size: 0.28rem;
    letter-spacing: 0;
  }

  .project-image-hero__kicker,
  .project-image-hero__meta,
  .project-image-hero__lead {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .home-hero__title,
  .residence-hero h1,
  .project-image-hero h1,
  h1,
  .detail-hero h1,
  h2,
  .contact-hero__copy h1,
  .studio-craft__text h2,
  .project-directory--editorial .project-directory__hero h1,
  .directory-feature--editorial .directory-feature__copy h2,
  .directory-project-row__body strong,
  .residence-intro__copy h2,
  .residence-breakdown__text h2,
  .residence-materials__copy h2,
  .residence-showcase__intro h2,
  .project-sequence__copy h2,
  .project-interior-story__copy h2 {
    font-size: 0.62rem;
    line-height: 1.12;
  }

  .eyebrow,
  .project-meta,
  .small-link,
  .text-link,
  .field label,
  .footer-col h2 {
    font-size: 0.34rem;
    letter-spacing: 0;
  }

  p,
  .home-hero__lead,
  .residence-hero__lead,
  .project-image-hero__lead,
  .field input,
  .field textarea,
  .field select,
  .footer-mark p,
  .footer-col,
  .footer-bottom {
    font-size: 0.36rem;
    line-height: 1.28;
  }

  .project-feature__copy,
  .directory-feature__copy,
  .panel,
  .studio-craft__text,
  .story-card {
    padding: 4px;
  }

  .project-feature__media,
  .directory-feature__media,
  .residence-feature__media,
  .contact-visual,
  .studio-craft__image,
  .project-story-card,
  .residence-showcase-card {
    min-height: 46px;
  }

  .project-line {
    padding: 4px;
  }

  .project-line img {
    height: 40px;
  }

  .page-footer .section {
    padding: 14px 2px;
  }
}

@media (min-width: 761px) {
  .menu-panel {
    display: none;
  }
}

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

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


/* MW adaptation: keep the renovation framework, adjust only brand and remodeling tone. */
:root {
  --paper: #f5f1e5;
  --paper-soft: #f5f1e5;
  --paper-deep: #f5f1e5;
  --ink: #161815;
  --muted: #65665d;
  --line: rgba(22, 24, 21, 0.16);
  --line-strong: rgba(22, 24, 21, 0.34);
  --footer-cta-bg: #173452;
  --footer-cta-ink: #f6efe3;
  --footer-cta-muted: rgba(246, 239, 227, 0.72);
  --footer-cta-faint: rgba(246, 239, 227, 0.54);
  --footer-cta-line: rgba(246, 239, 227, 0.16);
}

.brand {
  text-transform: uppercase;
}

.header-action {
  display: flex;
  justify-self: end;
  align-items: center;
  min-width: 0;
}

.header-cta {
  --header-cta-hover-bg: #173452;
  --header-cta-hover-ink: #fff5e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.82rem 1.12rem 0.76rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

button,
.button,
.ghost-button,
.header-cta,
.project-feature__cta,
a[class*="button"],
a[class*="cta"],
input[type="button"],
input[type="submit"],
input[type="reset"] {
  border-radius: 2px !important;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  border-color: var(--header-cta-hover-bg);
  background: var(--header-cta-hover-bg);
  color: var(--header-cta-hover-ink);
}

.home-hero__title {
  text-transform: uppercase;
}

.service-anchor {
  scroll-margin-top: 110px;
}

.article-flow {
  max-width: 1040px;
}

.article-flow p:first-child {
  font-size: clamp(1.48rem, 2.5vw, 2.7rem);
}

/* Archive and long-form article system */
.blog-index-page,
.blog-article-page {
  background: var(--paper);
  --blog-ink: #15130f;
  --blog-copy: #211c15;
  --blog-muted: #5b4d3d;
  --blog-soft: #7d705e;
  --blog-rule: rgba(33, 28, 21, 0.16);
  --blog-rule-strong: rgba(33, 28, 21, 0.3);
  --blog-accent: #173452;
  --blog-panel: var(--paper);
  --blog-card: var(--paper);
}

.blog-index-page .site-main,
.blog-article-page .site-main {
  overflow: clip;
}

.blog-index-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  align-items: end;
  min-height: 560px;
  padding-top: 156px;
  padding-bottom: 82px;
  border-bottom: 1px solid var(--line);
}

.blog-index-hero__copy {
  min-width: 0;
  width: 100%;
  max-width: 1060px;
}

.blog-index-hero h1 {
  margin: 0;
  width: 100%;
  max-width: 1120px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 7.25rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.88;
  overflow-wrap: break-word;
}

.blog-index-hero__copy > p:not(.eyebrow) {
  width: 100%;
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(23, 23, 19, 0.66);
  font-size: 1.14rem;
  font-weight: 560;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.blog-index-hero__stats {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-index-hero__stats span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.blog-index-hero__stats span:first-child {
  border-top: 0;
}

.blog-index-hero__stats strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.9rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.blog-index-feature {
  padding-top: 74px;
  padding-bottom: 84px;
}

.blog-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(360px, 0.42fr);
  min-height: 620px;
  color: inherit;
  text-decoration: none;
  background: #161510;
  border: 1px solid rgba(23, 23, 19, 0.26);
}

.blog-feature-card__media {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  background: #171510;
}

.blog-feature-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 13, 10, 0) 46%, rgba(13, 13, 10, 0.26) 100%),
    linear-gradient(180deg, rgba(13, 13, 10, 0.12), rgba(13, 13, 10, 0.4));
}

.blog-feature-card__media img,
.blog-card__media img,
.blog-article-hero__media img,
.blog-related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feature-card__copy {
  display: grid;
  align-content: end;
  gap: 24px;
  min-width: 0;
  padding: 46px;
  color: var(--paper-soft);
}

.blog-feature-card__copy .project-meta,
.blog-feature-card__copy p,
.blog-feature-card__copy .project-feature__cta {
  color: rgba(246, 239, 227, 0.72);
}

.blog-feature-card h2 {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 3.65rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
}

.blog-feature-card p {
  max-width: 34em;
  margin: 0;
  font-size: 1rem;
  font-weight: 560;
  line-height: 1.66;
}

.blog-index-topics {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
  gap: 56px;
  padding-top: 28px;
  padding-bottom: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-index-topics__head h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 3.8rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
}

.blog-topic-strip {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
}

.blog-topic-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.62rem 0.82rem 0.56rem;
  border: 1px solid rgba(23, 23, 19, 0.22);
  color: rgba(23, 23, 19, 0.7);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 76px;
  padding-bottom: 116px;
  background: rgba(23, 23, 19, 0.18);
}

.blog-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 610px;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  background: #171510;
  color: var(--paper-soft);
  transform: translateY(-2px);
}

.blog-card__number {
  padding: 20px 22px 0;
  color: rgba(23, 23, 19, 0.44);
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.blog-card:hover .blog-card__number,
.blog-card:focus-visible .blog-card__number,
.blog-card:hover .blog-card__copy span,
.blog-card:focus-visible .blog-card__copy span,
.blog-card:hover .blog-card__copy em,
.blog-card:focus-visible .blog-card__copy em {
  color: rgba(246, 239, 227, 0.68);
}

.blog-card__media {
  display: block;
  height: 250px;
  margin: 20px 22px 0;
  overflow: hidden;
  background: #171510;
}

.blog-card__media img {
  filter: saturate(0.88) contrast(1.04);
  transition: transform 240ms ease, filter 240ms ease;
}

.blog-card:hover .blog-card__media img,
.blog-card:focus-visible .blog-card__media img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.035);
}

.blog-card__copy {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 26px 22px 28px;
}

.blog-card__copy span {
  color: rgba(23, 23, 19, 0.54);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.blog-card__copy strong {
  color: currentColor;
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
}

.blog-card__copy em {
  color: rgba(23, 23, 19, 0.64);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 560;
  line-height: 1.55;
}

.blog-article-page .site-header:not(.is-scrolled):not(.is-menu-open) {
  color: var(--paper-soft);
  border-bottom-color: transparent !important;
  background: rgba(245, 241, 229, 0) !important;
  backdrop-filter: blur(0) !important;
}

.blog-article-page .site-header.is-scrolled,
.blog-article-page.is-menu-open .site-header {
  color: var(--ink);
  border-bottom-color: transparent !important;
  background: var(--paper) !important;
  backdrop-filter: none !important;
}

.blog-article-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand__mark-image--dark {
  opacity: 0 !important;
}

.blog-article-page:not(.is-menu-open) .site-header:not(.is-scrolled) .brand__mark-image--light {
  opacity: 1 !important;
}

.blog-article-page .site-header.is-scrolled .brand__mark-image--dark,
.blog-article-page.is-menu-open .site-header .brand__mark-image--dark {
  opacity: 1 !important;
}

.blog-article-page .site-header.is-scrolled .brand__mark-image--light,
.blog-article-page.is-menu-open .site-header .brand__mark-image--light {
  opacity: 0 !important;
}

.blog-article-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 760px;
  color: var(--paper-soft);
  background: #171510;
}

.blog-article-hero__media,
.blog-article-hero__shade {
  position: absolute;
  inset: 0;
}

.blog-article-hero__media {
  z-index: -2;
  margin: 0;
  overflow: hidden;
}

.blog-article-hero__media img {
  filter: saturate(0.88) contrast(1.08);
}

.blog-article-hero__shade {
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 12, 9, 0.64), rgba(12, 12, 9, 0.26) 52%, rgba(12, 12, 9, 0.56)),
    linear-gradient(180deg, rgba(12, 12, 9, 0.46), rgba(12, 12, 9, 0.12) 38%, rgba(12, 12, 9, 0.7));
}

.blog-article-hero__content {
  display: grid;
  gap: 28px;
  width: min(100%, 1820px);
  min-width: 0;
  margin: 0 auto;
  padding: 138px 28px 72px;
}

.blog-kicker,
.blog-article-hero__meta,
.blog-article-intro__label,
.blog-article-toc,
.blog-related-card > span:not(.blog-related-card__media),
.blog-related-card em,
.blog-article__sources h2 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
}

.blog-kicker {
  margin: 0;
  color: rgba(246, 239, 227, 0.72);
}

.blog-article-hero h1 {
  width: 100%;
  max-width: 1040px;
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 5.65rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.93;
  overflow-wrap: break-word;
}

.blog-article-hero__lead {
  position: relative;
  max-width: 660px;
  margin: 2px 0 0;
  padding-top: 18px;
  color: rgba(250, 246, 237, 0.88);
  font-family: var(--text);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.72;
  text-wrap: balance;
}

.blog-article-hero__lead::before {
  display: block;
  width: 86px;
  height: 1px;
  margin-bottom: 18px;
  background: rgba(250, 246, 237, 0.46);
  content: "";
}

.blog-article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: rgba(246, 239, 227, 0.68);
}

.blog-article-page .blog-article-hero__content,
.blog-article-page .blog-article-hero__content *,
.blog-article-page .blog-article-hero__media,
.blog-article-page .blog-article-hero__media img {
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}

.blog-article-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 0.56fr) minmax(260px, 0.34fr);
  gap: 48px;
  padding-top: 76px;
  padding-bottom: 76px;
  border-bottom: 1px solid var(--blog-rule);
}

.blog-article-intro__label {
  display: grid;
  align-content: start;
  gap: 14px;
  color: var(--blog-accent);
}

.blog-article-intro__label span {
  color: var(--blog-accent);
  font-family: var(--caption);
  font-weight: 500;
}

.blog-article-intro__label strong {
  color: var(--blog-ink);
  font-family: var(--sans);
  font-size: 1.46rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}

.blog-article-intro__copy p {
  margin: 0;
  color: var(--blog-copy);
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.24;
}

.blog-article-intro__takeaways {
  align-self: start;
  padding: 0;
  border-top: 1px solid var(--blog-rule);
  border-bottom: 1px solid var(--blog-rule);
}

.blog-article-intro__takeaways ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-article-intro__takeaways li {
  padding: 18px 0;
  border-top: 1px solid var(--blog-rule);
  color: var(--blog-copy);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
}

.blog-article-intro__takeaways li:first-child {
  border-top: 0;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.22fr) minmax(0, 780px) minmax(0, 0.22fr);
  gap: 70px;
  align-items: start;
  padding-top: 84px;
  padding-bottom: 96px;
}

.blog-article-toc {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
  color: var(--blog-soft);
}

.blog-article-toc span {
  color: var(--blog-accent);
}

.blog-article-toc a {
  color: var(--blog-muted);
  text-decoration: none;
  text-transform: none;
}

.blog-article-toc a:hover,
.blog-article-toc a:focus-visible {
  color: var(--blog-accent);
}

.blog-article__body {
  min-width: 0;
}

.blog-article__body a {
  color: var(--blog-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 52, 82, 0.34);
}

.blog-article__body a:hover,
.blog-article__body a:focus-visible {
  border-bottom-color: var(--blog-accent);
}

.blog-article-opening {
  display: grid;
  gap: 22px;
  padding: 4px 0 52px;
  margin: 0 0 56px;
  border-bottom: 1px solid var(--blog-rule);
}

.blog-article-opening__lead {
  max-width: 720px;
  margin: 0;
  padding-left: 22px;
  border-left: 3px solid var(--blog-accent);
  color: var(--blog-ink);
  font-family: var(--text);
  font-size: clamp(1.18rem, 1.28vw, 1.48rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.62;
}

.blog-article-opening__text {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.blog-author-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 0.28fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: clamp(28px, 4vw, 52px);
  padding-top: clamp(18px, 2.4vw, 28px);
  padding-bottom: clamp(18px, 2.4vw, 28px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-author-strip__image {
  display: block;
  width: 68px;
  height: 68px;
  overflow: hidden;
  background: #f4eadb;
  border: 1px solid rgba(23, 52, 82, 0.14);
}

.blog-author-strip__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author-strip__content {
  display: grid;
  gap: 5px;
}

.blog-author-strip__content p {
  margin: 0;
  color: var(--blog-accent);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-author-strip__content h2 {
  margin: 0;
  color: var(--blog-ink);
  font-family: var(--sans);
  font-size: clamp(1.16rem, 1.45vw, 1.48rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.1;
}

.blog-author-strip__content span,
.blog-author-strip__bio {
  color: var(--muted);
  font-family: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.blog-author-strip__bio {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.blog-author-strip__link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.72rem 0.9rem 0.66rem;
  color: var(--blog-ink);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(23, 52, 82, 0.22);
}

.blog-author-strip__link:hover,
.blog-author-strip__link:focus-visible {
  color: #fffaf0;
  background: var(--blog-ink);
  outline: 0;
}

.blog-author-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding-top: clamp(130px, 16vw, 180px);
  padding-bottom: clamp(54px, 8vw, 92px);
}

.blog-author-profile__card {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
  color: #fffaf0;
  background: #102940;
}

.blog-author-profile__card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 240, 0.22);
}

.blog-author-profile__card h1 {
  max-width: 14rem;
  margin: 0;
  color: #fffaf0;
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.02;
}

.blog-author-profile__card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.78);
  font-family: var(--text);
  font-size: 0.98rem;
  line-height: 1.45;
}

.blog-author-profile__copy,
.blog-author-profile__quality {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.blog-author-profile__copy p,
.blog-author-profile__quality p {
  margin: 0;
  color: var(--blog-ink);
  font-family: var(--text);
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  line-height: 1.7;
}

.blog-author-profile__quality {
  grid-column: 2;
  padding: 24px;
  background: #f4eadb;
  border: 1px solid rgba(23, 52, 82, 0.12);
}

.blog-author-profile__quality h2 {
  margin: 0;
  color: var(--blog-ink);
  font-family: var(--sans);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.08;
}

.blog-author-articles {
  padding-top: 0;
  padding-bottom: clamp(68px, 9vw, 118px);
}

.blog-answer-panel {
  --answer-blue: #173452;
  --answer-blue-deep: #0f263b;
  --answer-paper: #faf6ed;
  --answer-muted: rgba(250, 246, 237, 0.76);
  --answer-line: rgba(250, 246, 237, 0.22);
  --answer-gold: #d9a03f;
  display: grid;
  gap: clamp(20px, 2.8vw, 32px);
  width: min(1040px, 100%);
  margin: 0 0 clamp(34px, 5vw, 58px);
  padding: clamp(28px, 4vw, 48px);
  color: var(--answer-paper);
  background: var(--answer-blue-deep);
  border: 1px solid rgba(15, 38, 59, 0.28);
}

.blog-answer-panel *,
.blog-cluster-links *,
.blog-download-card * {
  min-width: 0;
}

.blog-answer-panel__head {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 0.76fr);
  gap: clamp(16px, 3vw, 42px);
  align-items: start;
}

.blog-answer-panel__head p,
.blog-cluster-links > div p {
  display: grid;
  gap: 13px;
  margin: 0;
  color: #e7c887;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.blog-answer-panel__head p::after,
.blog-cluster-links > div p::after {
  display: block;
  width: min(100%, 132px);
  height: 2px;
  background: var(--answer-gold, var(--cluster-gold));
  content: "";
}

.blog-answer-panel__head h2,
.blog-cluster-links h2 {
  grid-column: 2;
  max-width: 720px;
  margin: 0;
  color: var(--answer-paper);
  font-family: var(--sans);
  font-size: clamp(1.92rem, 3vw, 3rem);
  font-weight: 440;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.blog-answer-panel__head span {
  grid-column: 2;
  max-width: 620px;
  color: var(--answer-muted);
  font-family: var(--text);
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  line-height: 1.62;
}

.blog-answer-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

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

.blog-answer-panel--bath-price .blog-answer-panel__grid strong {
  font-size: clamp(1.28rem, 1.65vw, 1.72rem);
}

.blog-answer-panel__grid article,
.blog-answer-panel__trust {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(23, 52, 82, 0.82);
  border: 1px solid var(--answer-line);
}

.blog-answer-panel__grid article:nth-child(2) {
  background: rgba(32, 63, 92, 0.88);
}

.blog-answer-panel__grid span {
  width: fit-content;
  max-width: 100%;
  padding-bottom: 8px;
  color: #e7c887;
  font-family: var(--caption);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.28;
  text-transform: uppercase;
  border-bottom: 2px solid var(--answer-gold);
}

.blog-answer-panel__grid strong,
.blog-answer-panel__trust strong,
.blog-cluster-links strong {
  color: var(--answer-paper);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.12vw, 1.14rem);
  font-weight: 650;
  line-height: 1.2;
}

.blog-answer-panel__grid p,
.blog-answer-panel__trust p {
  margin: 0;
  color: var(--answer-muted);
  font-family: var(--text);
  font-size: 0.94rem;
  line-height: 1.55;
}

.blog-answer-panel__trust {
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 1fr);
  align-items: center;
  background: rgba(250, 246, 237, 0.08);
}

.blog-answer-panel__trust div {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-answer-panel__trust a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.58rem 0.72rem 0.52rem;
  color: var(--answer-paper);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--answer-line);
}

.blog-answer-panel__trust a:hover,
.blog-answer-panel__trust a:focus-visible {
  color: #13253a;
  background: var(--answer-gold);
  border-color: var(--answer-gold);
}

.bath-price-trade-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.bath-price-trade-strip article {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 14px 12px;
  background: rgba(250, 246, 237, 0.08);
  border: 1px solid var(--answer-line);
}

.bath-price-trade-strip span {
  color: #e7c887;
  font-family: var(--caption);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.24;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.bath-price-trade-strip strong {
  color: var(--answer-paper);
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.28vw, 1.35rem);
  font-weight: 680;
  line-height: 1;
}

.blog-reader-map {
  --reader-blue: #173452;
  --reader-blue-deep: #0f263b;
  --reader-paper: #faf6ed;
  --reader-muted: rgba(250, 246, 237, 0.76);
  --reader-line: rgba(250, 246, 237, 0.22);
  --reader-gold: #d9a03f;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  width: min(1040px, 100%);
  margin: 0 0 clamp(56px, 6vw, 82px);
  padding: clamp(28px, 4vw, 52px);
  color: var(--reader-paper);
  background:
    linear-gradient(90deg, rgba(250, 246, 237, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 246, 237, 0.05) 1px, transparent 1px),
    var(--reader-blue);
  background-size: 42px 42px;
  border: 1px solid rgba(15, 38, 59, 0.28);
}

.blog-reader-map * {
  min-width: 0;
}

.blog-reader-map__head {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid var(--reader-line);
}

.blog-reader-map__head p {
  display: grid;
  gap: 14px;
  margin: 0;
  color: #e7c887;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.blog-reader-map__head p::after {
  display: block;
  width: min(100%, 140px);
  height: 2px;
  background: var(--reader-gold);
  content: "";
}

.blog-reader-map__head h2 {
  grid-column: 2;
  max-width: 720px;
  margin: 0;
  color: var(--reader-paper);
  font-family: var(--sans);
  font-size: clamp(2rem, 3.25vw, 3.25rem);
  font-weight: 420;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.blog-reader-map__head span {
  grid-column: 2;
  max-width: 620px;
  color: var(--reader-muted);
  font-family: var(--text);
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  line-height: 1.68;
}

.blog-reader-map__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.blog-reader-map__grid a {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 220px;
  padding: clamp(18px, 2vw, 24px);
  color: var(--reader-paper);
  text-decoration: none;
  background: rgba(13, 42, 66, 0.82);
  border: 1px solid var(--reader-line);
}

.blog-reader-map__grid a:nth-child(2n) {
  background: rgba(32, 63, 92, 0.86);
}

.blog-reader-map__grid a:hover,
.blog-reader-map__grid a:focus-visible {
  border-color: rgba(217, 160, 63, 0.82);
  outline: 0;
}

.blog-reader-map__grid a > span,
.blog-reader-map__sequence article > span {
  width: fit-content;
  max-width: 100%;
  color: #13253a;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  background: var(--reader-gold);
}

.blog-reader-map__grid a > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.blog-reader-map__grid strong,
.blog-reader-map__sequence strong {
  color: var(--reader-paper);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 650;
  line-height: 1.2;
}

.blog-reader-map__grid em,
.blog-reader-map__sequence p {
  margin: 0;
  color: var(--reader-muted);
  font-family: var(--text);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.5;
}

.blog-reader-map__sequence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.blog-reader-map__sequence article {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: rgba(15, 38, 59, 0.72);
  border-left: 4px solid var(--reader-gold);
}

.blog-reader-map__sequence article > span {
  padding: 7px 9px;
}

.blog-cluster-links {
  --cluster-blue: #122f4b;
  --cluster-paper: #fffaf0;
  --cluster-surface: #fbf7ef;
  --cluster-muted: rgba(18, 47, 75, 0.7);
  --cluster-line: rgba(18, 47, 75, 0.16);
  --cluster-gold: var(--cluster-blue);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
  width: min(1040px, 100%);
  margin: 0 0 clamp(56px, 6vw, 82px);
  padding: clamp(24px, 3.5vw, 42px);
  color: var(--cluster-blue);
  background: var(--cluster-surface);
  border: 1px solid var(--cluster-line);
  box-shadow: none;
}

.blog-cluster-links > div {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.blog-cluster-links > div p {
  color: var(--cluster-blue);
}

.blog-cluster-links > div p::after {
  background: var(--cluster-blue);
}

.blog-cluster-links h2 {
  grid-column: auto;
  max-width: 900px;
  color: var(--cluster-blue);
  font-size: clamp(2.25rem, 4.8vw, 4.1rem);
  line-height: 0.98;
}

.blog-cluster-links nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  max-width: 900px;
}

.blog-cluster-links a {
  position: relative;
  display: grid;
  gap: 11px;
  align-content: start;
  width: 100%;
  min-height: 152px;
  padding: clamp(20px, 2.4vw, 26px);
  color: var(--cluster-blue);
  text-decoration: none;
  background: var(--cluster-paper);
  border: 1px solid var(--cluster-line);
  box-sizing: border-box;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.blog-cluster-links a::before {
  display: block;
  width: 38px;
  height: 2px;
  background: var(--cluster-blue);
  content: "";
}

.blog-cluster-links a:hover,
.blog-cluster-links a:focus-visible {
  background: #ffffff;
  border-color: rgba(18, 47, 75, 0.36);
  outline: 0;
}

.blog-cluster-links a span {
  color: var(--cluster-blue);
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.blog-cluster-links strong {
  display: block;
  max-width: 100%;
  color: var(--cluster-blue);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.22;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.blog-download-card {
  --download-blue: #173452;
  --download-blue-deep: #0f263b;
  --download-paper: #faf6ed;
  --download-muted: rgba(250, 246, 237, 0.76);
  --download-line: rgba(250, 246, 237, 0.22);
  --download-gold: #d9a03f;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: stretch;
  width: min(1040px, 100%);
  margin: 0 0 clamp(42px, 5vw, 66px);
  padding: clamp(24px, 3.5vw, 42px);
  color: var(--download-paper);
  background: var(--download-blue-deep);
  border: 1px solid rgba(15, 38, 59, 0.28);
}

.blog-download-card > div {
  display: grid;
  gap: 14px;
  align-content: start;
}

.blog-download-card p {
  display: grid;
  gap: 13px;
  margin: 0;
  color: #e7c887;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.blog-download-card p::after {
  display: block;
  width: min(100%, 132px);
  height: 2px;
  background: var(--download-gold);
  content: "";
}

.blog-download-card h2 {
  max-width: 720px;
  margin: 0;
  color: var(--download-paper);
  font-family: var(--sans);
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  font-weight: 440;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.blog-download-card > div > span {
  max-width: 650px;
  color: var(--download-muted);
  font-family: var(--text);
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  line-height: 1.62;
}

.blog-download-card a {
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 160px;
  padding: clamp(18px, 2.3vw, 26px);
  color: #13253a;
  text-decoration: none;
  background: var(--download-paper);
  border-left: 5px solid var(--download-gold);
}

.blog-download-card a:hover,
.blog-download-card a:focus-visible {
  outline: 2px solid var(--download-gold);
  outline-offset: 4px;
}

.blog-download-card a span {
  width: fit-content;
  max-width: 100%;
  color: #8c661f;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-download-card a strong {
  color: #13253a;
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.25vw, 1.3rem);
  font-weight: 700;
  line-height: 1.15;
}

.blog-download-card a em {
  color: rgba(19, 37, 58, 0.76);
  font-family: var(--text);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.45;
}

.blog-calculator-embed {
  --calc-blue: #173452;
  --calc-blue-deep: #0f2a43;
  --calc-paper: #f5f1e5;
  --calc-line: rgba(245, 241, 229, 0.18);
  width: min(1040px, calc(100vw - 2 * clamp(18px, 5vw, 92px)));
  max-width: none;
  margin: 0 0 clamp(32px, 4vw, 46px);
  overflow: visible;
  border: 0;
  background: var(--calc-paper);
  scroll-margin-top: 112px;
}

.blog-calculator-embed__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
  padding: clamp(28px, 4.2vw, 50px);
  color: var(--paper-soft);
  background:
    linear-gradient(90deg, rgba(245, 241, 229, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 241, 229, 0.055) 1px, transparent 1px),
    var(--calc-blue);
  background-size: 42px 42px;
}

.blog-calculator-embed__intro--kitchen {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
  gap: clamp(16px, 2.5vw, 30px);
  align-items: center;
  padding: clamp(18px, 2vw, 26px) clamp(22px, 3vw, 34px);
}

.blog-calculator-embed__intro--house {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 280px);
  gap: clamp(16px, 2.6vw, 34px);
  align-items: center;
  padding: clamp(20px, 2.35vw, 30px) clamp(24px, 3.2vw, 42px);
}

.blog-calculator-embed__intro--bathroom {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 310px);
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  padding: clamp(22px, 3.4vw, 42px);
  background:
    linear-gradient(90deg, rgba(245, 241, 229, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 241, 229, 0.055) 1px, transparent 1px),
    #173452;
  background-size: 42px 42px;
}

.blog-calculator-embed__kicker {
  margin: 0 0 14px;
  color: #c8ddec;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-calculator-embed h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: clamp(2.45rem, 4.2vw, 4.45rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
}

.blog-calculator-embed h2::after {
  display: none;
}

.blog-calculator-embed__intro p:not(.blog-calculator-embed__kicker) {
  max-width: 660px;
  margin: clamp(18px, 2vw, 24px) 0 0;
  color: rgba(251, 247, 239, 0.86);
  font-family: var(--text);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  font-weight: 400;
  line-height: 1.68;
}

.blog-calculator-embed__intro--kitchen h2 {
  max-width: 20ch;
  font-size: clamp(1.75rem, 2.18vw, 2.55rem);
  line-height: 1.04;
}

.blog-calculator-embed__intro--house h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.blog-calculator-embed__intro--bathroom h2 {
  max-width: 16ch;
  font-size: clamp(2.05rem, 3.25vw, 3.65rem);
  line-height: 0.98;
}

.blog-calculator-embed__intro--kitchen p:not(.blog-calculator-embed__kicker) {
  max-width: 650px;
  margin-top: 10px;
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  line-height: 1.42;
}

.blog-calculator-embed__intro--house p:not(.blog-calculator-embed__kicker) {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  line-height: 1.46;
}

.blog-calculator-embed__intro--bathroom p:not(.blog-calculator-embed__kicker) {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(0.95rem, 1vw, 1.06rem);
  line-height: 1.55;
}

.blog-calculator-embed__standalone {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: clamp(20px, 2.5vw, 30px);
  padding: 14px 18px;
  border: 1px solid rgba(251, 247, 239, 0.48);
  color: var(--paper-soft);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-calculator-embed__intro--kitchen .blog-calculator-embed__standalone {
  margin-top: 10px;
  padding: 0;
  border: 0;
  color: #d9e7ee;
  font-size: 0.72rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.blog-calculator-embed__standalone:hover,
.blog-calculator-embed__standalone:focus-visible {
  border-color: var(--paper-soft);
  background: var(--paper-soft);
  color: var(--calc-blue);
}

.blog-calculator-embed__intro ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--calc-line);
  border-bottom: 1px solid var(--calc-line);
  list-style: none;
}

.blog-calculator-embed__intro li {
  padding: 15px 0;
  border-top: 1px solid var(--calc-line);
  color: #d9e7ee;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-calculator-embed__intro li:first-child {
  border-top: 0;
}

.blog-calculator-embed__intro--kitchen li {
  padding: 12px 0;
  font-size: 0.72rem;
}

.blog-calculator-embed__intro--house li {
  padding: 11px 0;
  font-size: 0.72rem;
}

.blog-calculator-embed__intro--bathroom li {
  padding: 13px 0;
  color: #d9e7ee;
  font-size: 0.72rem;
}

.blog-calculator-embed__frame-shell {
  background: var(--calc-paper);
  overflow: visible;
}

.blog-calculator-embed__frame {
  display: block;
  width: 100%;
  height: 760px;
  min-height: 620px;
  border: 0;
  background: transparent;
}

.blog-calculator-embed--kitchen {
  width: min(1180px, calc(100vw - 2 * clamp(18px, 5vw, 92px)));
  background: transparent;
}

.blog-calculator-embed--house {
  width: min(1180px, calc(100vw - 2 * clamp(18px, 5vw, 92px)));
  background: transparent;
}

.blog-calculator-embed--bathroom {
  width: min(1040px, calc(100vw - 2 * clamp(18px, 5vw, 92px)));
  background: transparent;
}

.blog-calculator-embed--kitchen .blog-calculator-embed__frame-shell {
  margin-top: clamp(30px, 3vw, 42px);
  background: transparent;
}

.blog-calculator-embed--house .blog-calculator-embed__frame-shell {
  margin-top: clamp(30px, 3vw, 42px);
  background: transparent;
}

.blog-calculator-embed--bathroom .blog-calculator-embed__frame-shell {
  margin-top: clamp(24px, 3vw, 38px);
  background: transparent;
}

.blog-calculator-embed__frame--kitchen {
  height: 1650px;
  min-height: 1120px;
  overflow: hidden;
}

.blog-calculator-embed__frame--house {
  min-height: 620px;
  overflow: hidden;
}

.blog-calculator-embed__frame--bathroom {
  height: 1500px;
  min-height: 1040px;
  overflow: hidden;
}

.calculator-page {
  --calculator-rail: min(100%, 1680px);
  background: var(--paper);
  overflow-x: clip;
}

.calculator-page-hero,
.calculator-page-hero *,
.calculator-answer,
.calculator-answer *,
.calculator-page-tool,
.calculator-page-tool *,
.calculator-steps,
.calculator-steps *,
.calculator-faq,
.calculator-faq * {
  min-width: 0;
}

.calculator-page-hero,
.calculator-answer,
.calculator-page-tool,
.calculator-steps,
.calculator-faq {
  width: var(--calculator-rail);
}

.calculator-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: clamp(36px, 5vw, 92px);
  align-items: center;
  padding-top: clamp(34px, 4.5vw, 68px);
  padding-bottom: clamp(34px, 4.8vw, 64px);
}

.calculator-page-hero__copy {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.calculator-page-hero h1 {
  max-width: 1060px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.5rem, 5.15vw, 6.25rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.94;
  white-space: normal;
  overflow-wrap: break-word;
}

.calculator-title-line {
  display: block;
}

.calculator-page-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(23, 23, 19, 0.7);
  font-family: var(--text);
  font-size: clamp(1.04rem, 1.25vw, 1.25rem);
  line-height: 1.74;
}

.calculator-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 8px;
}

.calculator-page-hero__actions .footer-cta__button {
  border-color: rgba(23, 23, 19, 0.78);
  background: #171713;
  color: #fffaf0;
}

.calculator-page-hero__actions .footer-cta__button:hover {
  background: #173452;
  color: #fffaf0;
}

.calculator-page-link {
  color: var(--ink);
  font-family: var(--caption);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(23, 23, 19, 0.42);
}

.calculator-page-hero__panel {
  display: grid;
  align-self: center;
  gap: 20px;
  padding: clamp(24px, 2.7vw, 38px);
  border: 1px solid rgba(23, 52, 82, 0.16);
  background:
    linear-gradient(135deg, rgba(35, 111, 139, 0.08), rgba(185, 130, 76, 0.08)),
    #fbf7ef;
}

.calculator-page-hero__panel h2,
.calculator-answer h2,
.calculator-page-tool__head h2,
.calculator-steps__head h2,
.calculator-faq h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.6vw, 4.8rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
}

.calculator-page-hero__panel h2 {
  max-width: 360px;
  font-family: var(--sans);
  font-size: clamp(1.55rem, 1.7vw, 2.25rem);
  font-weight: 500;
  line-height: 1.12;
}

.calculator-page-hero__panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calculator-page-hero__panel li {
  color: rgba(23, 23, 19, 0.68);
  font-size: 1rem;
  line-height: 1.55;
}

.calculator-page-hero__copy p,
.calculator-page-hero__panel h2,
.calculator-page-hero__panel li,
.calculator-page-tool__head p,
.calculator-answer p,
.calculator-steps__grid p {
  overflow-wrap: anywhere;
}

.calculator-answer {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(32px, 5vw, 86px);
  padding-top: clamp(48px, 5.6vw, 82px);
  padding-bottom: clamp(48px, 5.6vw, 82px);
  border-top: 1px solid rgba(23, 23, 19, 0.14);
  border-bottom: 1px solid rgba(23, 23, 19, 0.14);
}

.calculator-answer > p {
  margin: 0;
  color: var(--ink);
  font-family: var(--text);
  font-size: clamp(1.18rem, 1.65vw, 1.56rem);
  line-height: 1.66;
}

.calculator-page-tool {
  padding-top: clamp(18px, 3vw, 38px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.calculator-page-tool__head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(300px, 0.45fr);
  gap: 14px;
  align-items: end;
  max-width: 1180px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.calculator-page-tool__head .eyebrow {
  grid-column: 1 / -1;
}

.calculator-page-tool__head h2 {
  grid-column: 1;
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2vw, 2.3rem);
  font-weight: 600;
  line-height: 1.12;
}

.calculator-page-tool__head p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: 1.04rem;
  line-height: 1.68;
}

.calculator-page__frame {
  display: block;
  width: 100%;
  height: 1800px;
  min-height: 1120px;
  border: 0;
  background: transparent;
}

.calculator-page__frame--kitchen {
  height: 1900px;
}

.calculator-steps {
  padding-top: clamp(44px, 6vw, 80px);
  padding-bottom: clamp(50px, 7vw, 92px);
  border-top: 1px solid rgba(23, 23, 19, 0.14);
}

.calculator-steps__head {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.calculator-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(23, 52, 82, 0.18);
}

.calculator-steps__grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 240px;
  padding: clamp(22px, 3vw, 34px);
  background: #fbf7ef;
}

.calculator-steps__grid span {
  color: var(--blog-accent);
  font-family: var(--caption);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calculator-steps__grid strong {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.2vw, 1.24rem);
  line-height: 1.2;
}

.calculator-steps__grid p {
  margin: 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: 0.98rem;
  line-height: 1.6;
}

.calculator-faq {
  padding-bottom: clamp(72px, 9vw, 128px);
}

@media (max-width: 1060px) {
  .calculator-page-hero,
  .calculator-answer,
  .calculator-page-tool__head {
    grid-template-columns: 1fr;
  }

  .calculator-page-tool__head .eyebrow,
  .calculator-page-tool__head h2,
  .calculator-page-tool__head p:not(.eyebrow) {
    grid-column: 1;
  }

  .calculator-page-hero {
    align-items: start;
    padding-top: 74px;
  }

  .calculator-page-hero__panel {
    max-width: 760px;
  }

  .calculator-page-hero__panel h2 {
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .calculator-page-hero h1 {
    font-size: clamp(3.2rem, 10vw, 5.2rem);
  }

  .calculator-steps__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .calculator-page {
    --calculator-mobile-rail: min(100%, calc(100vw - 32px));
  }

  .calculator-page .site-main,
  .calculator-page .section {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }

  .calculator-page .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .calculator-page-hero__copy,
  .calculator-page-hero__actions,
  .calculator-page-hero__panel,
  .calculator-page-tool__head,
  .calculator-page__frame {
    width: var(--calculator-mobile-rail);
    max-width: var(--calculator-mobile-rail);
  }

  .calculator-page-hero {
    gap: 28px;
    padding-top: 70px;
    padding-bottom: 42px;
  }

  .calculator-page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.45rem);
    line-height: 0.96;
  }

  .calculator-title-line > span {
    display: block;
  }

  .calculator-page-hero__panel h2 {
    font-size: 1.35rem;
    line-height: 1.16;
  }

  .calculator-page-hero__copy > p:not(.eyebrow),
  .calculator-page-tool__head p:not(.eyebrow) {
    width: 100%;
    max-width: var(--calculator-mobile-rail);
    font-size: 1rem;
    line-height: 1.58;
    white-space: normal;
  }

  .calculator-page-hero__panel {
    width: 100%;
    padding: 24px;
  }

  .calculator-page-hero__panel li {
    max-width: 100%;
    white-space: normal;
  }

  .calculator-page-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .calculator-page-hero__actions .footer-cta__button {
    justify-content: center;
    width: 100%;
  }

  .calculator-answer,
  .calculator-page-tool,
  .calculator-steps {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .calculator-page__frame {
    height: 2300px;
    min-height: 2300px;
  }

  .calculator-page__frame--kitchen {
    height: 2700px;
    min-height: 2700px;
  }
}

@media (min-width: 1001px) {
  body.blog-article-page.byggsikt-frame-page .blog-article-hero__content {
    width: 100%;
    padding-left: calc(var(--frame-x-inner, 25px) + 45px);
    padding-right: calc(var(--frame-x-inner, 25px) + 45px);
  }
}

@media (min-width: 1081px) {
  body.blog-article-page.byggsikt-frame-page .blog-calculator-embed--kitchen,
  body.blog-article-page.byggsikt-frame-page .blog-calculator-embed--house {
    width: min(1180px, calc(100vw - 2 * max(calc(var(--frame-x-inner, 25px) + 45px), clamp(96px, 8vw, 128px))));
    margin-left: 50%;
    transform: translateX(-50%);
  }

  body.blog-article-page.byggsikt-frame-page .blog-calculator-embed--bathroom {
    width: min(1040px, calc(100vw - 2 * max(calc(var(--frame-x-inner, 25px) + 82px), clamp(128px, 9vw, 168px))));
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 1081px) and (max-width: 1320px) {
  body.blog-article-page.byggsikt-frame-page .blog-calculator-embed--house {
    width: min(100%, calc(100vw - 2 * (var(--frame-x-inner, 25px) + 45px)));
    margin-left: 0;
    transform: none;
  }
}

@media (min-width: 1001px) and (max-width: 1080px) {
  body.blog-article-page.byggsikt-frame-page .blog-calculator-embed--bathroom {
    width: calc(100% - clamp(36px, 5vw, 60px));
    margin-left: 0;
    transform: none;
  }
}

.blog-article__section {
  display: grid;
  gap: 18px;
  padding: 0 0 54px;
  margin: 0 0 54px;
  border-bottom: 1px solid var(--blog-rule);
  scroll-margin-top: 120px;
}

.blog-article__section h2 {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 0 10px;
  color: var(--blog-ink);
  font-family: var(--display);
  font-size: 3.1rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.02;
}

.blog-article__section h2::after {
  display: block;
  width: clamp(58px, 5.8vw, 96px);
  height: 2px;
  background: var(--blog-accent);
  content: "";
}

.blog-article__section h3 {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--blog-ink);
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.38;
}

.blog-article__section p,
.blog-article__faq details p {
  margin: 0;
  color: var(--blog-copy);
  font-family: var(--text);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.9;
}

.blog-article__section p:first-of-type {
  color: var(--blog-ink);
  font-weight: 400;
}

.blog-article__section ul,
.blog-article__section ol {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.blog-article__section li {
  position: relative;
  color: var(--blog-copy);
  font-family: var(--text);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.72;
}

.blog-article__section ul li {
  padding-left: 24px;
}

.blog-article__section ul li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--blog-accent);
  content: "";
}

.blog-article__section ol {
  counter-reset: blog-ordered;
}

.blog-article__section ol li {
  min-height: 32px;
  padding-left: 44px;
  counter-increment: blog-ordered;
}

.blog-article__section ol li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--paper-soft);
  font-family: var(--caption);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1;
  background: var(--blog-accent);
  content: counter(blog-ordered, decimal-leading-zero);
}

.blog-article-table {
  width: 100%;
  max-width: 920px;
  margin: 14px 0 8px;
  overflow-x: auto;
  background: rgba(245, 241, 229, 0.58);
  border: 1px solid rgba(23, 52, 82, 0.12);
}

.blog-article-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
}

.blog-article-table tbody tr {
  background: #fbf7ef;
}

.blog-article-table tbody tr:nth-child(even) {
  background: #f0eadf;
}

.blog-article-table tbody tr:hover {
  background: #e6eeeb;
}

.blog-article-table th,
.blog-article-table td {
  padding: 15px 17px;
  border-bottom: 1px solid rgba(23, 52, 82, 0.085);
  text-align: left;
  vertical-align: top;
}

.blog-article-table th + th {
  border-left: 1px solid rgba(245, 241, 229, 0.18);
}

.blog-article-table td + td {
  border-left: 1px solid rgba(23, 52, 82, 0.055);
}

.blog-article-table thead th {
  color: var(--paper-soft);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1.32;
  text-transform: uppercase;
  background: var(--blog-accent);
  border-bottom: 0;
}

.blog-article-table tbody tr:last-child td {
  border-bottom: 0;
}

.blog-article-table td {
  color: var(--blog-ink);
  font-family: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}

.blog-article-table tbody td:first-child {
  color: #0f2f4c;
  font-family: var(--caption);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  line-height: 1.42;
  text-transform: uppercase;
  background: rgba(245, 241, 229, 0.24);
}

.blog-article-table td strong {
  color: var(--blog-ink);
  font-weight: 560;
}

.blog-article-checkgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin-top: 12px;
  background: var(--blog-rule);
}

.blog-article-checkcard {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 210px;
  padding: 26px;
  background: var(--blog-card);
}

.blog-article-checkcard h3 {
  margin: 0;
  color: var(--blog-accent);
}

.blog-article-checkcard p {
  font-size: 0.98rem;
  line-height: 1.68;
}

.blog-infographic {
  --info-paper: #e9e2d5;
  --info-line: rgba(23, 52, 82, 0.22);
  --info-ink-soft: rgba(22, 20, 17, 0.68);
  display: grid;
  gap: 24px;
  max-width: 860px;
  margin: 22px 0 2px;
  padding: clamp(22px, 3vw, 32px);
  color: var(--blog-ink);
  background: var(--info-paper);
  border: 1px solid var(--blog-rule);
}

.blog-infographic__head {
  display: grid;
  gap: 8px;
  max-width: 660px;
}

.blog-infographic__label {
  color: var(--blog-accent);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-infographic__title {
  margin: 0;
  color: var(--blog-ink);
  font-family: var(--sans);
  font-size: clamp(1.12rem, 1.25vw, 1.38rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}

.blog-infographic__note,
.blog-infographic p {
  margin: 0;
  color: var(--info-ink-soft);
  font-family: var(--text);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.58;
}

.blog-info-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
}

.blog-info-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 172px;
  padding: 20px;
  background: var(--blog-card);
  border: 1px solid var(--info-line);
}

.blog-info-step::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 2px;
  background: var(--blog-accent);
  opacity: 0.38;
  content: "";
}

.blog-info-step span,
.blog-info-rule span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--paper-soft);
  font-family: var(--caption);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1;
  background: var(--blog-accent);
}

.blog-info-step strong,
.blog-info-rule strong,
.blog-info-interface__row strong,
.blog-info-time strong,
.blog-info-bar strong {
  color: var(--blog-ink);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}

.blog-info-step p {
  max-width: 14rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.blog-infographic--process .blog-info-step:nth-child(7) {
  grid-column: span 2;
}

.blog-info-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--info-line);
}

.blog-info-rule {
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 190px;
  padding: 22px;
  background: var(--blog-card);
}

.blog-info-interface {
  display: grid;
  border-top: 1px solid var(--info-line);
}

.blog-info-interface__row {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--info-line);
}

.blog-info-interface__row strong {
  padding: 16px 18px 16px 0;
  border-right: 1px solid var(--info-line);
}

.blog-info-interface__row span {
  display: grid;
  gap: 9px;
  padding: 15px 0 15px 18px;
  color: var(--info-ink-soft);
  font-family: var(--text);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.blog-info-interface__row i,
.blog-info-bar span {
  display: block;
  height: 3px;
  background: rgba(23, 52, 82, 0.14);
}

.blog-info-interface__row i::before,
.blog-info-bar span i {
  display: block;
  width: var(--w);
  height: 100%;
  background: var(--blog-accent);
  content: "";
}

.blog-info-bars {
  display: grid;
  gap: 14px;
}

.blog-info-bar {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(170px, 1fr) minmax(92px, auto);
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--info-line);
}

.blog-info-bar em {
  color: var(--blog-accent);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.blog-info-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--info-line);
}

.blog-info-time {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 176px;
  padding: 24px 20px 22px;
  background: var(--blog-card);
}

.blog-info-time span {
  width: 12px;
  height: 12px;
  background: var(--blog-accent);
}

.blog-infographic--strong {
  --strong-paper: #f7f0e6;
  --strong-blue: #173452;
  --strong-copper: #b37a44;
  --strong-line: rgba(247, 240, 230, 0.2);
  --strong-muted: rgba(247, 240, 230, 0.68);
  position: relative;
  max-width: 960px;
  padding: clamp(28px, 3.6vw, 44px);
  overflow: hidden;
  color: var(--strong-paper);
  background: #11100d;
  border-color: rgba(23, 52, 82, 0.86);
}

.blog-infographic--strong::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 52, 82, 0.42), transparent 34%),
    repeating-linear-gradient(90deg, rgba(247, 240, 230, 0.045) 0 1px, transparent 1px 28px);
  content: "";
}

.blog-infographic--strong > * {
  position: relative;
  z-index: 1;
}

.blog-infographic--strong .blog-infographic__label {
  color: #9eb9d4;
}

.blog-infographic--strong .blog-infographic__title {
  max-width: 680px;
  color: var(--strong-paper);
  font-size: clamp(1.28rem, 1.65vw, 1.78rem);
  font-weight: 500;
}

.blog-infographic--strong .blog-infographic__note,
.blog-infographic--strong p {
  color: var(--strong-muted);
}

.blog-info-command {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--strong-line);
}

.blog-info-command div,
.blog-info-decision div,
.blog-info-layer div {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--strong-line);
}

.blog-info-command div:last-child,
.blog-info-decision div:nth-child(2n),
.blog-info-layer div:last-child {
  border-right: 0;
}

.blog-info-command span,
.blog-info-layer span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--strong-paper);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 600;
  background: var(--strong-blue);
  border: 1px solid rgba(247, 240, 230, 0.18);
}

.blog-info-command strong,
.blog-info-decision b,
.blog-info-layer strong,
.blog-info-slope strong,
.blog-info-cost strong {
  color: var(--strong-paper);
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.blog-info-decision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--strong-line);
  border-left: 1px solid var(--strong-line);
}

.blog-info-decision div {
  min-height: 142px;
  border-right: 1px solid var(--strong-line);
  border-bottom: 1px solid var(--strong-line);
}

.blog-info-decision b {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-info-decision b::before {
  width: 10px;
  height: 10px;
  background: var(--strong-copper);
  content: "";
}

.blog-info-decision span,
.blog-info-cost em {
  color: var(--strong-muted);
  font-family: var(--text);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
}

.blog-info-slope {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.blog-info-slope__plane {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--strong-line);
  background: rgba(23, 52, 82, 0.28);
}

.blog-info-slope__plane::before {
  position: absolute;
  right: 24px;
  bottom: 72px;
  left: 24px;
  height: 4px;
  background: var(--strong-copper);
  transform: rotate(-8deg);
  transform-origin: left center;
  content: "";
}

.blog-info-slope__plane span {
  position: absolute;
  top: 22px;
  left: 22px;
  color: #9eb9d4;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-info-slope__plane i {
  position: absolute;
  right: 42px;
  bottom: 46px;
  width: 52px;
  height: 52px;
  border: 4px solid var(--strong-paper);
  border-radius: 50%;
}

.blog-info-slope__plane strong {
  position: absolute;
  right: 34px;
  bottom: 112px;
}

.blog-info-slope dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--strong-line);
}

.blog-info-slope dl div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: rgba(17, 16, 13, 0.84);
}

.blog-info-slope dt {
  color: var(--strong-copper);
  font-family: var(--caption);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.blog-info-slope dd {
  margin: 0;
  color: var(--strong-muted);
  font-family: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.blog-info-site-check {
  display: grid;
  gap: 10px;
}

.blog-info-site-check__labels,
.blog-info-site-check article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) minmax(190px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.blog-info-site-check__labels {
  padding: 0 20px 2px;
  color: #e3c997;
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-info-site-check__labels span:first-child {
  grid-column: 2;
}

.blog-info-site-check article {
  padding: 20px;
  background: rgba(17, 16, 13, 0.84);
  border: 1px solid var(--strong-line);
}

.blog-info-site-check article:nth-child(2n + 1) {
  background: rgba(23, 52, 82, 0.3);
}

.blog-info-site-check article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--strong-blue);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 800;
  background: var(--strong-copper);
}

.blog-info-site-check strong {
  display: block;
  margin-bottom: 7px;
  color: var(--strong-paper);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.18;
}

.blog-info-site-check p {
  margin: 0;
  color: var(--strong-paper-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}

.blog-info-site-check em {
  align-self: stretch;
  display: grid;
  align-content: center;
  margin: -4px 0;
  padding: 14px 16px;
  color: #11100d;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 620;
  line-height: 1.28;
  background: #faf6ed;
  border-left: 4px solid var(--strong-copper);
}

.blog-info-site-result {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 4px;
  padding: 20px;
  color: #11100d;
  background: #faf6ed;
  border-left: 4px solid var(--strong-copper);
}

.blog-info-site-result strong {
  color: #11100d;
  font-family: var(--sans);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.2;
}

.blog-info-site-result p {
  margin: 0;
  color: rgba(17, 16, 13, 0.74);
  font-size: 0.94rem;
  line-height: 1.52;
}

.blog-info-layer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--strong-line);
}

.blog-info-layer div {
  min-height: 210px;
}

.blog-info-layer div:nth-child(even) {
  background: rgba(23, 52, 82, 0.24);
}

.blog-info-cost {
  display: grid;
  gap: 16px;
}

.blog-info-cost div {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(180px, 1fr) 84px;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--strong-line);
}

.blog-info-cost span {
  display: block;
  height: 8px;
  background: rgba(247, 240, 230, 0.12);
}

.blog-info-cost span i {
  display: block;
  width: var(--w);
  height: 100%;
  background: var(--strong-copper);
}

.blog-info-cost em {
  color: #9eb9d4;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.blog-infographic--strong .blog-info-timeline {
  border: 1px solid var(--strong-line);
  background: var(--strong-line);
}

.blog-infographic--strong .blog-info-time {
  background: #f7f0e6;
  color: #11100d;
}

.blog-infographic--strong .blog-info-time span {
  background: var(--strong-blue);
}

.blog-infographic--strong .blog-info-time strong {
  color: #11100d;
}

.blog-infographic--strong .blog-info-time p {
  color: rgba(17, 16, 13, 0.74);
}

.blog-info-risk-map,
.blog-info-contract-grid {
  display: grid;
  gap: 1px;
  background: var(--strong-line);
  border: 1px solid var(--strong-line);
}

.blog-info-risk-map {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-info-risk-map article,
.blog-info-contract-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 214px;
  padding: 22px;
  background: rgba(17, 16, 13, 0.84);
}

.blog-info-risk-map article:nth-child(2n),
.blog-info-contract-grid article:nth-child(2n) {
  background: rgba(23, 52, 82, 0.24);
}

.blog-info-risk-map article > span {
  color: var(--strong-copper);
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.blog-info-risk-map strong,
.blog-info-contract-grid strong {
  color: var(--strong-paper);
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.blog-info-risk-map p,
.blog-info-contract-grid p {
  color: var(--strong-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.blog-info-risk-map em {
  align-self: end;
  color: #9eb9d4;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-info-risk-map i {
  display: block;
  height: 5px;
  margin-top: 2px;
  background: rgba(247, 240, 230, 0.12);
}

.blog-info-risk-map i::before {
  display: block;
  width: var(--w);
  height: 100%;
  background: var(--strong-copper);
  content: "";
}

.blog-info-contract-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-info-contract-grid article {
  min-height: 0;
}

.blog-info-contract-grid article:last-child {
  grid-column: 1 / -1;
}

.blog-info-contract-grid article > span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 9px;
  color: #9eb9d4;
  font-family: var(--caption);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
  border-bottom: 2px solid var(--strong-copper);
}

.blog-article-media {
  display: grid;
  max-width: 980px;
  margin: 24px 0 4px;
  border: 1px solid var(--blog-rule);
  background: var(--blog-card);
}

.blog-article-media figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--blog-ink);
}

.blog-article-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.blog-article-media figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: min(260px, calc(100% - 32px));
  padding: 0.62rem 0.72rem 0.56rem;
  color: var(--paper-soft);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  background: rgba(17, 16, 13, 0.78);
}

.blog-article-media--wide figure {
  aspect-ratio: 16 / 8;
}

.blog-article-media--pair,
.blog-article-media--triptych,
.blog-article-media--gallery {
  gap: 1px;
  background: var(--blog-rule);
}

.blog-article-media--pair {
  grid-template-columns: 1.1fr 0.9fr;
}

.blog-article-media--pair figure,
.blog-article-media--triptych figure {
  aspect-ratio: 4 / 3;
}

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

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

.blog-article-media--gallery figure {
  aspect-ratio: 5 / 4;
}

.blog-article-photo {
  --photo-blue: #173452;
  --photo-blue-dark: #0f263b;
  --photo-brass: #d49a3f;
  --photo-sage: #8fa28a;
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  max-width: 980px;
  margin: clamp(26px, 4vw, 46px) 0 clamp(8px, 2vw, 18px);
  color: var(--paper-soft);
  background: var(--photo-blue-dark);
  border: 1px solid rgba(23, 52, 82, 0.78);
}

.blog-article-photo--left {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
}

.blog-article-photo__image {
  position: relative;
  min-width: 0;
  min-height: clamp(360px, 42vw, 500px);
  margin: 0;
  overflow: hidden;
  background: var(--blog-ink);
}

.blog-article-photo__image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(9, 16, 20, 0.22)),
    linear-gradient(90deg, rgba(23, 52, 82, 0.1), transparent 34%);
  content: "";
}

.blog-article-photo__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-photo__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 20px);
  min-width: 0;
  padding: clamp(34px, 4.2vw, 54px) clamp(34px, 4.4vw, 58px);
  background: var(--photo-blue);
}

.blog-article-photo__copy::before {
  content: none;
}

.blog-article-photo__copy span,
.blog-article-photo__copy small {
  color: rgba(250, 246, 237, 0.72);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.blog-article-photo__copy span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(100%, 42ch);
  color: #d8c7aa;
  white-space: normal;
}

.blog-article-photo__copy span::after {
  flex: 1 1 64px;
  min-width: 44px;
  max-width: 148px;
  height: 2px;
  background: var(--photo-brass);
  content: "";
}

.blog-article-photo__copy h3 {
  max-width: 15.5ch;
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--sans);
  font-size: clamp(2rem, 2.5vw, 2.78rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  overflow-wrap: normal;
  text-wrap: balance;
}

.blog-article-photo__copy p {
  max-width: 34ch;
  margin: 0;
  color: rgba(250, 246, 237, 0.88);
  font-family: var(--text);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  font-weight: 420;
  line-height: 1.58;
}

.blog-article__section .blog-article-photo__copy p {
  color: rgba(250, 246, 237, 0.88);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  font-weight: 420;
  line-height: 1.58;
}

.blog-article-photo__copy small {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8c7aa;
}

.blog-article-photo__copy small::before {
  width: 28px;
  height: 2px;
  background: var(--photo-sage);
  content: "";
}

.blog-article-photo--left .blog-article-photo__image {
  order: 2;
}

.blog-article-photo--left .blog-article-photo__copy {
  order: 1;
}

.blog-article__section .blog-infographic--strong {
  --strong-paper: #faf6ed;
  --strong-paper-dim: rgba(250, 246, 237, 0.78);
  --strong-blue: #173452;
  --strong-blue-deep: #0d253a;
  --strong-blue-panel: #213f5d;
  --strong-copper: #d59a3d;
  --strong-sage: #9aa88d;
  --strong-clay: #bd7252;
  --strong-line: rgba(250, 246, 237, 0.22);
  max-width: 980px;
  padding: clamp(30px, 4vw, 50px);
  color: var(--strong-paper);
  background: var(--strong-blue);
  border: 1px solid #10283f;
  box-shadow: none;
}

.blog-article__section .blog-infographic--strong::before {
  background:
    linear-gradient(90deg, rgba(250, 246, 237, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 246, 237, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.72;
}

.blog-article__section .blog-infographic--strong .blog-infographic__head {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: end;
  margin-bottom: clamp(28px, 3.6vw, 44px);
  padding-bottom: clamp(22px, 2.8vw, 34px);
  border-bottom: 1px solid var(--strong-line);
}

.blog-article__section .blog-infographic--strong .blog-infographic__label {
  color: #e3c997;
}

.blog-article__section .blog-infographic--strong .blog-infographic__label::after {
  display: block;
  width: 100%;
  max-width: 165px;
  height: 2px;
  margin-top: 16px;
  background: var(--strong-copper);
  content: "";
}

.blog-article__section .blog-infographic--strong .blog-infographic__title {
  max-width: 720px;
  color: var(--strong-paper);
  font-size: clamp(1.52rem, 2vw, 2.12rem);
  font-weight: 470;
  line-height: 1.1;
}

.blog-article__section .blog-infographic--strong .blog-infographic__note,
.blog-article__section .blog-infographic--strong p,
.blog-article__section .blog-infographic--strong dd,
.blog-article__section .blog-infographic--strong span {
  color: var(--strong-paper-dim);
}

.blog-article__section .blog-infographic--strong .blog-info-time {
  background: var(--strong-paper);
  color: var(--strong-blue);
}

.blog-article__section .blog-infographic--strong .blog-info-time span {
  background: var(--strong-blue);
}

.blog-article__section .blog-infographic--strong .blog-info-time strong {
  color: var(--strong-blue-deep);
}

.blog-article__section .blog-infographic--strong .blog-info-time p {
  color: rgba(13, 37, 58, 0.76);
}

.blog-article__section .blog-info-triad,
.blog-article__section .blog-info-permit-flow,
.blog-article__section .blog-info-permit-system,
.blog-article__section .blog-info-layer-stack,
.blog-article__section .blog-info-cost-board {
  position: relative;
  z-index: 1;
}

.blog-article__section .blog-info-triad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.blog-article__section .blog-info-triad article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 235px;
  padding: 26px 24px 24px;
  background: var(--strong-blue-panel);
  border-top: 3px solid var(--strong-copper);
}

.blog-article__section .blog-info-triad article:nth-child(2) {
  background: #244861;
  border-top-color: var(--strong-sage);
}

.blog-article__section .blog-info-triad article:nth-child(3) {
  background: var(--strong-blue-deep);
  border-top-color: var(--strong-clay);
}

.blog-article__section .blog-info-triad span,
.blog-article__section .blog-info-layer-stack span,
.blog-article__section .blog-info-permit-flow article span,
.blog-article__section .blog-info-permit-system article span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--strong-blue);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--strong-paper);
}

.blog-article__section .blog-info-triad strong,
.blog-article__section .blog-info-permit-flow strong,
.blog-article__section .blog-info-permit-system strong,
.blog-article__section .blog-info-layer-stack strong,
.blog-article__section .blog-info-slope strong,
.blog-article__section .blog-info-cost-board strong {
  color: var(--strong-paper);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.18;
}

.blog-article__section .blog-info-triad p,
.blog-article__section .blog-info-permit-flow p,
.blog-article__section .blog-info-permit-system p,
.blog-article__section .blog-info-layer-stack p {
  margin: 0;
  color: var(--strong-paper-dim);
  font-size: 0.95rem;
  line-height: 1.54;
}

.blog-article__section .blog-info-permit-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--strong-line);
  border: 1px solid var(--strong-line);
}

.blog-article__section .blog-info-permit-flow article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-height: 270px;
  padding: 24px 22px 22px;
  background: var(--strong-blue-deep);
}

.blog-article__section .blog-info-permit-flow article:nth-child(2),
.blog-article__section .blog-info-permit-flow article:nth-child(4) {
  background: var(--strong-blue-panel);
}

.blog-article__section .blog-info-permit-flow article::before {
  width: 58px;
  height: 3px;
  background: var(--strong-copper);
  content: "";
}

.blog-article__section .blog-info-permit-flow article:nth-child(2)::before {
  background: var(--strong-sage);
}

.blog-article__section .blog-info-permit-flow article:nth-child(3)::before {
  background: #e3c997;
}

.blog-article__section .blog-info-permit-flow article:nth-child(4)::before {
  background: var(--strong-clay);
}

.blog-article__section .blog-info-permit-flow article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-top: 1px solid var(--strong-line);
  border-right: 1px solid var(--strong-line);
  background: inherit;
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.blog-article__section .blog-info-permit-flow em {
  align-self: end;
  width: fit-content;
  padding: 0.48rem 0.58rem 0.42rem;
  color: var(--strong-blue);
  font-family: var(--caption);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  background: var(--strong-paper);
}

.blog-article__section .blog-info-air-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.blog-article__section .blog-info-air-path article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 26px 22px 24px;
  background: var(--strong-blue-deep);
  border: 1px solid var(--strong-line);
  border-top: 3px solid var(--strong-copper);
}

.blog-article__section .blog-info-air-path article:nth-child(2) {
  background: #183753;
  border-top-color: #e3c997;
}

.blog-article__section .blog-info-air-path article:nth-child(3) {
  background: var(--strong-blue-panel);
  border-top-color: var(--strong-sage);
}

.blog-article__section .blog-info-air-path article:nth-child(4) {
  background: #102a43;
  border-top-color: var(--strong-clay);
}

.blog-article__section .blog-info-air-path article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-top: 1px solid var(--strong-line);
  border-right: 1px solid var(--strong-line);
  background: inherit;
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.blog-article__section .blog-info-air-path span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--strong-blue);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 760;
  background: var(--strong-paper);
}

.blog-article__section .blog-info-air-path strong {
  color: var(--strong-paper);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.18;
}

.blog-article__section .blog-info-air-path p {
  margin: 0;
  color: var(--strong-paper-dim);
  font-size: 0.95rem;
  line-height: 1.54;
}

.blog-article__section .blog-info-permit-system {
  display: grid;
  grid-template-columns: 54px repeat(2, minmax(0, 1fr));
  grid-template-rows: auto repeat(2, minmax(155px, auto));
  gap: 1px;
  background: var(--strong-line);
}

.blog-article__section .blog-info-axis,
.blog-article__section .blog-info-permit-system article {
  background: var(--strong-blue-deep);
}

.blog-article__section .blog-info-axis {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: #e3c997;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-article__section .blog-info-axis--x {
  grid-column: 2 / 4;
}

.blog-article__section .blog-info-axis--y {
  grid-row: 2 / 4;
  flex-direction: column-reverse;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.blog-article__section .blog-info-permit-system article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 155px;
  padding: 22px;
}

.blog-article__section .blog-info-permit-system article:nth-of-type(2),
.blog-article__section .blog-info-permit-system article:nth-of-type(3) {
  background: var(--strong-blue-panel);
}

.blog-article__section .blog-info-permit-system article::before {
  width: 52px;
  height: 3px;
  background: var(--strong-copper);
  content: "";
}

.blog-article__section .blog-info-slope__plane {
  background: var(--strong-blue-deep);
  border-color: var(--strong-line);
}

.blog-article__section .blog-info-slope__plane::before,
.blog-article__section .blog-info-cost-board i {
  background: var(--strong-copper);
}

.blog-article__section .blog-info-slope__plane i {
  border-color: var(--strong-paper);
  box-shadow: none;
}

.blog-article__section .blog-info-slope dl {
  background: var(--strong-line);
}

.blog-article__section .blog-info-slope dl div {
  background: var(--strong-blue-deep);
}

.blog-article__section .blog-info-slope dt,
.blog-article__section .blog-info-cost-board em {
  color: #f0c66f;
}

.blog-article__section .blog-info-layer-stack {
  display: grid;
  gap: 0;
  border: 1px solid var(--strong-line);
}

.blog-article__section .blog-info-layer-stack article {
  display: grid;
  grid-template-columns: 48px minmax(135px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--strong-line);
  background: var(--strong-blue-panel);
}

.blog-article__section .blog-info-layer-stack article:nth-child(2) {
  background: #244861;
}

.blog-article__section .blog-info-layer-stack article:nth-child(3) {
  background: #12304a;
}

.blog-article__section .blog-info-layer-stack article:nth-child(4) {
  background: var(--strong-blue-deep);
  border-bottom: 0;
}

.blog-article__section .blog-info-cost-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 330px;
  padding: 18px 0 0;
  border-bottom: 1px solid var(--strong-line);
}

.blog-article__section .blog-info-cost-board article {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 12px;
  min-height: 300px;
}

.blog-article__section .blog-info-cost-board span {
  position: relative;
  display: block;
  min-height: 210px;
  background: rgba(250, 246, 237, 0.11);
}

.blog-article__section .blog-info-cost-board i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--h);
}

.blog-article__section .blog-info-cost-board article:nth-child(2) i,
.blog-article__section .blog-info-cost-board article:nth-child(4) i {
  background: var(--strong-sage);
}

.blog-article__section .blog-info-cost-board article:nth-child(3) i {
  background: #e3c997;
}

.blog-article__section .blog-info-cost-board article:nth-child(5) i {
  background: var(--strong-clay);
}

.blog-article__section .blog-info-cost-board em {
  font-family: var(--caption);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-article__section .blog-info-laundry-blueprint,
.blog-article__section .blog-info-laundry-checklist,
.blog-article__section .blog-info-laundry-room-map,
.blog-article__section .blog-info-laundry-water-map,
.blog-article__section .blog-info-laundry-machine-map,
.blog-article__section .blog-info-laundry-service-map,
.blog-article__section .blog-info-laundry-cost-matrix,
.blog-article__section .blog-info-laundry-offer-audit,
.blog-article__section .blog-info-laundry-docs-package {
  position: relative;
  z-index: 1;
}

.blog-article__section .blog-info-laundry-blueprint {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.blog-article__section .blog-info-laundry-blueprint article,
.blog-article__section .blog-info-laundry-room-map article,
.blog-article__section .blog-info-laundry-machine-map article,
.blog-article__section .blog-info-laundry-service-map article,
.blog-article__section .blog-info-laundry-cost-matrix article,
.blog-article__section .blog-info-laundry-docs-package article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 24px 22px;
  background: var(--strong-blue-deep);
  border: 1px solid var(--strong-line);
  border-top: 3px solid var(--strong-copper);
}

.blog-article__section .blog-info-laundry-blueprint article {
  min-height: 270px;
}

.blog-article__section .blog-info-laundry-blueprint article:nth-child(2),
.blog-article__section .blog-info-laundry-room-map article:nth-child(2),
.blog-article__section .blog-info-laundry-machine-map article:nth-child(2),
.blog-article__section .blog-info-laundry-service-map article:nth-child(2),
.blog-article__section .blog-info-laundry-cost-matrix article:nth-child(2),
.blog-article__section .blog-info-laundry-docs-package article:nth-child(2) {
  background: #244861;
  border-top-color: #e3c997;
}

.blog-article__section .blog-info-laundry-blueprint article:nth-child(3),
.blog-article__section .blog-info-laundry-room-map article:nth-child(3),
.blog-article__section .blog-info-laundry-machine-map article:nth-child(3),
.blog-article__section .blog-info-laundry-service-map article:nth-child(3),
.blog-article__section .blog-info-laundry-cost-matrix article:nth-child(3),
.blog-article__section .blog-info-laundry-docs-package article:nth-child(3) {
  background: var(--strong-blue-panel);
  border-top-color: var(--strong-sage);
}

.blog-article__section .blog-info-laundry-blueprint article:nth-child(4),
.blog-article__section .blog-info-laundry-room-map article:nth-child(4),
.blog-article__section .blog-info-laundry-machine-map article:nth-child(4),
.blog-article__section .blog-info-laundry-service-map article:nth-child(4),
.blog-article__section .blog-info-laundry-cost-matrix article:nth-child(4),
.blog-article__section .blog-info-laundry-docs-package article:nth-child(4) {
  background: #102a43;
  border-top-color: var(--strong-clay);
}

.blog-article__section .blog-info-laundry-blueprint article:nth-child(5),
.blog-article__section .blog-info-laundry-service-map article:nth-child(5),
.blog-article__section .blog-info-laundry-cost-matrix article:nth-child(5) {
  background: #162f48;
  border-top-color: #d8c7aa;
}

.blog-article__section .blog-info-laundry-blueprint span,
.blog-article__section .blog-info-laundry-checklist span,
.blog-article__section .blog-info-laundry-room-map span,
.blog-article__section .blog-info-laundry-water-map span,
.blog-article__section .blog-info-laundry-machine-map span,
.blog-article__section .blog-info-laundry-service-map span,
.blog-article__section .blog-info-laundry-cost-matrix span,
.blog-article__section .blog-info-laundry-offer-audit span,
.blog-article__section .blog-info-laundry-docs-package span {
  width: fit-content;
  color: #f0c66f;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.blog-article__section .blog-info-laundry-blueprint span::after,
.blog-article__section .blog-info-laundry-room-map span::after,
.blog-article__section .blog-info-laundry-machine-map span::after,
.blog-article__section .blog-info-laundry-service-map span::after,
.blog-article__section .blog-info-laundry-cost-matrix span::after {
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 10px;
  background: currentColor;
  content: "";
}

.blog-article__section .blog-info-laundry-blueprint strong,
.blog-article__section .blog-info-laundry-checklist strong,
.blog-article__section .blog-info-laundry-room-map strong,
.blog-article__section .blog-info-laundry-water-map strong,
.blog-article__section .blog-info-laundry-machine-map strong,
.blog-article__section .blog-info-laundry-service-map strong,
.blog-article__section .blog-info-laundry-cost-matrix strong,
.blog-article__section .blog-info-laundry-offer-audit strong,
.blog-article__section .blog-info-laundry-docs-package strong {
  color: var(--strong-paper);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  font-weight: 580;
  letter-spacing: 0;
  line-height: 1.18;
  min-width: 0;
  overflow-wrap: anywhere;
}

.blog-article__section .blog-info-laundry-blueprint p,
.blog-article__section .blog-info-laundry-checklist p,
.blog-article__section .blog-info-laundry-room-map p,
.blog-article__section .blog-info-laundry-water-map p,
.blog-article__section .blog-info-laundry-machine-map p,
.blog-article__section .blog-info-laundry-service-map p,
.blog-article__section .blog-info-laundry-cost-matrix p,
.blog-article__section .blog-info-laundry-offer-audit p,
.blog-article__section .blog-info-laundry-docs-package p {
  margin: 0;
  color: var(--strong-paper-dim);
  font-size: 0.94rem;
  line-height: 1.54;
  min-width: 0;
  overflow-wrap: anywhere;
}

.blog-article__section .blog-info-laundry-blueprint em,
.blog-article__section .blog-info-laundry-machine-map em,
.blog-article__section .blog-info-laundry-offer-audit em {
  align-self: end;
  color: #d8c7aa;
  font-family: var(--caption);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
  min-width: 0;
  overflow-wrap: anywhere;
}

.blog-article__section .blog-info-laundry-checklist {
  display: grid;
  gap: 1px;
  background: var(--strong-line);
  border: 1px solid var(--strong-line);
}

.blog-article__section .blog-info-laundry-checklist article {
  display: grid;
  grid-template-columns: 48px minmax(150px, 0.28fr) minmax(0, 1fr) minmax(130px, 0.22fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: var(--strong-blue-deep);
}

.blog-article__section .blog-info-laundry-checklist article:nth-child(even) {
  background: #244861;
}

.blog-article__section .blog-info-laundry-checklist span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--strong-blue);
  background: var(--strong-paper);
}

.blog-article__section .blog-info-laundry-checklist em {
  color: #e3c997;
  font-family: var(--caption);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.blog-article__section .blog-info-laundry-room-map,
.blog-article__section .blog-info-laundry-machine-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.blog-article__section .blog-info-laundry-water-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--strong-line);
  border: 1px solid var(--strong-line);
}

.blog-article__section .blog-info-laundry-water-map article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 245px;
  padding: 24px 20px;
  background: var(--strong-blue-deep);
}

.blog-article__section .blog-info-laundry-water-map article:nth-child(even) {
  background: var(--strong-blue-panel);
}

.blog-article__section .blog-info-laundry-water-map article:not(:last-child)::after {
  position: absolute;
  top: 34px;
  right: 12px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--strong-line);
  border-right: 1px solid var(--strong-line);
  transform: rotate(45deg);
  content: "";
}

.blog-article__section .blog-info-laundry-water-map span,
.blog-article__section .blog-info-laundry-docs-package span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--strong-blue);
  background: var(--strong-paper);
}

.blog-article__section .blog-info-laundry-service-map,
.blog-article__section .blog-info-laundry-cost-matrix {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.blog-article__section .blog-info-laundry-service-map article,
.blog-article__section .blog-info-laundry-cost-matrix article {
  min-height: 245px;
}

.blog-article__section .blog-info-laundry-offer-audit {
  display: grid;
  gap: 1px;
  background: var(--strong-line);
  border: 1px solid var(--strong-line);
}

.blog-article__section .blog-info-laundry-offer-audit article {
  display: grid;
  grid-template-columns: 72px minmax(160px, 0.24fr) minmax(0, 1fr) minmax(150px, 0.26fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: var(--strong-blue-deep);
}

.blog-article__section .blog-info-laundry-offer-audit article:nth-child(even) {
  background: #244861;
}

.blog-article__section .blog-info-laundry-offer-audit span {
  color: #e3c997;
}

.blog-article__section .blog-info-laundry-offer-audit em {
  color: #f2d6a2;
}

.blog-article__section .blog-info-laundry-docs-package {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.blog-article__section .blog-info-laundry-docs-package article {
  min-height: 230px;
}

.blog-article__section .insulation-wall-system {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.blog-article__section .insulation-wall-system article,
.blog-article__section .insulation-wall-system div {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 24px 22px;
  background: var(--strong-blue-deep);
  border: 1px solid var(--strong-line);
}

.blog-article__section .insulation-wall-system article {
  min-height: 245px;
  border-top: 3px solid var(--strong-copper);
}

.blog-article__section .insulation-wall-system article:nth-child(2) {
  background: #244861;
  border-top-color: #e3c997;
}

.blog-article__section .insulation-wall-system article:nth-child(3) {
  background: var(--strong-blue-panel);
  border-top-color: var(--strong-sage);
}

.blog-article__section .insulation-wall-system article:nth-child(4) {
  border-top-color: var(--strong-clay);
}

.blog-article__section .insulation-wall-system div {
  grid-column: 1 / -1;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  align-items: start;
  background: #12304a;
  border-left: 4px solid var(--strong-sage);
}

.blog-article__section .insulation-wall-system span {
  width: fit-content;
  color: #f0c66f;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-article__section .insulation-wall-system strong {
  color: var(--strong-paper);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.18;
}

.blog-article__section .insulation-wall-system p {
  margin: 0;
  color: var(--strong-paper-dim);
  font-size: 0.95rem;
  line-height: 1.54;
}

@media (max-width: 1080px) {
  .blog-article-photo,
  .blog-article-photo--left {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .blog-article-photo--left .blog-article-photo__image,
  .blog-article-photo--left .blog-article-photo__copy {
    order: initial;
  }

  .blog-article-photo__image {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .blog-article-photo__copy {
    padding: clamp(30px, 5vw, 44px);
  }

  .blog-article-photo__copy h3 {
    max-width: 18ch;
    font-size: clamp(2rem, 4.2vw, 2.6rem);
  }

  .blog-article__section .blog-infographic--strong .blog-infographic__head {
    grid-template-columns: 1fr;
  }

  .blog-article__section .blog-info-triad {
    grid-template-columns: 1fr;
  }

  .blog-article__section .blog-info-triad article {
    min-height: 0;
  }

  .blog-article__section .blog-info-permit-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    background: transparent;
    border: 0;
  }

  .blog-article__section .blog-info-permit-flow article {
    min-height: 0;
    border: 1px solid var(--strong-line);
  }

  .blog-article__section .blog-info-permit-flow article:not(:last-child)::after {
    content: none;
  }

  .blog-article__section .blog-info-air-path {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-article__section .blog-info-air-path article {
    min-height: 0;
  }

  .blog-article__section .blog-info-air-path article:not(:last-child)::after {
    content: none;
  }

  .blog-article__section .blog-info-laundry-blueprint,
  .blog-article__section .blog-info-laundry-water-map,
  .blog-article__section .blog-info-laundry-service-map,
  .blog-article__section .blog-info-laundry-cost-matrix,
  .blog-article__section .blog-info-laundry-docs-package {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-article__section .blog-info-laundry-blueprint article,
  .blog-article__section .blog-info-laundry-water-map article,
  .blog-article__section .blog-info-laundry-service-map article,
  .blog-article__section .blog-info-laundry-cost-matrix article,
  .blog-article__section .blog-info-laundry-docs-package article {
    min-height: 0;
  }

  .blog-article__section .blog-info-laundry-water-map {
    gap: 12px;
    background: transparent;
    border: 0;
  }

  .blog-article__section .blog-info-laundry-water-map article {
    border: 1px solid var(--strong-line);
  }

  .blog-article__section .blog-info-laundry-water-map article:not(:last-child)::after {
    content: none;
  }

  .blog-article__section .blog-info-laundry-checklist article,
  .blog-article__section .blog-info-laundry-offer-audit article {
    grid-template-columns: 48px minmax(150px, 0.34fr) minmax(0, 1fr);
  }

  .blog-article__section .blog-info-laundry-checklist em,
  .blog-article__section .blog-info-laundry-offer-audit em {
    grid-column: 2 / -1;
  }

  .blog-article__section .blog-info-permit-system {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    background: transparent;
  }

  .blog-article__section .blog-info-axis {
    display: none;
  }

  .blog-article__section .blog-info-layer-stack article {
    grid-template-columns: 44px minmax(120px, 0.35fr) minmax(0, 1fr);
  }

  .blog-article__section .blog-info-cost-board {
    grid-template-columns: repeat(5, minmax(96px, 1fr));
    overflow-x: auto;
    padding-bottom: 14px;
  }

  .blog-article__section .insulation-wall-system {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-article__section .insulation-wall-system article {
    min-height: 0;
  }

  .blog-article__section .insulation-wall-system div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .blog-article-photo {
    max-width: none;
    margin: 30px 0 6px;
    border: 1px solid rgba(23, 52, 82, 0.78);
  }

  .blog-article-photo__image {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .blog-article-photo__copy {
    gap: 14px;
    padding: 24px clamp(20px, 6vw, 28px) 26px;
  }

  .blog-article-photo__copy span {
    display: grid;
    grid-template-columns: auto minmax(42px, 1fr);
    gap: 10px;
    width: 100%;
    max-width: none;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .blog-article-photo__copy h3 {
    max-width: 16ch;
    font-size: clamp(1.78rem, 8.2vw, 2.3rem);
    line-height: 1.06;
  }

  .blog-article__section .blog-article-photo__copy p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .blog-article-photo__copy small {
    align-items: flex-start;
    font-size: 0.62rem;
    letter-spacing: 0.11em;
    line-height: 1.45;
  }

  .blog-article-photo__copy small::before {
    flex: 0 0 26px;
    margin-top: 0.42em;
  }

  .blog-article__section .blog-infographic--strong {
    margin-right: calc(-1 * var(--page-pad));
    margin-left: calc(-1 * var(--page-pad));
    padding: 30px var(--page-pad);
    border-right: 0;
    border-left: 0;
  }

  .blog-article__section .blog-info-layer-stack article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .blog-article__section .blog-info-layer-stack article p {
    grid-column: 2;
  }

  .blog-article__section .blog-info-cost-board {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: visible;
  }

  .blog-article__section .blog-info-laundry-blueprint,
  .blog-article__section .blog-info-laundry-room-map,
  .blog-article__section .blog-info-laundry-water-map,
  .blog-article__section .blog-info-laundry-machine-map,
  .blog-article__section .blog-info-laundry-service-map,
  .blog-article__section .blog-info-laundry-cost-matrix,
  .blog-article__section .blog-info-laundry-docs-package {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-article__section .blog-info-laundry-blueprint article,
  .blog-article__section .blog-info-laundry-room-map article,
  .blog-article__section .blog-info-laundry-water-map article,
  .blog-article__section .blog-info-laundry-machine-map article,
  .blog-article__section .blog-info-laundry-service-map article,
  .blog-article__section .blog-info-laundry-cost-matrix article,
  .blog-article__section .blog-info-laundry-docs-package article {
    padding: 18px;
  }

  .blog-article__section .blog-info-laundry-checklist {
    gap: 10px;
    background: transparent;
    border: 0;
  }

  .blog-article__section .blog-info-laundry-checklist article,
  .blog-article__section .blog-info-laundry-offer-audit article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 18px;
    border: 1px solid var(--strong-line);
  }

  .blog-article__section .blog-info-laundry-checklist p,
  .blog-article__section .blog-info-laundry-checklist em,
  .blog-article__section .blog-info-laundry-offer-audit p,
  .blog-article__section .blog-info-laundry-offer-audit em {
    grid-column: 2;
  }

  .blog-article__section .blog-info-laundry-checklist span,
  .blog-article__section .blog-info-laundry-water-map span,
  .blog-article__section .blog-info-laundry-docs-package span {
    width: 34px;
    height: 34px;
  }

  .blog-article__section .blog-info-laundry-offer-audit {
    gap: 10px;
    background: transparent;
    border: 0;
  }

  .blog-article__section .insulation-wall-system {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-article__section .insulation-wall-system article,
  .blog-article__section .insulation-wall-system div {
    padding: 18px;
  }

  .blog-article__section .insulation-wall-system strong {
    font-size: 0.98rem;
    line-height: 1.22;
  }

  .blog-article__section .insulation-wall-system p {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .blog-article__section .blog-info-cost-board article {
    grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr) 76px;
    grid-template-rows: auto;
    align-items: center;
    min-height: 0;
  }

  .blog-article__section .blog-info-cost-board span {
    min-height: 8px;
  }

  .blog-article__section .blog-info-cost-board i {
    width: var(--h);
    height: 100%;
  }
}

.blog-article__faq {
  gap: 0;
}

.blog-article__faq details {
  border-top: 1px solid var(--blog-rule);
}

.blog-article__faq details:first-of-type {
  margin-top: 12px;
}

.blog-article__faq summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--blog-ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

.blog-article__faq details p {
  padding: 0 0 24px;
}

.blog-article__sources {
  display: grid;
  gap: 18px;
  margin-top: 12px;
  padding: 26px 0;
  border-top: 1px solid var(--blog-rule-strong);
  border-bottom: 1px solid var(--blog-rule);
}

.blog-article__sources h2 {
  margin: 0;
  color: var(--blog-muted);
}

.blog-article__sources div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-article__sources a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.7rem 0.86rem 0.64rem;
  border: 1px solid var(--blog-rule);
  color: var(--blog-ink);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.blog-article__sources a:hover,
.blog-article__sources a:focus-visible {
  background: var(--blog-ink);
  color: var(--paper-soft);
}

.blog-related {
  padding-top: 88px;
  padding-bottom: 126px;
  background: var(--blog-panel);
  border-top: 1px solid var(--blog-rule);
}

.blog-related__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 42px;
}

.blog-related__head h2 {
  max-width: 820px;
  margin: 0;
  color: var(--blog-ink);
  font-family: var(--display);
  font-size: 4.4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.92;
}

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--blog-rule);
}

.blog-related-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  min-height: 330px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: var(--blog-card);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.blog-related-card:hover,
.blog-related-card:focus-visible {
  background: var(--blog-ink);
  color: var(--paper-soft);
  transform: translateY(-2px);
}

.blog-related-card > span:not(.blog-related-card__media),
.blog-related-card em {
  color: var(--blog-muted);
  font-style: normal;
}

.blog-related-card:hover > span:not(.blog-related-card__media),
.blog-related-card:focus-visible > span:not(.blog-related-card__media),
.blog-related-card:hover em,
.blog-related-card:focus-visible em {
  color: rgba(246, 239, 227, 0.68);
}

.blog-related-card strong {
  color: currentColor;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.blog-related-card__media {
  display: block;
  height: 160px;
  margin: -24px -24px 0;
  width: calc(100% + 48px);
  overflow: hidden;
  background: #171510;
}

.blog-related-card__media img {
  filter: saturate(0.86) contrast(1.04);
  transition: filter 240ms ease, transform 240ms ease;
}

.blog-related-card:hover .blog-related-card__media img,
.blog-related-card:focus-visible .blog-related-card__media img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.035);
}

@media (max-width: 1320px) {
  .blog-index-hero {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .blog-index-hero h1,
  .blog-article-hero h1 {
    font-size: 4.65rem;
  }

  .blog-index-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .blog-index-hero__stats span {
    display: grid;
    justify-content: stretch;
    border-top: 0;
    border-right: 1px solid var(--line);
    padding: 18px;
  }

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

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

@media (max-width: 1080px) {
  .blog-feature-card,
  .blog-index-topics,
  .blog-article-intro,
  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-feature-card {
    min-height: 0;
  }

  .blog-feature-card__media {
    min-height: 360px;
  }

  .blog-article-toc {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }

  .blog-article-toc span {
    grid-column: 1 / -1;
  }

  .blog-calculator-embed {
    width: 100%;
  }

  .blog-calculator-embed__intro {
    grid-template-columns: 1fr;
  }

  .blog-reader-map__head {
    grid-template-columns: 1fr;
  }

  .blog-author-strip,
  .blog-author-profile {
    grid-template-columns: 1fr;
  }

  .blog-author-strip__link {
    justify-self: start;
  }

  .blog-author-profile__card {
    position: relative;
    top: auto;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .blog-author-profile__quality {
    grid-column: 1;
  }

  .blog-reader-map__head h2,
  .blog-reader-map__head span {
    grid-column: 1;
  }

  .blog-answer-panel__head,
  .blog-cluster-links,
  .blog-download-card {
    grid-template-columns: 1fr;
  }

  .blog-answer-panel__head h2,
  .blog-answer-panel__head span {
    grid-column: 1;
  }

  .blog-answer-panel__grid {
    grid-template-columns: 1fr;
  }

  .blog-answer-panel__grid--prices,
  .bath-price-trade-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-answer-panel__trust {
    grid-template-columns: 1fr;
  }

  .blog-cluster-links nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-reader-map__grid,
  .blog-reader-map__sequence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-reader-map__sequence article:last-child {
    grid-column: 1 / -1;
  }

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

  .blog-info-command,
  .blog-info-layer,
  .blog-info-contract-grid,
  .blog-article-media--triptych,
  .blog-article-media--gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-info-contract-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .blog-info-slope {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .blog-index-hero {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 54px;
  }

  .blog-index-hero h1,
  .blog-article-hero h1 {
    max-width: 22rem;
    font-size: 2.72rem;
    line-height: 1;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .blog-index-hero__copy > p:not(.eyebrow),
  .blog-article-hero__lead {
    max-width: 22rem;
    font-size: 1rem;
    line-height: 1.62;
    padding-top: 14px;
    overflow-wrap: anywhere;
  }

  .blog-article-hero__lead::before {
    width: 56px;
    margin-bottom: 14px;
  }

  .blog-index-hero__stats,
  .blog-card-grid,
  .blog-related__grid {
    grid-template-columns: 1fr;
  }

  .blog-index-hero__stats span {
    border-top: 1px solid var(--line);
  }

  .blog-feature-card__copy,
  .blog-related-card {
    padding: 24px;
  }

  .blog-feature-card h2,
  .blog-index-topics__head h2,
  .blog-related__head h2 {
    font-size: 2.65rem;
    line-height: 0.98;
  }

  .blog-card-grid {
    padding-top: 42px;
    padding-bottom: 76px;
  }

  .blog-card {
    min-height: 0;
  }

  .blog-card__media {
    height: 220px;
  }

  .blog-card__copy strong,
  .blog-related-card strong {
    font-size: 1.85rem;
  }

  .blog-article-hero {
    min-height: 620px;
  }

  .blog-article-hero__content {
    padding: 124px 18px 52px;
  }

  .blog-article-intro,
  .blog-article-layout,
  .blog-related {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .blog-article-intro__label,
  .blog-article-intro__label strong,
  .blog-article-intro__copy,
  .blog-article-intro__copy p {
    width: 100%;
    max-width: 22rem;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .blog-article-intro__copy p,
  .blog-article__section h2 {
    font-size: 1.82rem;
    line-height: 1.12;
  }

  .blog-article-opening {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }

  .blog-article-opening__lead {
    max-width: 22rem;
    padding-left: 16px;
    font-size: 1.08rem;
    line-height: 1.62;
  }

  .blog-author-strip {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .blog-author-strip__image {
    width: 56px;
    height: 56px;
  }

  .blog-author-strip__content,
  .blog-author-strip__content span,
  .blog-author-strip__bio {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .blog-author-strip__content span {
    display: block;
  }

  .blog-author-strip__bio,
  .blog-author-strip__link {
    grid-column: 1 / -1;
  }

  .blog-author-profile {
    padding-top: 118px;
    gap: 24px;
  }

  .blog-author-profile__card {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 18px;
  }

  .blog-author-profile__card img {
    width: 64px;
    height: 64px;
  }

  .blog-author-profile__card h1 {
    font-size: clamp(1.58rem, 7vw, 2rem);
  }

  .blog-author-profile__copy p,
  .blog-author-profile__quality p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .blog-answer-panel,
  .blog-cluster-links,
  .blog-download-card {
    width: 100%;
    inline-size: min(100%, calc(100vw - 32px));
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto 46px;
    padding: 24px 18px;
    overflow: hidden;
  }

  .blog-answer-panel__head {
    gap: 14px;
  }

  .blog-answer-panel__head h2 {
    font-size: clamp(1.48rem, 6.5vw, 1.86rem);
    line-height: 1.1;
  }

  .blog-answer-panel__head span,
  .blog-answer-panel__grid p,
  .blog-answer-panel__trust p,
  .blog-download-card > div > span,
  .blog-download-card a em {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .blog-answer-panel__grid article,
  .blog-answer-panel__trust,
  .blog-cluster-links a,
  .blog-download-card a {
    padding: 17px;
  }

  .blog-cluster-links a {
    min-height: 0;
  }

  .blog-cluster-links strong {
    font-size: 1rem;
    line-height: 1.24;
    text-wrap: wrap;
    white-space: normal;
  }

  .blog-answer-panel__grid--prices {
    grid-template-columns: 1fr;
  }

  .blog-cluster-links nav {
    grid-template-columns: 1fr;
  }

  .bath-price-trade-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-download-card h2 {
    font-size: clamp(1.48rem, 6.5vw, 1.86rem);
    line-height: 1.1;
  }

  .blog-download-card a {
    min-height: 0;
  }

  .blog-reader-map {
    width: 100%;
    inline-size: min(100%, calc(100vw - 32px));
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto 46px;
    padding: 24px 18px;
    overflow: hidden;
  }

  .blog-reader-map__head {
    gap: 14px;
    padding-bottom: 20px;
  }

  .blog-reader-map__head h2 {
    font-size: clamp(1.48rem, 6.5vw, 1.86rem);
    line-height: 1.1;
  }

  .blog-reader-map__head span {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .blog-reader-map__grid,
  .blog-reader-map__sequence {
    grid-template-columns: 1fr;
  }

  .blog-reader-map__sequence article:last-child {
    grid-column: auto;
  }

  .blog-reader-map__grid a {
    min-height: 0;
    padding: 17px;
  }

  .blog-calculator-embed {
    width: 100%;
    inline-size: min(100%, calc(100vw - 32px));
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .blog-calculator-embed__intro {
    padding: 28px 16px 24px;
    overflow: hidden;
  }

  .blog-calculator-embed__frame-shell {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .blog-calculator-embed__intro--kitchen {
    gap: 16px;
    padding: 18px 16px;
  }

  .blog-calculator-embed__intro--bathroom {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 16px;
  }

  .blog-calculator-embed h2,
  .blog-calculator-embed__intro--kitchen h2 {
    max-width: 15ch;
    font-size: clamp(1.72rem, 7vw, 2.2rem);
    line-height: 1;
  }

  .blog-calculator-embed__intro--bathroom h2 {
    max-width: 15ch;
    font-size: clamp(1.9rem, 8vw, 2.55rem);
    line-height: 1;
  }

  .blog-calculator-embed__intro p:not(.blog-calculator-embed__kicker) {
    font-size: 1rem;
    line-height: 1.58;
  }

  .blog-calculator-embed__intro ul {
    grid-template-columns: 1fr;
  }

  .blog-calculator-embed__standalone {
    width: 100%;
    justify-content: center;
    color: var(--paper-soft) !important;
    text-align: center;
  }

  .blog-calculator-embed__intro--kitchen .blog-calculator-embed__standalone {
    width: fit-content;
    justify-content: flex-start;
    text-align: left;
  }

  .blog-calculator-embed__frame {
    width: 100%;
    max-width: 100%;
    min-height: 760px;
  }

  .blog-calculator-embed__frame--kitchen {
    height: 2700px;
    min-height: 2700px;
  }

  .blog-calculator-embed__frame--bathroom {
    height: 2400px;
    min-height: 2400px;
  }

  .blog-article-checkgrid {
    grid-template-columns: 1fr;
  }

  .blog-article-checkcard {
    min-height: 0;
    padding: 22px;
  }

  .blog-infographic {
    gap: 20px;
    margin-top: 18px;
    padding: 20px;
  }

  .blog-info-process,
  .blog-info-rules,
  .blog-info-timeline,
  .blog-info-command,
  .blog-info-decision,
  .blog-info-layer,
  .blog-info-risk-map,
  .blog-info-contract-grid,
  .blog-article-media--pair,
  .blog-article-media--triptych,
  .blog-article-media--gallery {
    grid-template-columns: 1fr;
  }

  .blog-info-step,
  .blog-info-rule,
  .blog-info-time,
  .blog-info-command div,
  .blog-info-decision div,
  .blog-info-layer div,
  .blog-info-risk-map article,
  .blog-info-contract-grid article {
    min-height: 0;
  }

  .blog-info-contract-grid article:last-child {
    grid-column: auto;
  }

  .blog-info-command div,
  .blog-info-decision div,
  .blog-info-layer div {
    border-right: 0;
    border-bottom: 1px solid var(--strong-line);
  }

  .blog-infographic--process .blog-info-step:nth-child(7) {
    grid-column: auto;
  }

  .blog-info-interface__row,
  .blog-info-bar,
  .blog-info-cost div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-info-interface__row strong {
    padding: 16px 0 0;
    border-right: 0;
  }

  .blog-info-interface__row span {
    padding: 0 0 16px;
  }

  .blog-info-bar em {
    text-align: left;
  }

  .blog-info-cost em {
    text-align: left;
  }

  .blog-article-media--wide figure,
  .blog-article-media--pair figure,
  .blog-article-media--triptych figure,
  .blog-article-media--gallery figure {
    aspect-ratio: 4 / 3;
  }

  .blog-article__section p,
  .blog-article__section li,
  .blog-article__faq details p {
    font-size: 1rem;
    line-height: 1.74;
  }

  .blog-related__head {
    display: grid;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .blog-index-hero h1,
  .blog-article-hero h1 {
    max-width: 335px;
    font-size: 2.72rem;
    line-height: 1;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .article-handverkertilbud-slik-sammenligner-du-pris-og-innhold .blog-article-hero h1 {
    max-width: min(100%, 356px);
    font-size: clamp(1.94rem, 8.95vw, 2.12rem);
    overflow-wrap: normal;
  }

  .blog-index-hero__copy > p:not(.eyebrow),
  .blog-article-hero__lead,
  .blog-article-hero__meta {
    max-width: 335px;
  }

  .blog-article-intro__copy p {
    font-size: 2rem;
    line-height: 1.08;
  }
}

@media (max-width: 480px) {
  .article-generasjonsbolig-pris-regler-og-planlegging .blog-article-hero h1 {
    max-width: min(100%, 354px);
    font-size: 2.35rem;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

@media (max-width: 360px) {
  .article-generasjonsbolig-pris-regler-og-planlegging .blog-article-hero h1 {
    font-size: 2.16rem;
  }
}

.blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] *,
.blog-article__section .blog-article-photo * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] p,
.blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] dd,
.blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] em,
.blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] span,
.blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] strong {
  word-break: normal;
}

.blog-article__section .blog-infographic--nybygg-phases .blog-info-timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
}

.blog-article__section .blog-infographic--nybygg-phases .blog-info-time {
  min-height: 0;
  padding: clamp(22px, 2.7vw, 30px);
  background: #faf6ed;
  border-left: 4px solid var(--strong-copper);
}

.blog-article__section .blog-infographic--nybygg-phases .blog-info-time span {
  background: var(--strong-blue) !important;
}

.blog-article__section .blog-infographic--nybygg-phases .blog-info-time strong {
  color: #11100d !important;
}

.blog-article__section .blog-infographic--nybygg-phases .blog-info-time p {
  color: rgba(17, 16, 13, 0.74) !important;
}

.blog-article__section .blog-info-contract-grid,
.blog-article__section .blog-infographic--nybygg-permit .blog-info-permit-flow,
.blog-article__section .blog-infographic--nybygg-docs .blog-info-layer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
}

.blog-article__section .blog-info-contract-grid article,
.blog-article__section .blog-infographic--nybygg-permit .blog-info-permit-flow article,
.blog-article__section .blog-infographic--nybygg-docs .blog-info-layer div {
  min-height: 0;
  border: 1px solid var(--strong-line);
}

.blog-article__section .blog-info-contract-grid article:last-child {
  grid-column: 1 / -1;
}

.blog-article__section .blog-info-contract-grid article > span {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;
}

.blog-article__section .blog-info-contract-grid strong,
.blog-article__section .blog-info-risk-map strong {
  font-size: clamp(0.98rem, 1.22vw, 1.16rem);
}

.blog-article__section .blog-info-contract-grid p,
.blog-article__section .blog-info-risk-map p {
  color: rgba(250, 246, 237, 0.82) !important;
  font-size: clamp(0.88rem, 0.96vw, 0.96rem);
  line-height: 1.55;
}

.blog-article__section .blog-infographic--nybygg-permit .blog-info-permit-flow article:not(:last-child)::after {
  content: none;
}

.blog-article__section .blog-article-photo {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(14px, 2vw, 24px);
  background: transparent;
  border: 0;
}

.blog-article__section .blog-article-photo__image,
.blog-article__section .blog-article-photo__copy {
  border: 1px solid rgba(23, 52, 82, 0.78);
}

.blog-article__section .blog-article-photo__copy {
  padding: clamp(38px, 4.2vw, 62px);
}

.blog-article__section .blog-article-photo__copy h3 {
  max-width: 13.5ch;
  font-size: clamp(1.76rem, 2.12vw, 2.32rem);
  line-height: 1.08;
}

.blog-article__section .blog-article-photo__copy p {
  max-width: 36ch;
}

.blog-article__section .blog-article-photo--landscape {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.blog-article__section .blog-article-photo--landscape .blog-article-photo__image {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

@media (max-width: 1000px) {
  .blog-article__section .blog-infographic--nybygg-phases .blog-info-timeline,
  .blog-article__section .blog-info-risk-map,
  .blog-article__section .blog-info-contract-grid,
  .blog-article__section .blog-infographic--nybygg-permit .blog-info-permit-flow,
  .blog-article__section .blog-infographic--nybygg-docs .blog-info-layer {
    grid-template-columns: 1fr;
  }

  .blog-article__section .blog-info-contract-grid article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] {
    width: 100%;
    inline-size: min(100%, calc(100vw - 32px));
    max-width: 100%;
    box-sizing: border-box;
    justify-self: center;
    margin: 28px auto 6px !important;
    padding: 24px 18px;
    border-right: 1px solid #10283f;
    border-left: 1px solid #10283f;
    overflow: hidden;
  }

  .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 20px;
  }

  .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__label {
    display: block;
    max-width: 100%;
    font-size: 0.66rem;
    line-height: 1.1;
  }

  .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__label::after {
    max-width: 132px;
    margin-top: 12px;
  }

  .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__title {
    max-width: none;
    font-size: clamp(1.24rem, 5.7vw, 1.56rem);
    line-height: 1.14;
  }

  .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__note {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .blog-article__section .blog-infographic--nybygg-price .blog-info-cost {
    gap: 0;
    border-top: 1px solid var(--strong-line);
  }

  .blog-article__section .blog-infographic--nybygg-price .blog-info-cost div {
    grid-template-columns: 1fr;
    gap: 9px;
    align-items: stretch;
    padding: 17px 0;
  }

  .blog-article__section .blog-infographic--nybygg-price .blog-info-cost strong {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.28;
  }

  .blog-article__section .blog-infographic--nybygg-price .blog-info-cost span {
    width: 100%;
    height: 7px;
  }

  .blog-article__section .blog-infographic--nybygg-price .blog-info-cost em {
    text-align: left;
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .blog-article__section .blog-article-photo,
  .blog-article__section .blog-article-photo--left {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-article__section .blog-article-photo--left .blog-article-photo__image,
  .blog-article__section .blog-article-photo--left .blog-article-photo__copy {
    order: initial;
  }

  .blog-article__section .blog-article-photo__copy {
    padding: 26px 22px;
  }

  .blog-article__section .blog-infographic--nybygg-phases .blog-info-timeline,
  .blog-article__section .blog-infographic--nybygg-risk .blog-info-risk-map,
  .blog-article__section .blog-infographic--nybygg-contract .blog-info-contract-grid,
  .blog-article__section .blog-infographic--nybygg-permit .blog-info-permit-flow,
  .blog-article__section .blog-infographic--nybygg-docs .blog-info-layer {
    grid-template-columns: 1fr;
    gap: 10px;
    background: transparent;
    border: 0;
  }

  .blog-article__section .blog-infographic--nybygg-phases .blog-infographic__title {
    max-width: 19ch;
    font-size: clamp(1.18rem, 5.2vw, 1.42rem);
    line-height: 1.15;
  }

  .blog-article__section .blog-infographic--nybygg-phases .blog-info-time,
  .blog-article__section .blog-infographic--nybygg-risk .blog-info-risk-map article,
  .blog-article__section .blog-infographic--nybygg-contract .blog-info-contract-grid article,
  .blog-article__section .blog-infographic--nybygg-permit .blog-info-permit-flow article,
  .blog-article__section .blog-infographic--nybygg-docs .blog-info-layer div {
    min-height: 0;
    padding: 18px;
  }

  .blog-article__section .blog-infographic--nybygg-phases .blog-info-time {
    background: #faf6ed;
    border: 1px solid rgba(17, 16, 13, 0.1);
    border-left: 4px solid var(--strong-copper);
  }

  .blog-article__section .blog-infographic--nybygg-risk .blog-info-risk-map p,
  .blog-article__section .blog-infographic--nybygg-contract .blog-info-contract-grid p,
  .blog-article__section .blog-infographic--nybygg-permit .blog-info-permit-flow p,
  .blog-article__section .blog-infographic--nybygg-docs .blog-info-layer p,
  .blog-article__section .blog-infographic--nybygg-phases .blog-info-time p {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .blog-article__section .blog-infographic--nybygg-risk .blog-info-risk-map strong,
  .blog-article__section .blog-infographic--nybygg-contract .blog-info-contract-grid strong,
  .blog-article__section .blog-infographic--nybygg-permit .blog-info-permit-flow strong,
  .blog-article__section .blog-infographic--nybygg-docs .blog-info-layer strong,
  .blog-article__section .blog-infographic--nybygg-phases .blog-info-time strong {
    font-size: 0.98rem;
    line-height: 1.22;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-slope {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-slope__plane {
    min-height: 180px;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-slope dl {
    gap: 10px;
    background: transparent;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-slope dl div {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--strong-line);
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-check__labels {
    display: none;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-check {
    gap: 10px;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-check article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-check article > span {
    width: 34px;
    height: 34px;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-check strong {
    font-size: 0.98rem;
    line-height: 1.22;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-check p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-check em {
    grid-column: 2;
    align-content: start;
    margin: 0;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-result {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .blog-reader-map {
    inline-size: min(100%, calc(100vw - 24px));
    padding: 22px 14px;
  }

  .blog-answer-panel,
  .blog-cluster-links,
  .blog-download-card {
    inline-size: min(100%, calc(100vw - 24px));
    padding: 22px 14px;
  }

  .blog-answer-panel__head h2,
  .blog-cluster-links h2,
  .blog-download-card h2 {
    font-size: 1.34rem;
  }

  .blog-answer-panel__grid article,
  .blog-answer-panel__trust,
  .blog-cluster-links a,
  .blog-download-card a {
    padding: 15px;
  }

  .blog-reader-map__head h2 {
    font-size: 1.38rem;
  }

  .blog-reader-map__grid a,
  .blog-reader-map__sequence article {
    padding: 15px;
  }

  .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] {
    inline-size: min(100%, calc(100vw - 24px));
    padding: 22px 14px;
  }

  .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__title {
    font-size: 1.22rem;
  }

  .blog-article__section .blog-infographic--nybygg-phases .blog-infographic__title {
    max-width: 16ch;
    font-size: 1.16rem;
  }

  .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__note {
    font-size: 0.92rem;
  }

  .blog-article__section .blog-infographic--nybygg-phases .blog-info-time,
  .blog-article__section .blog-infographic--nybygg-risk .blog-info-risk-map article,
  .blog-article__section .blog-infographic--nybygg-contract .blog-info-contract-grid article,
  .blog-article__section .blog-infographic--nybygg-permit .blog-info-permit-flow article,
  .blog-article__section .blog-infographic--nybygg-docs .blog-info-layer div {
    padding: 16px;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-slope dl div {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 15px;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-check article {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 15px;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-check article > span {
    width: 30px;
    height: 30px;
    font-size: 0.62rem;
  }

  .blog-article__section .blog-infographic--nybygg-site .blog-info-site-check em {
    padding: 9px 10px;
  }
}

.blog-article__section .blog-infographic--generation {
  --generation-ink: #f7f0e2;
  --generation-paper: #fff8ec;
  --generation-blue: #183f5b;
  --generation-teal: #0b3140;
  --generation-gold: #d9a03f;
  --generation-sage: #9fb297;
  --generation-clay: #c47a58;
  --generation-line: rgba(247, 240, 226, 0.2);
  --generation-dark-line: rgba(11, 49, 64, 0.16);
  background:
    linear-gradient(135deg, rgba(11, 49, 64, 0.98), rgba(24, 63, 91, 0.98)),
    #0b3140;
  border-color: rgba(217, 160, 63, 0.42);
}

.blog-article__section .blog-infographic--generation *,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article-photo * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.blog-article__section .blog-infographic--generation p,
.blog-article__section .blog-infographic--generation em,
.blog-article__section .blog-infographic--generation span,
.blog-article__section .blog-infographic--generation strong {
  word-break: normal;
}

.generation-budget-stack,
.generation-ladder,
.generation-model-grid,
.generation-tech-matrix,
.generation-offer-matrix,
.generation-family-timeline {
  display: grid;
  gap: 12px;
}

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

.generation-model-grid article,
.generation-tech-matrix article,
.generation-offer-matrix article,
.generation-family-timeline article {
  position: relative;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(247, 240, 226, 0.08);
  border: 1px solid var(--generation-line);
}

.generation-model-grid article span,
.generation-offer-matrix article > span,
.generation-family-timeline article span,
.generation-tech-matrix article span {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--generation-teal) !important;
  background: var(--generation-gold);
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.generation-model-grid article strong,
.generation-tech-matrix article strong,
.generation-offer-matrix article strong,
.generation-family-timeline article strong {
  display: block;
  color: var(--generation-ink) !important;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.16;
}

.generation-model-grid article p,
.generation-tech-matrix article p,
.generation-offer-matrix article p,
.generation-family-timeline article p {
  margin-top: 10px;
  color: rgba(247, 240, 226, 0.78) !important;
  font-size: 0.92rem;
  line-height: 1.52;
}

.generation-model-grid article em,
.generation-tech-matrix article em {
  display: block;
  margin-top: 16px;
  padding-top: 12px;
  color: rgba(247, 240, 226, 0.68) !important;
  border-top: 1px solid var(--generation-line);
  font-size: 0.78rem;
  line-height: 1.35;
  font-style: normal;
}

.generation-budget-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(110px, auto);
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--generation-line);
}

.generation-budget-row > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--generation-teal) !important;
  background: var(--generation-gold);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.74rem;
}

.generation-budget-row strong {
  display: block;
  color: var(--generation-ink) !important;
  font-size: clamp(1rem, 1.22vw, 1.2rem);
}

.generation-budget-row strong::after {
  content: "";
  display: block;
  width: var(--w);
  height: 8px;
  margin-top: 11px;
  background: linear-gradient(90deg, var(--generation-gold), var(--generation-sage));
  border-radius: 999px;
}

.generation-budget-row em {
  color: var(--generation-gold) !important;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.generation-budget-row p {
  grid-column: 2 / -1;
  max-width: 62ch;
  margin: -4px 0 0;
  color: rgba(247, 240, 226, 0.78) !important;
  font-size: 0.92rem;
}

.generation-ladder {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  counter-reset: ladder;
}

.generation-ladder article {
  position: relative;
  padding: 18px;
  color: var(--generation-teal);
  background: var(--generation-paper);
  border: 1px solid rgba(217, 160, 63, 0.28);
}

.generation-ladder article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -12px;
  z-index: 2;
  width: 24px;
  height: 2px;
  background: var(--generation-gold);
}

.generation-ladder article span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--generation-paper) !important;
  background: var(--generation-teal);
  border-radius: 50%;
  font-weight: 800;
}

.generation-ladder article strong {
  display: block;
  margin-top: 16px;
  color: var(--generation-teal) !important;
  font-size: 1rem;
  line-height: 1.16;
}

.generation-ladder article p,
.generation-ladder article em {
  color: rgba(11, 49, 64, 0.72) !important;
  font-size: 0.88rem;
  line-height: 1.45;
}

.generation-ladder article em {
  display: block;
  margin-top: 12px;
  color: #8b6224 !important;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.generation-stack-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.generation-stack-compare article {
  padding: clamp(20px, 2.2vw, 28px);
  background: var(--generation-paper);
  border: 1px solid rgba(217, 160, 63, 0.28);
}

.generation-stack-compare strong {
  color: var(--generation-teal) !important;
  font-size: clamp(1.18rem, 1.7vw, 1.54rem);
}

.generation-stack-compare article > div {
  display: flex;
  overflow: hidden;
  margin: 18px 0;
  min-height: 48px;
  border-radius: 999px;
  background: rgba(11, 49, 64, 0.1);
}

.generation-stack-compare article > div span {
  display: grid;
  place-items: center;
  flex: 0 0 var(--w);
  padding: 0 8px;
  color: #ffffff !important;
  background: var(--generation-blue);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.64rem;
  line-height: 1.1;
  text-align: center;
}

.generation-stack-compare article > div span:nth-child(2) { background: #245b69; }
.generation-stack-compare article > div span:nth-child(3) { background: #8b6b34; }
.generation-stack-compare article > div span:nth-child(4) { background: #a35f45; }
.generation-stack-compare article > div span:nth-child(5) { background: #6f7f63; }

.generation-stack-compare p {
  color: rgba(11, 49, 64, 0.72) !important;
  font-size: 0.94rem;
  line-height: 1.5;
}

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

.generation-score {
  display: grid;
  gap: 16px;
}

.generation-score-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.generation-score-list article {
  padding: 18px;
  background: rgba(247, 240, 226, 0.08);
  border: 1px solid var(--generation-line);
}

.generation-score-list span {
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  padding: 8px 10px;
  color: var(--generation-teal) !important;
  background: var(--generation-gold);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.generation-score-list strong {
  display: block;
  color: var(--generation-ink) !important;
  font-size: 0.98rem;
  line-height: 1.18;
}

.generation-score-list p {
  margin-top: 9px;
  color: rgba(247, 240, 226, 0.74) !important;
  font-size: 0.88rem;
  line-height: 1.45;
}

.generation-score-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--generation-line);
}

.generation-score-band span {
  padding: 14px;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.generation-score-band span:nth-child(1) { background: #8f4c3f; }
.generation-score-band span:nth-child(2) { background: #a77a31; }
.generation-score-band span:nth-child(3) { background: #557463; }

.generation-zone-plan {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.generation-zone-map {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(247, 240, 226, 0.18) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(247, 240, 226, 0.14) 49% 51%, transparent 51%),
    rgba(247, 240, 226, 0.08);
  border: 1px solid var(--generation-line);
}

.generation-zone-map span {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--generation-teal) !important;
  background: var(--generation-paper);
  border: 1px solid rgba(217, 160, 63, 0.44);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.generation-zone-map .zone-private-a { top: 18px; left: 18px; width: 42%; height: 42%; }
.generation-zone-map .zone-private-b { right: 18px; bottom: 18px; width: 42%; height: 42%; }
.generation-zone-map .zone-shared { top: 28%; right: 18px; width: 36%; height: 28%; background: #f2dcae; }
.generation-zone-map .zone-service { left: 23%; bottom: 18px; width: 30%; height: 26%; background: #d7dfcf; }

.generation-zone-plan > div:last-child {
  display: grid;
  gap: 10px;
}

.generation-zone-plan article {
  padding: 20px;
  background: var(--generation-paper);
  border: 1px solid rgba(217, 160, 63, 0.28);
}

.generation-zone-plan article strong {
  color: var(--generation-teal) !important;
}

.generation-zone-plan article p {
  margin-top: 8px;
  color: rgba(11, 49, 64, 0.72) !important;
  font-size: 0.94rem;
}

.generation-offer-matrix article > span {
  width: 18px;
  min-height: 18px;
  margin-bottom: 14px;
  padding: 0;
  border-radius: 50%;
}

.generation-offer-matrix article > span.is-green { background: #83a56f; }
.generation-offer-matrix article > span.is-yellow { background: var(--generation-gold); }
.generation-offer-matrix article > span.is-red { background: var(--generation-clay); }

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

.generation-family-timeline article,
.generation-family-timeline .blog-info-time {
  display: grid;
  align-content: start;
  border-top: 4px solid var(--generation-gold);
}

.generation-tech-matrix > div {
  position: relative;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(247, 240, 226, 0.08);
  border: 1px solid var(--generation-line);
}

.generation-tech-matrix > div > span,
.generation-family-timeline .blog-info-time > span {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  width: max-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--generation-teal) !important;
  background: var(--generation-gold);
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.generation-tech-matrix > div strong,
.generation-family-timeline .blog-info-time strong {
  display: block;
  color: var(--generation-ink) !important;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.16;
}

.generation-tech-matrix > div p,
.generation-family-timeline .blog-info-time p {
  margin-top: 10px;
  color: rgba(247, 240, 226, 0.78) !important;
  font-size: 0.92rem;
  line-height: 1.52;
}

.blog-article__section .blog-infographic--generation .nybygg-icon {
  display: none !important;
}

.blog-article__section .blog-infographic--generation ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(247, 240, 226, 0.76) !important;
  font-size: 0.88rem;
  line-height: 1.45;
}

.blog-article__section .blog-infographic--generation li + li {
  margin-top: 6px;
}

.generation-budget-stack > article:not(.generation-budget-row) {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(110px, auto);
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--generation-line);
}

.generation-budget-stack > article:not(.generation-budget-row) > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--generation-teal) !important;
  background: var(--generation-gold);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.74rem;
}

.generation-budget-stack > article:not(.generation-budget-row) strong {
  display: block;
  color: var(--generation-ink) !important;
  font-size: clamp(1rem, 1.22vw, 1.2rem);
}

.generation-budget-stack > article:not(.generation-budget-row) strong::after {
  content: "";
  display: block;
  width: var(--w);
  height: 8px;
  margin-top: 11px;
  background: linear-gradient(90deg, var(--generation-gold), var(--generation-sage));
  border-radius: 999px;
}

.generation-budget-stack > article:not(.generation-budget-row) em {
  color: var(--generation-gold) !important;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.generation-budget-stack > article:not(.generation-budget-row) p {
  grid-column: 2 / -1;
  max-width: 62ch;
  margin: -4px 0 0;
  color: rgba(247, 240, 226, 0.78) !important;
  font-size: 0.92rem;
}

.generation-budget-stack--bars > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, auto);
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--generation-line);
}

.generation-budget-stack--bars > div strong {
  color: var(--generation-ink) !important;
  font-size: 1rem;
}

.generation-budget-stack--bars > div > span {
  grid-column: 1 / -1;
  display: block;
  height: 9px;
  overflow: hidden;
  background: rgba(247, 240, 226, 0.12);
  border-radius: 999px;
}

.generation-budget-stack--bars > div > span i {
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, var(--generation-gold), var(--generation-sage));
  border-radius: inherit;
}

.generation-budget-stack--bars > div em {
  color: var(--generation-gold) !important;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.generation-score-band--wide {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
}

.generation-tech-matrix--site .blog-info-site-check__labels {
  display: none;
}

.generation-tech-matrix--site article > div {
  min-width: 0;
}

@media (max-width: 1100px) {
  .generation-model-grid,
  .generation-tech-matrix,
  .generation-offer-matrix,
  .generation-family-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .generation-ladder {
    grid-template-columns: 1fr;
  }

  .generation-ladder article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -12px;
    left: 34px;
    width: 2px;
    height: 24px;
  }

  .generation-score-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic--generation {
    width: 100%;
    inline-size: min(100%, calc(100vw - 32px));
    max-width: 100%;
    margin: 28px auto 6px !important;
    padding: 24px 18px;
    overflow: hidden;
  }

  .blog-article__section .blog-infographic--generation .blog-infographic__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-article__section .blog-infographic--generation .blog-infographic__title {
    max-width: none;
    font-size: clamp(1.24rem, 5.6vw, 1.56rem);
    line-height: 1.14;
  }

  .blog-article__section .blog-infographic--generation .blog-infographic__note {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .generation-model-grid,
  .generation-tech-matrix,
  .generation-offer-matrix,
  .generation-family-timeline,
  .generation-score-list,
  .generation-score-band,
  .generation-stack-compare,
  .generation-zone-plan {
    grid-template-columns: 1fr;
  }

  .generation-budget-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .generation-budget-stack > article:not(.generation-budget-row) {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .generation-budget-row em {
    grid-column: 2;
    text-align: left;
  }

  .generation-budget-stack > article:not(.generation-budget-row) em {
    grid-column: 2;
    text-align: left;
  }

  .generation-budget-row p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .generation-budget-stack > article:not(.generation-budget-row) p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .generation-stack-compare article > div {
    min-height: 0;
    flex-direction: column;
    border-radius: 0;
  }

  .generation-stack-compare article > div span {
    flex-basis: auto;
    min-height: 34px;
    width: 100%;
    justify-content: start;
    padding: 8px 12px;
    text-align: left;
  }

  .generation-zone-map {
    min-height: 250px;
  }
}

@media (max-width: 420px) {
  .blog-article__section .blog-infographic--generation {
    inline-size: min(100%, calc(100vw - 24px));
    padding: 22px 14px;
  }

  .generation-model-grid article,
  .generation-tech-matrix article,
  .generation-tech-matrix > div,
  .generation-offer-matrix article,
  .generation-family-timeline article,
  .generation-family-timeline .blog-info-time,
  .generation-budget-stack > article:not(.generation-budget-row),
  .generation-score-list article,
  .generation-zone-plan article,
  .generation-stack-compare article {
    padding: 16px;
  }

  .generation-zone-map {
    min-height: 220px;
  }
}
.blog-article__section .blog-infographic--soknad * {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.blog-article__section .blog-infographic--soknad {
  --permit-panel: #0d2a42;
  --permit-panel-2: #203f5c;
  --permit-paper: #faf6ed;
  --permit-muted: rgba(250, 246, 237, 0.78);
  --permit-line: rgba(250, 246, 237, 0.22);
  --permit-gold: #d9a03f;
  --permit-sage: #98a98c;
  --permit-clay: #c07a54;
  overflow: hidden;
}

.blog-article__section .blog-infographic--soknad .blog-infographic__title {
  max-width: 680px;
}

.soknad-lanes,
.soknad-classifier,
.soknad-gates,
.soknad-checklist,
.soknad-package,
.soknad-responsibility,
.soknad-plan-stack,
.soknad-neighbor-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

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

.soknad-classifier,
.soknad-responsibility,
.soknad-plan-stack,
.soknad-neighbor-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

.soknad-lanes article,
.soknad-classifier article,
.soknad-gates article,
.soknad-checklist article,
.soknad-package article,
.soknad-responsibility article,
.soknad-plan-stack article,
.soknad-neighbor-flow article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(13, 42, 66, 0.82);
  border: 1px solid var(--permit-line);
}

.soknad-lanes article,
.soknad-checklist article {
  border-top: 4px solid var(--permit-gold);
}

.soknad-lanes article:nth-child(2),
.soknad-classifier article:nth-child(2n),
.soknad-package article:nth-child(2n),
.soknad-neighbor-flow article:nth-child(2n) {
  background: rgba(32, 63, 92, 0.84);
}

.soknad-lanes span,
.soknad-package span,
.soknad-neighbor-flow span,
.soknad-gates span,
.soknad-plan-stack span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #13253a !important;
  font-family: var(--caption);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--permit-gold);
}

.soknad-classifier span,
.soknad-responsibility span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 9px;
  color: #e3c997 !important;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  border-bottom: 2px solid var(--permit-gold);
}

.soknad-lanes strong,
.soknad-classifier strong,
.soknad-gates strong,
.soknad-checklist strong,
.soknad-package strong,
.soknad-responsibility strong,
.soknad-plan-stack strong,
.soknad-neighbor-flow strong,
.soknad-area-model strong,
.soknad-distance-diagram strong {
  color: var(--permit-paper);
  font-family: var(--sans);
  font-size: clamp(0.98rem, 1.15vw, 1.14rem);
  font-weight: 650;
  line-height: 1.18;
}

.soknad-lanes p,
.soknad-classifier p,
.soknad-gates p,
.soknad-checklist p,
.soknad-package p,
.soknad-responsibility p,
.soknad-plan-stack p,
.soknad-neighbor-flow p,
.soknad-area-model p,
.soknad-distance-diagram p {
  margin: 0;
  color: var(--permit-muted) !important;
  font-family: var(--text);
  font-size: clamp(0.9rem, 0.98vw, 0.98rem);
  line-height: 1.5;
}

.soknad-lanes em {
  align-self: end;
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  padding: 8px 10px;
  color: #13253a;
  font-family: var(--caption);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  background: var(--permit-sage);
}

.soknad-gates article {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px 14px;
}

.soknad-gates span {
  grid-row: span 2;
}

.soknad-checklist article {
  background: rgba(250, 246, 237, 0.08);
}

.soknad-package article {
  padding: 18px;
}

.soknad-plan-stack article {
  position: relative;
  border-left: 4px solid var(--permit-gold);
}

.soknad-plan-stack article:not(:last-child)::after,
.soknad-neighbor-flow article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 2;
  width: 16px;
  height: 2px;
  background: var(--permit-gold);
  content: "";
}

.soknad-area-model,
.soknad-distance-diagram {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.soknad-area-model__site {
  position: relative;
  min-height: 330px;
  background:
    linear-gradient(90deg, rgba(250, 246, 237, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 246, 237, 0.06) 1px, transparent 1px),
    rgba(13, 42, 66, 0.78);
  background-size: 34px 34px;
  border: 1px solid var(--permit-line);
}

.soknad-area-model__site .site-label {
  position: absolute;
  top: 18px;
  left: 18px;
  color: #e3c997 !important;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.soknad-area-model__site i {
  position: absolute;
  display: grid;
  place-items: center;
  color: #13253a;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.soknad-area-model__site .house-main {
  right: 24%;
  bottom: 24%;
  width: 44%;
  height: 40%;
  background: var(--permit-paper);
}

.soknad-area-model__site .house-addition {
  right: 13%;
  bottom: 32%;
  width: 16%;
  height: 22%;
  color: var(--permit-paper);
  background: var(--permit-clay);
}

.soknad-area-model__site b {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  color: var(--permit-paper);
  font-family: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  background: rgba(15, 38, 59, 0.78);
}

.soknad-area-model__rules {
  display: grid;
  gap: 12px;
}

.soknad-area-model__rules article,
.soknad-distance-diagram article {
  padding: 20px;
  background: rgba(13, 42, 66, 0.82);
  border: 1px solid var(--permit-line);
}

.soknad-distance-diagram {
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
}

.soknad-distance-diagram svg {
  width: 100%;
  min-height: 270px;
  background: rgba(13, 42, 66, 0.72);
  border: 1px solid var(--permit-line);
}

.soknad-distance-diagram .plot {
  fill: rgba(250, 246, 237, 0.05);
  stroke: rgba(250, 246, 237, 0.38);
}

.soknad-distance-diagram .boundary {
  stroke: var(--permit-paper);
  stroke-width: 3;
  stroke-dasharray: 9 7;
}

.soknad-distance-diagram .distance-zone {
  fill: rgba(217, 160, 63, 0.18);
}

.soknad-distance-diagram .house {
  fill: var(--permit-paper);
}

.soknad-distance-diagram .addition {
  fill: var(--permit-clay);
}

.soknad-distance-diagram .measure {
  stroke: var(--permit-gold);
  stroke-width: 4;
}

.soknad-distance-diagram text {
  fill: var(--permit-paper);
  font-family: var(--caption);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.soknad-distance-diagram > div {
  display: grid;
  gap: 12px;
}

.blog-infographic--reno {
  --reno-blue: #173452;
  --reno-deep: #0f263b;
  --reno-paper: #faf6ed;
  --reno-muted: rgba(250, 246, 237, 0.74);
  --reno-line: rgba(250, 246, 237, 0.2);
  --reno-gold: #d9a03f;
  background:
    linear-gradient(90deg, rgba(250, 246, 237, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 246, 237, 0.045) 1px, transparent 1px),
    var(--reno-deep);
  background-size: 42px 42px;
}

.blog-infographic--reno * {
  min-width: 0;
}

.reno-risk-chain,
.reno-compass,
.reno-preflight,
.reno-score,
.reno-budget,
.reno-offer,
.reno-regulation,
.reno-gates,
.reno-docs {
  display: grid;
  gap: 12px;
}

.reno-risk-chain,
.reno-offer {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

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

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

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

.reno-risk-chain article,
.reno-compass article,
.reno-preflight article,
.reno-score article,
.reno-budget article,
.reno-offer article,
.reno-regulation article,
.reno-gates article,
.reno-docs article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: clamp(16px, 1.8vw, 22px);
  color: var(--reno-paper);
  background: rgba(13, 42, 66, 0.82);
  border: 1px solid var(--reno-line);
}

.reno-risk-chain article:nth-child(2n),
.reno-compass article:nth-child(2n),
.reno-preflight article:nth-child(2n),
.reno-budget article:nth-child(2n),
.reno-offer article:nth-child(2n),
.reno-regulation article:nth-child(2n),
.reno-gates article:nth-child(2n),
.reno-docs article:nth-child(2n) {
  background: rgba(32, 63, 92, 0.86);
}

.reno-risk-chain span,
.reno-compass span,
.reno-preflight span,
.reno-budget span,
.reno-offer span,
.reno-regulation span,
.reno-gates span,
.reno-docs span {
  width: fit-content;
  max-width: 100%;
  color: #e7c887;
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.reno-risk-chain strong,
.reno-compass strong,
.reno-preflight strong,
.reno-score strong,
.reno-budget strong,
.reno-offer strong,
.reno-regulation strong,
.reno-gates strong,
.reno-docs strong {
  color: var(--reno-paper);
  font-family: var(--sans);
  font-size: clamp(0.98rem, 1.04vw, 1.1rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.18;
}

.reno-risk-chain p,
.reno-compass p,
.reno-preflight p,
.reno-score p,
.reno-budget p,
.reno-offer p,
.reno-regulation p,
.reno-gates p,
.reno-docs p {
  margin: 0;
  color: var(--reno-muted);
  font-family: var(--text);
  font-size: 0.9rem;
  line-height: 1.48;
}

.reno-score article {
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
  align-items: center;
  gap: 8px 14px;
}

.reno-score article > strong {
  grid-column: 1;
}

.reno-score article > span {
  grid-column: 2;
  display: block;
  height: 8px;
  background: rgba(250, 246, 237, 0.14);
}

.reno-score article > span i {
  display: block;
  width: var(--w);
  height: 100%;
  background: var(--reno-gold);
}

.reno-score article > em {
  grid-column: 1;
  color: #e7c887;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reno-score article > p {
  grid-column: 2;
}

.reno-regulation article {
  min-height: 220px;
}

.reno-regulation em {
  align-self: end;
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  color: #13253a;
  font-family: var(--caption);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  background: var(--reno-gold);
}

@media (max-width: 1080px) {
  .reno-risk-chain,
  .reno-compass,
  .reno-preflight,
  .reno-budget,
  .reno-offer,
  .reno-gates,
  .reno-docs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reno-regulation {
    grid-template-columns: 1fr;
  }

  .reno-score {
    grid-template-columns: 1fr;
  }

  .soknad-lanes,
  .soknad-gates,
  .soknad-checklist,
  .soknad-package,
  .soknad-classifier,
  .soknad-responsibility,
  .soknad-plan-stack,
  .soknad-neighbor-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .soknad-plan-stack article:not(:last-child)::after,
  .soknad-neighbor-flow article:not(:last-child)::after {
    content: none;
  }

  .soknad-area-model,
  .soknad-distance-diagram {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic--reno {
    width: 100%;
    inline-size: min(100%, calc(100vw - 32px));
    max-width: 100%;
    box-sizing: border-box;
    justify-self: center;
    margin: 28px auto 6px !important;
    padding: 24px 18px;
    border-right: 1px solid #10283f;
    border-left: 1px solid #10283f;
  }

  .blog-article__section .blog-infographic--reno .blog-infographic__head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 20px;
  }

  .blog-article__section .blog-infographic--reno .blog-infographic__title {
    max-width: none;
    font-size: clamp(1.22rem, 5.7vw, 1.54rem);
    line-height: 1.14;
  }

  .blog-article__section .blog-infographic--reno .blog-infographic__note {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .reno-risk-chain,
  .reno-compass,
  .reno-preflight,
  .reno-score,
  .reno-budget,
  .reno-offer,
  .reno-regulation,
  .reno-gates,
  .reno-docs {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reno-risk-chain article,
  .reno-compass article,
  .reno-preflight article,
  .reno-score article,
  .reno-budget article,
  .reno-offer article,
  .reno-regulation article,
  .reno-gates article,
  .reno-docs article {
    padding: 17px;
  }

  .reno-score article {
    grid-template-columns: 1fr;
  }

  .reno-score article > strong,
  .reno-score article > span,
  .reno-score article > em,
  .reno-score article > p {
    grid-column: 1;
  }

  .reno-regulation article {
    min-height: 0;
  }

  .blog-article__section .blog-infographic--soknad {
    width: 100%;
    inline-size: min(100%, calc(100vw - 32px));
    max-width: 100%;
    box-sizing: border-box;
    justify-self: center;
    margin: 28px auto 6px !important;
    padding: 24px 18px;
    border-right: 1px solid #10283f;
    border-left: 1px solid #10283f;
  }

  .blog-article__section .blog-infographic--soknad .blog-infographic__head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 20px;
  }

  .blog-article__section .blog-infographic--soknad .blog-infographic__title {
    max-width: none;
    font-size: clamp(1.22rem, 5.7vw, 1.54rem);
    line-height: 1.14;
  }

  .blog-article__section .blog-infographic--soknad .blog-infographic__note {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .soknad-lanes,
  .soknad-gates,
  .soknad-checklist,
  .soknad-package,
  .soknad-classifier,
  .soknad-responsibility,
  .soknad-plan-stack,
  .soknad-neighbor-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .soknad-lanes article,
  .soknad-classifier article,
  .soknad-gates article,
  .soknad-checklist article,
  .soknad-package article,
  .soknad-responsibility article,
  .soknad-plan-stack article,
  .soknad-neighbor-flow article {
    padding: 17px;
  }

  .soknad-gates article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .soknad-lanes span,
  .soknad-package span,
  .soknad-neighbor-flow span,
  .soknad-gates span,
  .soknad-plan-stack span {
    width: 34px;
    height: 34px;
    font-size: 0.64rem;
  }

  .soknad-area-model__site {
    min-height: 260px;
  }

  .soknad-area-model__site b {
    font-size: 0.84rem;
  }

  .soknad-distance-diagram svg {
    min-height: 230px;
  }

  .soknad-distance-diagram text {
    font-size: 17px;
  }
}

@media (max-width: 420px) {
  .blog-article__section .blog-infographic--reno {
    inline-size: min(100%, calc(100vw - 24px));
    padding: 22px 14px;
  }

  .blog-article__section .blog-infographic--reno .blog-infographic__title {
    font-size: 1.2rem;
  }

  .reno-risk-chain article,
  .reno-compass article,
  .reno-preflight article,
  .reno-score article,
  .reno-budget article,
  .reno-offer article,
  .reno-regulation article,
  .reno-gates article,
  .reno-docs article {
    padding: 15px;
  }

  .blog-article__section .blog-infographic--soknad {
    inline-size: min(100%, calc(100vw - 24px));
    padding: 22px 14px;
  }

  .blog-article__section .blog-infographic--soknad .blog-infographic__title {
    font-size: 1.2rem;
  }

  .soknad-lanes article,
  .soknad-classifier article,
  .soknad-gates article,
  .soknad-checklist article,
  .soknad-package article,
  .soknad-responsibility article,
  .soknad-plan-stack article,
  .soknad-neighbor-flow article,
  .soknad-area-model__rules article,
  .soknad-distance-diagram article {
    padding: 15px;
  }
}

.directory-project-row__body strong {
  overflow-wrap: anywhere;
}

.contact-form__fields select {
  cursor: pointer;
}

@media (max-width: 760px) {
  .header-action {
    display: none;
  }

  .brand {
    font-size: clamp(0.88rem, 3.3vw, 1.05rem);
    letter-spacing: 0.045em;
  }

  .brand--byggsikt {
    font-size: clamp(0.95rem, 4.4vw, 1.16rem);
    letter-spacing: 0.1em;
  }

  .directory-project-row__body strong {
    font-size: clamp(2.25rem, 10.8vw, 4.1rem);
    line-height: 0.98;
  }
}

@media (max-width: 180px) {
  .header-action {
    display: none !important;
  }
}

/* Home project showcase redesign */
.project-index {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  padding: clamp(84px, 9vw, 154px) clamp(18px, 5vw, 96px) clamp(86px, 9vw, 150px);
  background:
    linear-gradient(180deg, rgba(23, 23, 19, 0.075) 0, rgba(23, 23, 19, 0) 160px),
    radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, #f4efe4 0%, #ece4d3 100%);
}

.project-index::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 23, 19, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 72%);
  pointer-events: none;
}

.project-index__intro,
.project-index__layout {
  width: min(100%, 1490px);
  margin-inline: auto;
}

.project-index__intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.45fr);
  gap: clamp(34px, 6vw, 118px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 76px);
  padding-bottom: clamp(30px, 3.5vw, 52px);
  border-bottom: 1px solid rgba(23, 23, 19, 0.22);
}

.project-index__intro h2 {
  max-width: 820px;
  font-size: clamp(3.45rem, 5.55vw, 6.85rem);
  letter-spacing: -0.074em;
  line-height: 0.88;
}

.project-index__summary {
  display: grid;
  gap: clamp(22px, 2.6vw, 34px);
  align-self: stretch;
}

.project-index__summary > p {
  max-width: 460px;
  margin: 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 650;
  line-height: 1.42;
}

.project-index__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 23, 19, 0.2);
  border-left: 1px solid rgba(23, 23, 19, 0.2);
}

.project-index__signals span {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: clamp(14px, 1.4vw, 20px);
  border-right: 1px solid rgba(23, 23, 19, 0.2);
  border-bottom: 1px solid rgba(23, 23, 19, 0.2);
  background: rgba(250, 246, 237, 0.54);
}

.project-index__signals strong,
.project-index__signals em {
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-index__signals strong {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.project-index__signals em {
  color: rgba(23, 23, 19, 0.58);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.28;
}

.project-index__layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.48fr);
  grid-template-rows: auto auto;
  gap: clamp(18px, 2.6vw, 36px);
  align-items: stretch;
}

.project-feature {
  position: relative;
  top: auto;
  grid-column: 1;
  grid-row: 1;
  display: block;
  align-self: stretch;
  height: auto;
  min-height: clamp(560px, 43vw, 780px);
  overflow: hidden;
  border: 1px solid rgba(23, 23, 19, 0.28);
  border-radius: 2px;
  background: #14120d;
  color: var(--paper-soft);
  box-shadow: 0 34px 92px rgba(23, 23, 19, 0.18);
}

.project-feature:hover {
  border-color: rgba(23, 23, 19, 0.52);
  transform: translateY(-3px);
}

.project-feature::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(12, 10, 7, 0) 36%, rgba(12, 10, 7, 0.38) 63%, rgba(12, 10, 7, 0.9) 100%),
    linear-gradient(90deg, rgba(12, 10, 7, 0.42), rgba(12, 10, 7, 0) 48%);
  pointer-events: none;
}

.project-feature__media {
  position: absolute;
  inset: 0;
  height: auto;
  min-height: 100%;
}

.project-feature__media img {
  height: 100%;
  object-position: center;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.01);
  transition: transform 650ms ease, filter 650ms ease;
}

.project-feature:hover .project-feature__media img {
  filter: saturate(1.02) contrast(1.07);
  transform: scale(1.045);
}

.project-feature__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  grid-template-rows: auto auto;
  gap: clamp(16px, 2.2vw, 34px) clamp(24px, 4vw, 76px);
  min-height: auto;
  padding: clamp(28px, 4vw, 62px);
  border: 0;
  background: linear-gradient(180deg, rgba(14, 12, 8, 0), rgba(14, 12, 8, 0.74) 22%, rgba(14, 12, 8, 0.94));
  color: inherit;
  container-type: normal;
}

.project-feature__copy::before {
  top: auto;
  right: clamp(28px, 4vw, 64px);
  bottom: clamp(24px, 3vw, 42px);
  color: rgba(250, 246, 237, 0.09);
  font-size: clamp(8rem, 15vw, 18rem);
  line-height: 0.68;
}

.project-feature__copy::after {
  display: none;
}

.project-feature__copy .project-meta {
  grid-column: 1 / -1;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(250, 246, 237, 0.36);
  color: rgba(250, 246, 237, 0.76);
}

.project-feature__copy strong {
  grid-column: 1;
  align-self: end;
  max-width: 780px;
  color: var(--paper-soft);
  font-size: clamp(3.2rem, 5.4vw, 7.2rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
  white-space: normal;
  overflow-wrap: anywhere;
}

.project-feature__copy span:not(.project-meta):not(.project-feature__cta) {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  max-width: 320px;
  color: rgba(250, 246, 237, 0.78);
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  font-weight: 650;
  line-height: 1.45;
}

.project-feature__cta {
  grid-column: 2;
  align-self: end;
  margin-top: 0;
  padding: 13px 16px 12px;
  border: 1px solid rgba(250, 246, 237, 0.58);
  border-radius: 2px;
  color: var(--paper-soft);
  background: rgba(250, 246, 237, 0.08);
}

.project-feature__cta::before {
  display: none;
}

.project-index__list {
  position: static;
  top: auto;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 10px;
}

.project-index__list .project-line:nth-child(n + 7) {
  display: none;
}

.project-line {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) clamp(88px, 7vw, 112px);
  grid-template-rows: auto auto auto;
  gap: 7px 16px;
  align-items: start;
  min-height: 122px;
  padding: clamp(15px, 1.3vw, 20px);
  overflow: hidden;
  border: 1px solid rgba(23, 23, 19, 0.22);
  border-radius: 2px;
  background: rgba(250, 246, 237, 0.66);
  color: var(--ink);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.project-line::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: #171713;
  content: "";
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: opacity 240ms ease, transform 240ms ease;
}

.project-line:hover,
.project-line:focus-visible {
  border-color: rgba(23, 23, 19, 0.42);
  background: rgba(255, 252, 245, 0.92);
  box-shadow: 0 18px 38px rgba(23, 23, 19, 0.1);
  color: var(--ink);
  transform: translateY(-3px);
}

.project-line:hover::before,
.project-line:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.project-line span,
.project-line em,
.project-line small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-line span,
.project-line em {
  color: rgba(23, 23, 19, 0.58);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.project-line span {
  grid-column: 1;
  grid-row: 1;
  padding: 4px 0 0;
}

.project-line strong {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(1.48rem, 1.82vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.project-line small {
  grid-column: 2;
  grid-row: 2;
  max-width: 360px;
  color: rgba(23, 23, 19, 0.6);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.32;
}

.project-line em {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: start;
  padding: 6px 0 0;
}

.project-line img {
  grid-column: 3;
  grid-row: 1 / span 3;
  width: 100%;
  height: 100%;
  min-height: 88px;
  margin: 0;
  border: 0;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.01);
  transition: transform 380ms ease, filter 380ms ease;
}

.project-line:hover img,
.project-line:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.08);
}

.project-index__archive {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4.2vw, 72px);
  align-items: end;
  align-self: stretch;
  margin: 0;
  padding: clamp(32px, 4vw, 58px);
  border-top: 1px solid rgba(23, 23, 19, 0.24);
  border-bottom: 1px solid rgba(23, 23, 19, 0.24);
  background:
    linear-gradient(90deg, rgba(23, 52, 82, 0.96), rgba(23, 52, 82, 0.9)),
    linear-gradient(135deg, rgba(250, 246, 237, 0.14), rgba(250, 246, 237, 0));
  color: var(--paper-soft);
}

.project-index__archive-copy {
  display: grid;
  gap: clamp(14px, 1.6vw, 22px);
  max-width: 820px;
}

.project-index__archive .eyebrow {
  color: rgba(250, 246, 237, 0.6);
}

.project-index__archive h3 {
  margin: 0;
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 3.8vw, 5.15rem);
  font-weight: 300;
  letter-spacing: -0.064em;
  line-height: 0.92;
}

.project-index__archive p:not(.eyebrow) {
  margin: 0;
  max-width: 640px;
  color: rgba(250, 246, 237, 0.72);
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  font-weight: 650;
  line-height: 1.55;
}

.project-index__archive-actions {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.project-index__archive-actions span {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.project-index__archive-actions strong {
  font-family: var(--display);
  font-size: clamp(4.2rem, 6vw, 7.6rem);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.project-index__archive-actions em {
  color: rgba(250, 246, 237, 0.64);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.project-index__archive-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(250, 246, 237, 0.56);
  border-radius: 2px;
  color: var(--paper-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.project-index__archive-actions a:hover,
.project-index__archive-actions a:focus-visible {
  transform: translateY(-2px);
  background: var(--paper-soft);
  color: #173452;
}

@media (max-width: 1120px) {
  .project-index__intro,
  .project-index__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .project-feature,
  .project-index__list,
  .project-index__archive {
    grid-column: 1;
    grid-row: auto;
  }

  .project-index__summary {
    max-width: 760px;
  }

  .project-index__list {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-feature {
    position: relative;
    top: auto;
    height: auto;
    min-height: 620px;
  }

  .project-index__archive-actions {
    justify-items: start;
  }

  .project-index__archive-actions span {
    justify-items: start;
  }

  .project-line {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .project-line img {
    grid-column: 1 / -1;
    grid-row: 4;
    height: 170px;
  }
}

@media (max-width: 760px) {
  .project-index {
    padding: clamp(54px, 14vw, 84px) 14px clamp(62px, 16vw, 92px);
  }

  .project-index__intro {
    gap: 24px;
    margin-bottom: 26px;
    padding-bottom: 24px;
  }

  .project-index__intro h2 {
    font-size: clamp(2.45rem, 11.4vw, 3.8rem);
    letter-spacing: -0.072em;
    line-height: 0.92;
  }

  .project-index__signals,
  .project-index__list {
    grid-template-columns: 1fr;
  }

  .project-feature {
    min-height: 640px;
  }

  .project-feature__copy {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .project-index__archive {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 22px;
  }

  .project-index__archive h3 {
    font-size: clamp(2.05rem, 8.2vw, 3.1rem);
    line-height: 0.98;
  }

  .project-index__archive-actions {
    justify-items: start;
  }

  .project-feature__copy .project-meta,
  .project-feature__copy strong,
  .project-feature__copy span:not(.project-meta):not(.project-feature__cta),
  .project-feature__cta {
    grid-column: 1;
  }

  .project-feature__copy strong {
    font-size: clamp(2.35rem, 12vw, 3.85rem);
    line-height: 0.92;
  }

  .project-feature__copy span:not(.project-meta):not(.project-feature__cta) {
    grid-row: auto;
    max-width: 100%;
  }

  .project-feature__cta {
    width: fit-content;
  }

  .project-line {
    min-height: 0;
    padding: 16px;
  }

  .project-line strong {
    font-size: clamp(1.65rem, 8vw, 2.55rem);
    line-height: 1;
  }

  .project-line img {
    height: 190px;
  }
}

@media (max-width: 380px) {
  .project-index {
    padding-right: 10px;
    padding-left: 10px;
  }

  .project-feature {
    min-height: 560px;
  }

  .project-feature__copy {
    padding: 18px;
  }

  .project-index__archive {
    padding: 24px 18px;
  }

  .project-line {
    padding: 12px;
  }

  .project-line img {
    height: 140px;
  }
}

.project-image-hero__media--projekt-bygg img {
  object-position: center 58%;
}

.projekt-bygg-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  margin-bottom: 0;
  overflow: hidden;
}

.projekt-bygg-page .project-image-hero h1 {
  max-width: 1240px;
  font-size: clamp(3.15rem, 4.9vw, 6.9rem);
  letter-spacing: 0.13em;
  line-height: 1.1;
}

.projekt-bygg-page .project-image-hero__content {
  padding-top: clamp(102px, 13vh, 154px);
  padding-bottom: clamp(64px, 8vh, 92px);
}

.projekt-bygg-page .project-image-hero__lead {
  max-width: 820px;
  margin-top: clamp(58px, 8vh, 104px);
}

.project-sequence--projekt-lead {
  position: relative;
  z-index: 1;
  padding-top: clamp(86px, 8vw, 136px);
  background: var(--paper);
}

@media (max-width: 760px) {
  .projekt-bygg-page .project-image-hero {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    margin-bottom: 0;
  }

  .projekt-bygg-page .project-image-hero__content {
    padding-bottom: clamp(78px, 15vh, 132px);
  }

  .projekt-bygg-page .project-image-hero__lead {
    margin-top: clamp(48px, 9vh, 88px);
  }

  .project-sequence--projekt-lead {
    padding-top: clamp(76px, 16vw, 112px);
  }
}

.project-abstract--projekt-bygg,
.project-abstract--pro2,
.project-abstract--pro3,
.project-abstract--pro4 {
  padding-top: clamp(68px, 7vw, 118px);
  padding-bottom: clamp(70px, 7vw, 118px);
}

.project-visual-archive {
  display: grid;
  gap: clamp(30px, 4.4vw, 72px);
  border-top: 1px solid var(--line);
}

.project-visual-archive__head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.project-visual-archive__head .eyebrow {
  grid-column: 1 / -1;
}

.project-visual-archive__head h2 {
  grid-column: 1;
  max-width: 1040px;
  font-size: clamp(3rem, 4.55vw, 6.4rem);
  line-height: 0.96;
}

.project-visual-archive__head p:not(.eyebrow) {
  grid-column: 2;
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  line-height: 1.62;
}

.project-visual-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}

.project-visual-archive__item {
  position: relative;
  min-height: clamp(300px, 25vw, 470px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.project-visual-archive__item--wide {
  grid-column: span 2;
}

.project-visual-archive__item--tall {
  grid-row: span 2;
}

.project-visual-archive__item::after {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0), rgba(23, 23, 19, 0.7));
  content: "";
  pointer-events: none;
}

.project-visual-archive__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.97) brightness(0.94);
  transition: transform 700ms cubic-bezier(0.16, 0.74, 0.18, 1), filter 700ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.project-visual-archive__item:hover img,
.project-visual-archive__item:focus-within img {
  filter: saturate(1) contrast(1);
  transform: scale(1.035);
}

.project-visual-archive__item figcaption {
  position: absolute;
  right: clamp(14px, 1.4vw, 24px);
  bottom: clamp(13px, 1.4vw, 22px);
  left: clamp(14px, 1.4vw, 24px);
  z-index: 2;
  color: var(--paper-soft);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .project-visual-archive__head,
  .project-visual-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-visual-archive__head p:not(.eyebrow) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .project-visual-archive__head,
  .project-visual-archive__grid {
    grid-template-columns: 1fr;
  }

  .project-visual-archive__head h2 {
    font-size: clamp(2.7rem, 14vw, 4.55rem);
    line-height: 0.92;
  }

  .project-visual-archive__item,
  .project-visual-archive__item--wide,
  .project-visual-archive__item--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .project-visual-archive__item--wide {
    aspect-ratio: 1.28 / 1;
  }
}

.pro2-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro2 img {
  object-position: center 54%;
  filter: saturate(0.88) contrast(1) brightness(0.76);
}

.pro2-page .project-image-hero h1 {
  max-width: 1220px;
  font-size: clamp(2.9rem, 4.8vw, 6.6rem);
  letter-spacing: 0.12em;
  line-height: 1.08;
}

.pro2-page .project-image-hero__content {
  padding-top: clamp(102px, 13vh, 154px);
  padding-bottom: clamp(64px, 8vh, 92px);
}

.pro2-page .project-image-hero__lead {
  max-width: 760px;
  margin-top: clamp(58px, 8vh, 104px);
}

.pro2-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(340px, 0.44fr);
  gap: clamp(34px, 7vw, 118px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.pro2-overview__title,
.pro2-overview__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 32px);
}

.pro2-overview__title h2 {
  max-width: 980px;
  font-size: clamp(3.1rem, 6.2vw, 8.2rem);
  line-height: 0.94;
}

.pro2-overview__copy p {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.06vw, 1.18rem);
  line-height: 1.62;
}

.pro2-frame-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.42fr);
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 30px);
}

.pro2-frame-grid__item,
.pro2-archive figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.pro2-frame-grid__item--main {
  grid-row: span 2;
  min-height: clamp(620px, 58vw, 940px);
}

.pro2-frame-grid__item img,
.pro2-archive img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98) brightness(0.94);
  transition: transform 700ms cubic-bezier(0.16, 0.74, 0.18, 1), filter 700ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.pro2-frame-grid__item:hover img,
.pro2-archive figure:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.035);
}

.pro2-frame-grid__item::after,
.pro2-archive figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0), rgba(23, 23, 19, 0.72));
  content: "";
  pointer-events: none;
}

.pro2-frame-grid__item figcaption,
.pro2-archive figcaption {
  position: absolute;
  right: clamp(14px, 1.4vw, 24px);
  bottom: clamp(13px, 1.4vw, 22px);
  left: clamp(14px, 1.4vw, 24px);
  z-index: 2;
  color: var(--paper-soft);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pro2-flow {
  border-top: 1px solid var(--line);
}

.pro2-archive {
  display: grid;
  gap: clamp(30px, 4vw, 66px);
  border-top: 1px solid var(--line);
}

.pro2-archive__head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.pro2-archive__head .eyebrow {
  grid-column: 1 / -1;
}

.pro2-archive__head h2 {
  max-width: 860px;
  font-size: clamp(3rem, 5.2vw, 7.2rem);
  line-height: 0.94;
}

.pro2-archive__head p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  line-height: 1.62;
}

.pro2-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}

.pro2-archive figure {
  min-height: clamp(320px, 28vw, 520px);
}

@media (max-width: 980px) {
  .pro2-overview,
  .pro2-frame-grid,
  .pro2-archive__head,
  .pro2-archive__grid {
    grid-template-columns: 1fr;
  }

  .pro2-frame-grid {
    grid-template-rows: none;
  }

  .pro2-frame-grid__item,
  .pro2-frame-grid__item--main,
  .pro2-archive figure {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .pro2-overview__copy,
  .pro2-archive__head p:not(.eyebrow) {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .pro2-page .project-image-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.35rem);
    letter-spacing: 0.08em;
  }

  .pro2-overview__title h2,
  .pro2-archive__head h2 {
    font-size: clamp(2.7rem, 14vw, 4.55rem);
    line-height: 0.92;
  }

  .pro2-frame-grid__item,
  .pro2-frame-grid__item--main,
  .pro2-archive figure {
    aspect-ratio: 4 / 5;
  }
}

.pro3-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro3 img {
  object-position: center 48%;
  filter: saturate(0.9) contrast(0.98) brightness(0.74);
}

.pro3-page .project-image-hero h1 {
  max-width: 1240px;
  font-size: clamp(2.65rem, 4.35vw, 5.8rem);
  letter-spacing: 0.12em;
  line-height: 1.05;
}

.pro3-page .project-image-hero__content {
  height: 100%;
  grid-template-rows: auto auto auto minmax(28px, 1fr) auto;
  align-content: stretch;
  padding-top: clamp(94px, 11vh, 136px);
  padding-bottom: clamp(46px, 6vh, 82px);
}

.pro3-page .project-image-hero__kicker {
  margin-bottom: clamp(60px, 8vh, 104px);
}

.pro3-page .project-image-hero__meta {
  margin-top: clamp(16px, 2vh, 26px);
}

.pro3-page .project-image-hero__lead {
  align-self: end;
  max-width: 980px;
  margin-top: 0;
  font-size: clamp(0.76rem, 0.84vw, 0.94rem);
  line-height: 1.42;
}

.pro3-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.34fr);
  gap: clamp(34px, 7vw, 114px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro3-intro__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 32px);
}

.pro3-intro__copy h2 {
  max-width: 980px;
  font-size: clamp(3rem, 6vw, 8rem);
  line-height: 0.94;
}

.pro3-intro__copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.06vw, 1.18rem);
  line-height: 1.62;
}

.pro3-intro__facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.pro3-intro__facts div {
  display: grid;
  grid-template-columns: minmax(72px, 0.3fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.pro3-intro__facts b {
  color: var(--ink);
}

.pro3-spa-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.44fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 30px);
}

.pro3-spa-grid__item,
.pro3-archive figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.pro3-spa-grid__item--large {
  grid-row: span 2;
  min-height: clamp(620px, 58vw, 940px);
}

.pro3-spa-grid__item img,
.pro3-archive img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98) brightness(0.95);
  transition: transform 700ms cubic-bezier(0.16, 0.74, 0.18, 1), filter 700ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.pro3-spa-grid__item:hover img,
.pro3-archive figure:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.035);
}

.pro3-spa-grid__item::after,
.pro3-archive figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0), rgba(23, 23, 19, 0.7));
  content: "";
  pointer-events: none;
}

.pro3-spa-grid__item figcaption,
.pro3-archive figcaption {
  position: absolute;
  right: clamp(14px, 1.4vw, 24px);
  bottom: clamp(13px, 1.4vw, 22px);
  left: clamp(14px, 1.4vw, 24px);
  z-index: 2;
  color: var(--paper-soft);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pro3-detail-flow {
  border-top: 1px solid var(--line);
}

.pro3-archive {
  display: grid;
  gap: clamp(30px, 4vw, 66px);
  border-top: 1px solid var(--line);
}

.pro3-archive__head {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.34fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.pro3-archive__head .eyebrow {
  grid-column: 1 / -1;
}

.pro3-archive__head h2 {
  max-width: 940px;
  font-size: clamp(3rem, 5.2vw, 7.2rem);
  line-height: 0.94;
}

.pro3-archive__head p:not(.eyebrow) {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  line-height: 1.62;
}

.pro3-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}

.pro3-archive figure {
  min-height: clamp(300px, 25vw, 470px);
}

@media (max-width: 980px) {
  .pro3-intro,
  .pro3-spa-grid,
  .pro3-archive__head,
  .pro3-archive__grid {
    grid-template-columns: 1fr;
  }

  .pro3-spa-grid {
    grid-template-rows: none;
  }

  .pro3-spa-grid__item,
  .pro3-spa-grid__item--large,
  .pro3-archive figure {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .pro3-intro__facts,
  .pro3-archive__head p:not(.eyebrow) {
    max-width: 760px;
  }
}

@media (min-width: 761px) and (max-height: 780px) {
  .pro3-page .project-image-hero h1 {
    font-size: clamp(2.4rem, 3.85vw, 4.9rem);
    line-height: 1.02;
  }

  .pro3-page .project-image-hero__content {
    padding-top: 86px;
    padding-bottom: 34px;
  }

  .pro3-page .project-image-hero__kicker {
    margin-bottom: clamp(38px, 6vh, 66px);
  }

  .pro3-page .project-image-hero__lead {
    max-width: 1040px;
    font-size: 0.74rem;
    line-height: 1.34;
  }
}

@media (max-width: 620px) {
  .pro3-page .project-image-hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 4.2rem);
    letter-spacing: 0.075em;
  }

  .pro3-page .project-image-hero__content {
    grid-template-rows: auto auto auto minmax(18px, 1fr) auto;
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .pro3-page .project-image-hero__kicker {
    margin-bottom: clamp(34px, 7vh, 66px);
  }

  .pro3-page .project-image-hero__lead {
    max-width: 360px;
    font-size: 0.7rem;
    line-height: 1.36;
  }

  .pro3-intro__copy h2,
  .pro3-archive__head h2 {
    font-size: clamp(2.7rem, 14vw, 4.55rem);
    line-height: 0.92;
  }

  .pro3-spa-grid__item,
  .pro3-spa-grid__item--large,
  .pro3-archive figure {
    aspect-ratio: 4 / 5;
  }
}

.pro4-page {
  --pro4-editorial: "Euclid Flex", "Euclid Circular B", Arial, sans-serif;
  --pro4-reading: "Euclid Circular B", "Euclid Circular A", Arial, sans-serif;
  --pro4-caption: "Euclid Square", "Euclid Circular B", Arial, sans-serif;
}

.pro4-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro4 img {
  object-position: center 45%;
  filter: saturate(0.82) contrast(0.98) brightness(0.72);
}

.pro4-page .project-image-hero__kicker {
  margin-bottom: clamp(42px, 7vh, 86px);
}

.pro4-page .project-image-hero h1 {
  max-width: 1080px;
  font-size: clamp(3.15rem, 5.7vw, 7.35rem);
  letter-spacing: 0;
  line-height: 0.96;
  text-align: center;
  text-transform: none;
}

.pro4-page .project-image-hero__content {
  align-content: center;
  position: relative;
  width: min(94vw, 1300px);
  min-height: 100svh;
  padding-top: clamp(104px, 13vh, 154px);
  padding-bottom: clamp(42px, 6vh, 74px);
  row-gap: 0;
}

.pro4-page .project-image-hero__meta {
  margin-top: clamp(16px, 2vh, 22px);
  text-align: center;
}

.pro4-page .project-image-hero__lead {
  position: absolute;
  right: 0;
  bottom: clamp(34px, 4.8vh, 58px);
  left: 0;
  width: min(780px, 78vw);
  margin: 0 auto;
  font-size: 12px;
  text-align: center;
  transform: none;
}

.pro4-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(340px, 0.42fr);
  gap: clamp(34px, 7vw, 118px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro4-overview__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 32px);
}

.pro4-overview__copy h2 {
  max-width: 1050px;
  font-size: clamp(3.2rem, 6vw, 8.2rem);
  line-height: 0.94;
}

.pro4-overview__copy p:not(.eyebrow) {
  max-width: 710px;
  margin: 0;
  color: var(--ink);
  font-family: var(--pro4-reading);
  font-size: clamp(1rem, 1.06vw, 1.18rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro4-overview__side {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
}

.pro4-overview__media {
  position: relative;
  min-height: clamp(360px, 33vw, 580px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.pro4-overview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.98) brightness(0.98);
}

.pro4-overview__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0), rgba(23, 23, 19, 0.62));
  content: "";
  pointer-events: none;
}

.pro4-overview__media figcaption {
  position: absolute;
  right: clamp(14px, 1.4vw, 24px);
  bottom: clamp(13px, 1.4vw, 22px);
  left: clamp(14px, 1.4vw, 24px);
  z-index: 2;
  color: var(--paper-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pro4-page .project-story-card figcaption,
.pro4-overview__media figcaption,
.pro4-archive__item figcaption {
  font-family: var(--pro4-caption);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.42;
  text-transform: none;
}

.pro4-overview__facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.pro4-overview__facts div {
  display: grid;
  grid-template-columns: minmax(78px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.pro4-overview__facts b {
  color: var(--ink);
}

.pro4-text-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pro4-text-duo article {
  display: grid;
  align-content: start;
  gap: clamp(16px, 2vw, 28px);
}

.pro4-text-duo article + article {
  border-left: 1px solid var(--line);
  padding-left: clamp(26px, 5vw, 92px);
}

.pro4-text-duo h2 {
  max-width: 680px;
  font-family: var(--pro4-editorial);
  font-size: clamp(2.6rem, 4.2vw, 5.9rem);
  font-weight: 200;
  line-height: 0.96;
}

.pro4-text-duo p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(23, 23, 19, 0.82);
  font-family: var(--pro4-reading);
  font-size: clamp(0.96rem, 1.02vw, 1.14rem);
  font-weight: 300;
  line-height: 1.76;
}

.pro4-three-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.06fr) minmax(0, 0.92fr);
  gap: clamp(40px, 6vw, 112px);
  padding-top: clamp(78px, 8vw, 138px);
  padding-bottom: clamp(84px, 9vw, 152px);
  border-bottom: 1px solid var(--line);
}

.pro4-three-notes p {
  max-width: 38em;
  margin: 0;
  color: rgba(23, 23, 19, 0.74);
  font-family: var(--pro4-reading);
  font-size: clamp(0.88rem, 0.94vw, 1.04rem);
  font-weight: 300;
  letter-spacing: 0.006em;
  line-height: 1.86;
  text-wrap: pretty;
}

.pro4-three-notes p::before {
  display: block;
  margin-bottom: 14px;
  color: rgba(23, 23, 19, 0.44);
  font-family: var(--caption);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.pro4-three-notes p:nth-child(1)::before {
  content: "01 / ROM";
}

.pro4-three-notes p:nth-child(2)::before {
  content: "02 / LYS";
}

.pro4-three-notes p:nth-child(3)::before {
  content: "03 / DETALJ";
}

.pro4-three-notes p:nth-child(2) {
  padding-top: clamp(18px, 3vw, 54px);
}

.pro4-three-notes p:nth-child(3) {
  padding-top: clamp(8px, 2vw, 34px);
}

.pro4-editorial-passage {
  display: block;
  border-bottom: 1px solid var(--line);
}

.pro4-editorial-passage__figure {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  width: min(100%, 420px);
  max-width: 420px;
  margin: 0;
}

.pro4-editorial-passage__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(0.98) brightness(0.94);
}

.pro4-editorial-passage__figure figcaption {
  max-width: 34em;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--caption);
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.58;
}

.pro4-material-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.46fr) minmax(220px, 0.46fr);
  gap: clamp(14px, 1.8vw, 28px);
  align-items: stretch;
}

.pro4-material-strip figure,
.pro4-room-grid__items figure,
.pro4-archive__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.pro4-material-strip__wide {
  min-height: clamp(520px, 45vw, 790px);
}

.pro4-material-strip figure:not(.pro4-material-strip__wide) {
  min-height: clamp(520px, 45vw, 790px);
}

.pro4-material-strip img,
.pro4-room-grid__items img,
.pro4-archive__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.98) brightness(0.96);
  transition: transform 700ms cubic-bezier(0.16, 0.74, 0.18, 1), filter 700ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.pro4-material-strip figure:hover img,
.pro4-room-grid__items figure:hover img,
.pro4-archive__item:hover img {
  filter: saturate(0.98) contrast(1);
  transform: scale(1.035);
}

.pro4-material-strip figure::after,
.pro4-room-grid__items figure::after,
.pro4-archive__item::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0), rgba(23, 23, 19, 0.66));
  content: "";
  pointer-events: none;
}

.pro4-material-strip figcaption,
.pro4-room-grid__items figcaption,
.pro4-archive__item figcaption {
  position: absolute;
  right: clamp(14px, 1.4vw, 24px);
  bottom: clamp(13px, 1.4vw, 22px);
  left: clamp(14px, 1.4vw, 24px);
  z-index: 2;
  color: var(--paper-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pro4-material-strip figure,
.pro4-room-grid__items figure {
  overflow: visible;
  border: 0;
  background: transparent;
}

.pro4-material-strip figure::after,
.pro4-room-grid__items figure::after {
  content: none;
}

.pro4-material-strip img {
  display: block;
  height: clamp(520px, 45vw, 790px);
}

.pro4-room-grid__items img {
  display: block;
  height: clamp(420px, 39vw, 700px);
}

.pro4-material-strip figcaption,
.pro4-room-grid__items figcaption {
  position: static;
  max-width: 330px;
  padding-top: 13px;
  color: rgba(23, 23, 19, 0.66);
  font-family: var(--pro4-caption);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.48;
  text-transform: none;
}

.pro4-material-strip__wide figcaption {
  max-width: 430px;
  padding-top: 18px;
  color: rgba(23, 23, 19, 0.78);
  font-size: clamp(0.78rem, 0.82vw, 0.92rem);
  line-height: 1.58;
}

.pro4-stair-section {
  border-top: 1px solid var(--line);
}

.pro4-room-grid {
  display: grid;
  gap: clamp(30px, 4vw, 70px);
  border-top: 1px solid var(--line);
}

.pro4-room-grid__head {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.36fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.pro4-room-grid__head .eyebrow {
  grid-column: 1 / -1;
}

.pro4-room-grid__head h2 {
  max-width: 980px;
  font-size: clamp(3rem, 5.4vw, 7.3rem);
  line-height: 0.94;
}

.pro4-room-grid__head p:not(.eyebrow) {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-family: var(--pro4-reading);
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro4-room-grid__items {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.42fr) minmax(0, 0.72fr);
  gap: clamp(14px, 1.8vw, 28px);
}

.pro4-room-grid__items figure {
  min-height: clamp(420px, 39vw, 700px);
}

.pro4-archive {
  display: grid;
  gap: clamp(30px, 4vw, 66px);
  border-top: 1px solid var(--line);
}

.pro4-archive__head {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.34fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.pro4-archive__head .eyebrow {
  grid-column: 1 / -1;
}

.pro4-archive__head h2 {
  max-width: 980px;
  font-size: clamp(3rem, 5.2vw, 7.2rem);
  line-height: 0.94;
}

.pro4-archive__head p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-family: var(--pro4-reading);
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro4-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}

.pro4-archive__item {
  min-height: clamp(300px, 25vw, 470px);
}

.pro4-archive__item--wide {
  grid-column: span 2;
}

@media (max-width: 980px) {
  .pro4-overview,
  .pro4-editorial-passage,
  .pro4-three-notes,
  .pro4-text-duo,
  .pro4-material-strip,
  .pro4-room-grid__head,
  .pro4-room-grid__items,
  .pro4-archive__head,
  .pro4-archive__grid {
    grid-template-columns: 1fr;
  }

  .pro4-text-duo article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: clamp(26px, 5vw, 48px);
    padding-left: 0;
  }

  .pro4-overview__media {
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .pro4-material-strip__wide,
  .pro4-material-strip figure:not(.pro4-material-strip__wide),
  .pro4-room-grid__items figure,
  .pro4-archive__item,
  .pro4-archive__item--wide {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .pro4-overview__facts,
  .pro4-room-grid__head p:not(.eyebrow),
  .pro4-archive__head p:not(.eyebrow) {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .pro4-page .project-image-hero__content {
    width: min(100%, calc(100vw - 32px));
    justify-items: center;
  }

  .pro4-page .project-image-hero h1 {
    width: min(100%, 360px);
    max-width: min(88vw, 360px);
    margin-inline: auto;
    font-size: clamp(2rem, 9.4vw, 3.4rem);
    line-height: 1.08;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
  }

  .pro4-page .project-image-hero__kicker {
    margin-bottom: clamp(34px, 6vh, 58px);
  }

  .pro4-page .project-image-hero__lead {
    max-width: 330px;
  }

  .pro4-overview__copy h2,
  .pro4-text-duo h2,
  .pro4-room-grid__head h2,
  .pro4-archive__head h2 {
    font-size: clamp(2.7rem, 14vw, 4.55rem);
    line-height: 0.92;
  }

  .pro4-material-strip__wide,
  .pro4-material-strip figure:not(.pro4-material-strip__wide),
  .pro4-overview__media,
  .pro4-room-grid__items figure,
  .pro4-archive__item,
  .pro4-archive__item--wide {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 420px) {
  .pro4-page .project-image-hero h1 {
    max-width: 86vw;
    font-size: clamp(1.85rem, 8.7vw, 2.3rem);
    line-height: 1.1;
  }
}

.pro6-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro6 img {
  object-position: center 52%;
  filter: saturate(0.92) contrast(1.02) brightness(0.74);
}

.pro6-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(18, 18, 14, 0.34), rgba(18, 18, 14, 0.06) 34%, rgba(18, 18, 14, 0.58)),
    radial-gradient(circle at 50% 50%, rgba(18, 18, 14, 0) 0 30%, rgba(18, 18, 14, 0.44) 86%);
}

.pro6-page .project-image-hero__content {
  height: 100%;
  width: min(94vw, 1260px);
  grid-template-rows: minmax(118px, 0.28fr) auto minmax(72px, 0.18fr) auto auto minmax(160px, 1fr) auto;
  align-content: stretch;
  row-gap: clamp(12px, 1.8vh, 24px);
  padding-top: clamp(104px, 12vh, 150px);
  padding-bottom: clamp(44px, 6vh, 74px);
}

.pro6-page .project-image-hero__kicker {
  grid-row: 2;
  align-self: center;
  margin-bottom: 0;
}

.pro6-page .project-image-hero h1 {
  grid-row: 4;
  align-self: center;
  max-width: 1120px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(3.05rem, 5.35vw, 7.1rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: none;
  text-wrap: balance;
  white-space: normal;
}

.pro6-page .project-image-hero__meta {
  grid-row: 5;
  align-self: start;
  margin-top: 0;
}

.pro6-page .project-image-hero__lead {
  grid-row: 7;
  align-self: end;
  max-width: 820px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.48;
}

.pro6-opening {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(320px, 0.36fr);
  gap: clamp(34px, 7vw, 118px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro6-opening__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
}

.pro6-opening__copy h2 {
  max-width: 1000px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(3.15rem, 6.4vw, 8.4rem);
  font-weight: 300;
  line-height: 0.93;
  text-wrap: balance;
}

.pro6-opening__copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  font-weight: 400;
  line-height: 1.68;
}

.pro6-opening__aside {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
}

.pro6-opening__image {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pro6-opening__image img {
  width: 100%;
  height: clamp(360px, 38vw, 620px);
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.92) contrast(0.98) brightness(0.96);
}

.pro6-opening__image figcaption,
.pro6-terrace figcaption,
.pro6-interior-moment figcaption {
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pro6-opening__facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.pro6-opening__facts div {
  display: grid;
  grid-template-columns: minmax(72px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.48;
}

.pro6-opening__facts b {
  color: var(--ink);
  font-weight: 600;
}

.pro6-terrace {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.46fr);
  gap: clamp(18px, 2.4vw, 38px);
  align-items: start;
}

.pro6-terrace figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pro6-terrace__main img,
.pro6-terrace__side img,
.pro6-interior-moment__image img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98) brightness(0.95);
}

.pro6-terrace__main img {
  height: clamp(560px, 52vw, 840px);
  object-position: center 54%;
}

.pro6-terrace__main figcaption {
  max-width: 500px;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(0.86rem, 0.88vw, 0.98rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.68;
  text-transform: none;
}

.pro6-terrace__side {
  display: grid;
  gap: clamp(20px, 2.4vw, 36px);
}

.pro6-terrace__side img {
  height: clamp(260px, 24vw, 402px);
}

.pro6-evening-caption {
  padding-top: clamp(34px, 5vw, 82px);
}

.pro6-caption-plate {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #15130f;
  color: var(--paper-soft);
}

.pro6-caption-plate img {
  display: block;
  width: 100%;
  height: clamp(620px, 62vw, 940px);
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.95) contrast(1.02) brightness(0.88);
}

.pro6-caption-plate::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 14, 0.02), rgba(18, 18, 14, 0.42)),
    linear-gradient(90deg, rgba(18, 18, 14, 0.52), rgba(18, 18, 14, 0.04) 52%, rgba(18, 18, 14, 0.42));
  content: "";
  pointer-events: none;
}

.pro6-caption-plate figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 92px);
  bottom: clamp(24px, 5vw, 86px);
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(430px, 40vw);
  color: var(--paper-soft);
}

.pro6-caption-plate span {
  color: rgba(250, 246, 237, 0.72);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro6-caption-plate p {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--text);
  font-size: clamp(1rem, 1.1vw, 1.28rem);
  font-weight: 300;
  line-height: 1.62;
}

.project-abstract--pro6 {
  padding-top: clamp(70px, 7vw, 120px);
  padding-bottom: clamp(72px, 7vw, 122px);
}

.project-abstract--pro6 p {
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.82;
}

.pro6-sequence {
  border-top: 1px solid var(--line);
}

.pro6-sequence .project-sequence__copy h2,
.pro6-interior-moment__copy h2,
.pro6-archive__head h2 {
  font-family: "Euclid Flex", var(--display);
  font-weight: 300;
  letter-spacing: 0;
}

.pro6-interior-moment {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.36fr);
  gap: clamp(34px, 6vw, 98px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro6-interior-moment__image {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pro6-interior-moment__image img {
  height: clamp(520px, 48vw, 780px);
  object-position: center 50%;
}

.pro6-interior-moment__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro6-interior-moment__copy h2 {
  max-width: 560px;
  font-size: clamp(3rem, 4.8vw, 6.6rem);
  line-height: 0.96;
  text-wrap: balance;
}

.pro6-interior-moment__copy p:not(.eyebrow) {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1vw, 1.12rem);
  line-height: 1.68;
}

.pro6-archive {
  display: grid;
  gap: clamp(30px, 4vw, 66px);
  border-top: 1px solid var(--line);
}

.pro6-archive__head {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.34fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.pro6-archive__head .eyebrow {
  grid-column: 1 / -1;
}

.pro6-archive__head h2 {
  max-width: 980px;
  font-size: clamp(3rem, 5.2vw, 7.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.pro6-archive__head p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  line-height: 1.62;
}

.pro6-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}

.pro6-archive__item {
  position: relative;
  min-height: clamp(300px, 25vw, 470px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.pro6-archive__item--wide {
  grid-column: span 2;
}

.pro6-archive__item::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0), rgba(23, 23, 19, 0.7));
  content: "";
  pointer-events: none;
}

.pro6-archive__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98) brightness(0.94);
  transition: transform 700ms cubic-bezier(0.16, 0.74, 0.18, 1), filter 700ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.pro6-archive__item:hover img,
.pro6-archive__item:focus-within img {
  filter: saturate(1) contrast(1);
  transform: scale(1.035);
}

.pro6-archive__item figcaption {
  position: absolute;
  right: clamp(14px, 1.4vw, 24px);
  bottom: clamp(13px, 1.4vw, 22px);
  left: clamp(14px, 1.4vw, 24px);
  z-index: 2;
  color: var(--paper-soft);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .pro6-opening,
  .pro6-terrace,
  .pro6-interior-moment,
  .pro6-archive__head,
  .pro6-archive__grid {
    grid-template-columns: 1fr;
  }

  .pro6-opening__image img,
  .pro6-terrace__main img,
  .pro6-interior-moment__image img,
  .pro6-archive__item,
  .pro6-archive__item--wide {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .pro6-terrace__main img,
  .pro6-terrace__side img,
  .pro6-interior-moment__image img {
    height: auto;
  }

  .pro6-caption-plate figcaption {
    width: min(480px, 56vw);
  }

  .pro6-archive__head p:not(.eyebrow) {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .pro6-page .project-image-hero__content {
    width: min(100%, calc(100vw - 32px));
    grid-template-rows: minmax(88px, 0.24fr) auto minmax(48px, 0.18fr) auto auto minmax(58px, 0.9fr) auto;
    justify-items: center;
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .pro6-page .project-image-hero h1 {
    width: min(100%, 320px);
    max-width: calc(100vw - 48px);
    margin-inline: auto;
    font-size: clamp(2rem, 8.6vw, 3rem);
    line-height: 1.05;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .pro6-page .project-image-hero__kicker,
  .pro6-page .project-image-hero__meta {
    width: min(100%, 310px);
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
  }

  .pro6-page .project-image-hero__lead {
    width: min(100%, 330px);
    max-width: calc(100vw - 48px);
    overflow-wrap: anywhere;
  }

  .pro6-opening__copy h2,
  .pro6-interior-moment__copy h2,
  .pro6-archive__head h2 {
    font-size: clamp(2.7rem, 14vw, 4.55rem);
    line-height: 0.92;
  }

  .pro6-caption-plate img {
    height: auto;
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }

  .pro6-caption-plate figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
  }

  .pro6-archive__item,
  .pro6-archive__item--wide {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 420px) {
  .pro6-page .project-image-hero h1 {
    max-width: calc(100vw - 48px);
    font-size: clamp(1.95rem, 8.8vw, 2.45rem);
    line-height: 1.08;
  }

  .pro6-page .project-image-hero__kicker {
    max-width: 300px;
    line-height: 1.35;
    white-space: normal;
  }
}

.pro5-page {
  --pro5-paper: #eee7db;
  --pro5-ink-soft: rgba(23, 23, 19, 0.76);
}

.pro5-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro5 img {
  object-position: center 50%;
  filter: saturate(0.8) contrast(1.02) brightness(0.66);
}

.pro5-page .project-image-hero__content {
  width: min(92vw, 1240px);
  height: 100%;
  grid-template-rows: auto auto auto minmax(34px, 1fr) auto;
  align-content: stretch;
  padding-top: clamp(98px, 12vh, 150px);
  padding-bottom: clamp(44px, 6vh, 80px);
}

.pro5-page .project-image-hero__kicker {
  margin-bottom: clamp(64px, 9vh, 128px);
}

.pro5-page .project-image-hero h1 {
  max-width: 1080px;
  font-size: clamp(3rem, 6vw, 8.2rem);
  letter-spacing: 0.02em;
  line-height: 0.98;
  text-transform: none;
}

.pro5-page .project-image-hero__meta {
  margin-top: clamp(18px, 2vh, 26px);
}

.pro5-page .project-image-hero__lead {
  align-self: end;
  max-width: 840px;
  margin-top: 0;
  font-size: clamp(0.76rem, 0.84vw, 0.94rem);
  line-height: 1.46;
}

.pro5-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.36fr);
  gap: clamp(34px, 7vw, 116px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro5-intro__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 32px);
}

.pro5-intro__copy h2 {
  max-width: 1040px;
  font-size: clamp(3.1rem, 5.7vw, 7.8rem);
  line-height: 0.94;
}

.pro5-intro__copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--pro5-ink-soft);
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  font-weight: 300;
  line-height: 1.78;
}

.pro5-intro__facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.pro5-intro__facts div {
  display: grid;
  grid-template-columns: minmax(80px, 0.3fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--caption);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
}

.pro5-intro__facts b {
  color: var(--ink);
  font-weight: 500;
}

.pro5-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 0.52fr);
  gap: clamp(34px, 6vw, 106px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.pro5-feature__media {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
}

.pro5-feature__media img {
  width: 100%;
  min-height: clamp(420px, 44vw, 760px);
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02) brightness(0.9);
}

.pro5-feature__media figcaption {
  max-width: 39em;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--caption);
  font-size: clamp(0.72rem, 0.82vw, 0.9rem);
  font-weight: 400;
  line-height: 1.6;
}

.pro5-feature__copy {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  max-width: 760px;
}

.pro5-feature__copy p {
  margin: 0;
  color: var(--pro5-ink-soft);
  font-size: clamp(0.98rem, 1.05vw, 1.16rem);
  font-weight: 300;
  line-height: 1.86;
  text-wrap: pretty;
}

.project-abstract--pro5 {
  background: linear-gradient(180deg, var(--paper), var(--pro5-paper));
}

.pro5-stone-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.42fr);
  grid-template-rows: repeat(2, minmax(300px, 1fr));
  gap: clamp(14px, 1.8vw, 28px);
}

.pro5-stone-grid__item,
.pro5-archive figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.pro5-stone-grid__item--wide {
  grid-row: span 2;
  min-height: clamp(620px, 58vw, 900px);
}

.pro5-stone-grid__item img,
.pro5-archive img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02) brightness(0.92);
  transition: transform 700ms cubic-bezier(0.16, 0.74, 0.18, 1), filter 700ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.pro5-stone-grid__item:hover img,
.pro5-archive figure:hover img {
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.03);
}

.pro5-stone-grid__item::after,
.pro5-archive figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0), rgba(23, 23, 19, 0.72));
  content: "";
  pointer-events: none;
}

.pro5-stone-grid__item figcaption,
.pro5-archive figcaption {
  position: absolute;
  right: clamp(14px, 1.4vw, 24px);
  bottom: clamp(13px, 1.4vw, 22px);
  left: clamp(14px, 1.4vw, 24px);
  z-index: 2;
  color: var(--paper-soft);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pro5-detail-flow {
  border-top: 1px solid var(--line);
}

.pro5-archive {
  display: grid;
  gap: clamp(30px, 4vw, 66px);
  border-top: 1px solid var(--line);
}

.pro5-archive__head {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.34fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.pro5-archive__head .eyebrow {
  grid-column: 1 / -1;
}

.pro5-archive__head h2 {
  max-width: 1000px;
  font-size: clamp(3rem, 5.1vw, 7rem);
  line-height: 0.94;
}

.pro5-archive__head p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro5-archive__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 22px);
}

.pro5-archive figure {
  min-height: clamp(280px, 25vw, 470px);
}

@media (max-width: 980px) {
  .pro5-intro,
  .pro5-feature,
  .pro5-stone-grid,
  .pro5-archive__head,
  .pro5-archive__grid {
    grid-template-columns: 1fr;
  }

  .pro5-stone-grid {
    grid-template-rows: none;
  }

  .pro5-stone-grid__item,
  .pro5-stone-grid__item--wide,
  .pro5-archive figure {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .pro5-intro__facts,
  .pro5-archive__head p:not(.eyebrow) {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .pro5-page .project-image-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.5rem);
  }

  .pro5-page .project-image-hero__content {
    grid-template-rows: auto auto auto minmax(18px, 1fr) auto;
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .pro5-page .project-image-hero__kicker {
    margin-bottom: clamp(34px, 7vh, 64px);
  }

  .pro5-page .project-image-hero__lead {
    max-width: 360px;
    font-size: 0.7rem;
    line-height: 1.36;
  }

  .pro5-intro__copy h2,
  .pro5-archive__head h2 {
    font-size: clamp(2.7rem, 14vw, 4.55rem);
    line-height: 0.92;
  }

  .pro5-feature__media img,
  .pro5-stone-grid__item,
  .pro5-stone-grid__item--wide,
  .pro5-archive figure {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

.pro8-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro8 img {
  object-position: center 52%;
  filter: saturate(0.9) contrast(1.02) brightness(0.68);
}

.pro8-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(14, 14, 12, 0.36), rgba(14, 14, 12, 0.08) 34%, rgba(14, 14, 12, 0.62)),
    radial-gradient(circle at 50% 54%, rgba(14, 14, 12, 0) 0 30%, rgba(14, 14, 12, 0.42) 88%);
}

.pro8-page .project-image-hero__content {
  height: 100%;
  width: min(94vw, 1280px);
  grid-template-rows: minmax(108px, 0.26fr) auto minmax(66px, 0.16fr) auto auto minmax(150px, 1fr) auto;
  align-content: stretch;
  row-gap: clamp(12px, 1.8vh, 24px);
  padding-top: clamp(100px, 12vh, 148px);
  padding-bottom: clamp(42px, 6vh, 72px);
}

.pro8-page .project-image-hero__kicker {
  grid-row: 2;
  margin-bottom: 0;
}

.pro8-page .project-image-hero h1 {
  grid-row: 4;
  max-width: 1180px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(3rem, 5.1vw, 7.2rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
  text-wrap: balance;
  white-space: normal;
}

.pro8-page .project-image-hero__meta {
  grid-row: 5;
  margin-top: 0;
}

.pro8-page .project-image-hero__lead {
  grid-row: 7;
  align-self: end;
  max-width: 780px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.48;
}

.pro8-opening {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 0.42fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro8-opening__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
  min-width: 0;
}

.pro8-opening__copy h2,
.pro8-bath-story__head h2,
.pro8-archive__head h2,
.pro8-detail-sequence .project-sequence__copy h2 {
  font-family: "Euclid Flex", var(--display);
  font-weight: 300;
  letter-spacing: 0;
  text-wrap: balance;
}

.pro8-opening__copy h2 {
  max-width: 780px;
  font-size: clamp(2.75rem, 4.35vw, 5.75rem);
  line-height: 1.02;
}

.pro8-opening__copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  font-weight: 400;
  line-height: 1.7;
}

.pro8-opening__aside {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
}

.pro8-opening__image {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pro8-opening__image img {
  width: 100%;
  height: clamp(360px, 37vw, 610px);
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.92) contrast(0.99) brightness(0.97);
}

.pro8-opening__image figcaption,
.pro8-library-wall figcaption span,
.pro8-library-wall__side figcaption,
.pro8-caption-run figcaption,
.pro8-bath-story figcaption,
.pro8-archive__item figcaption {
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.pro8-opening__image figcaption,
.pro8-library-wall__side figcaption,
.pro8-caption-run figcaption,
.pro8-bath-story figcaption {
  color: rgba(23, 23, 19, 0.58);
}

.pro8-opening__facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.pro8-opening__facts div {
  display: grid;
  grid-template-columns: minmax(80px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--caption);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
}

.pro8-opening__facts b {
  color: var(--ink);
  font-weight: 500;
}

.pro8-library-wall {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.42fr);
  gap: clamp(18px, 2.4vw, 38px);
  align-items: start;
}

.pro8-library-wall figure,
.pro8-caption-run figure,
.pro8-bath-story figure,
.pro8-archive__item {
  margin: 0;
}

.pro8-library-wall__main {
  position: relative;
  min-height: clamp(640px, 68vw, 980px);
  overflow: hidden;
  background: #15130f;
}

.pro8-library-wall__main img,
.pro8-library-wall__side img,
.pro8-caption-run img,
.pro8-bath-story img,
.pro8-archive__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.01) brightness(0.96);
}

.pro8-library-wall__main img {
  object-position: center 48%;
}

.pro8-library-wall__main::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 14, 0.02), rgba(18, 18, 14, 0.28) 52%, rgba(18, 18, 14, 0.64)),
    radial-gradient(circle at 72% 72%, rgba(18, 18, 14, 0.68), rgba(18, 18, 14, 0.1) 42%, rgba(18, 18, 14, 0) 68%),
    linear-gradient(90deg, rgba(18, 18, 14, 0.48), rgba(18, 18, 14, 0.08) 54%, rgba(18, 18, 14, 0.46));
  content: "";
  pointer-events: none;
}

.pro8-library-wall__main figcaption {
  position: absolute;
  right: clamp(24px, 4.5vw, 78px);
  bottom: clamp(24px, 4.5vw, 76px);
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(440px, 42vw);
  color: var(--paper-soft);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.pro8-library-wall__main figcaption span {
  color: rgba(250, 246, 237, 0.88);
}

.pro8-library-wall__main figcaption p {
  margin: 0;
  color: rgba(250, 246, 237, 0.96);
  font-family: var(--text);
  font-size: clamp(0.98rem, 1vw, 1.18rem);
  font-weight: 350;
  letter-spacing: 0;
  line-height: 1.65;
  text-transform: none;
}

.pro8-library-wall__side {
  display: grid;
  gap: clamp(20px, 2.4vw, 36px);
}

.pro8-library-wall__side figure {
  display: grid;
  gap: 14px;
}

.pro8-library-wall__side img {
  height: clamp(300px, 31vw, 470px);
}

.pro8-caption-run {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr) minmax(240px, 0.42fr);
  gap: clamp(14px, 1.8vw, 28px);
  align-items: start;
}

.pro8-caption-run figure {
  display: grid;
  gap: 14px;
}

.pro8-caption-run__feature {
  grid-row: span 2;
}

.pro8-caption-run__feature img {
  height: clamp(520px, 48vw, 760px);
}

.pro8-caption-run figure:not(.pro8-caption-run__feature) img {
  height: clamp(250px, 23vw, 365px);
}

.pro8-caption-run__feature figcaption {
  max-width: 560px;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(0.88rem, 0.9vw, 1rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.68;
  text-transform: none;
}

.project-abstract--pro8 {
  padding-top: clamp(70px, 7vw, 120px);
  padding-bottom: clamp(72px, 7vw, 122px);
  background: linear-gradient(180deg, var(--paper), #eee8dc);
}

.project-abstract--pro8 p {
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.82;
}

.pro8-bath-story {
  display: grid;
  gap: clamp(32px, 5vw, 78px);
  border-top: 1px solid var(--line);
}

.pro8-bath-story__head {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.34fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.pro8-bath-story__head .eyebrow {
  grid-column: 1 / -1;
}

.pro8-bath-story__head h2 {
  max-width: 820px;
  font-size: clamp(2.75rem, 4.35vw, 5.85rem);
  line-height: 1.01;
}

.pro8-bath-story__head p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  line-height: 1.68;
}

.pro8-bath-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.36fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: clamp(14px, 1.8vw, 28px);
}

.pro8-bath-story__grid figure {
  display: grid;
  gap: 14px;
}

.pro8-bath-story__wide {
  grid-row: span 2;
}

.pro8-bath-story__wide img {
  min-height: clamp(580px, 56vw, 840px);
  object-position: center 52%;
}

.pro8-bath-story__grid figure:not(.pro8-bath-story__wide) img {
  height: clamp(260px, 25vw, 410px);
}

.pro8-detail-sequence {
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.82fr);
  gap: clamp(42px, 6vw, 104px);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.pro8-detail-sequence .project-sequence__copy {
  min-width: 0;
  max-width: 560px;
}

.pro8-detail-sequence .project-sequence__copy h2 {
  max-width: 520px;
  font-size: clamp(2.45rem, 3.65vw, 4.8rem);
  line-height: 1.04;
  overflow-wrap: break-word;
}

.pro8-detail-sequence .project-sequence__copy p {
  max-width: 520px;
  font-size: clamp(0.98rem, 0.98vw, 1.08rem);
  line-height: 1.68;
}

.pro8-archive {
  display: grid;
  gap: clamp(30px, 4vw, 66px);
  border-top: 1px solid var(--line);
}

.pro8-archive__head {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.34fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.pro8-archive__head .eyebrow {
  grid-column: 1 / -1;
}

.pro8-archive__head h2 {
  max-width: 860px;
  font-size: clamp(2.75rem, 4.35vw, 5.85rem);
  line-height: 1.01;
}

.pro8-archive__head p:not(.eyebrow) {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  line-height: 1.68;
}

.pro8-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}

.pro8-archive__item {
  position: relative;
  min-height: clamp(300px, 25vw, 470px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.pro8-archive__item--wide {
  grid-column: span 2;
}

.pro8-archive__item--tall {
  grid-row: span 2;
}

.pro8-archive__item::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(23, 23, 19, 0), rgba(23, 23, 19, 0.7));
  content: "";
  pointer-events: none;
}

.pro8-archive__item img {
  transition: transform 700ms cubic-bezier(0.16, 0.74, 0.18, 1), filter 700ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.pro8-archive__item:hover img,
.pro8-archive__item:focus-within img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.035);
}

.pro8-archive__item figcaption {
  position: absolute;
  right: clamp(14px, 1.4vw, 24px);
  bottom: clamp(13px, 1.4vw, 22px);
  left: clamp(14px, 1.4vw, 24px);
  z-index: 2;
  color: var(--paper-soft);
}

@media (max-width: 980px) {
  .pro8-opening,
  .pro8-library-wall,
  .pro8-caption-run,
  .pro8-detail-sequence,
  .pro8-bath-story__head,
  .pro8-bath-story__grid,
  .pro8-archive__head,
  .pro8-archive__grid {
    grid-template-columns: 1fr;
  }

  .pro8-library-wall__main,
  .pro8-caption-run__feature,
  .pro8-bath-story__wide,
  .pro8-archive__item--wide,
  .pro8-archive__item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .pro8-library-wall__main {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .pro8-library-wall__main figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
    background: #171511;
  }

  .pro8-caption-run__feature img,
  .pro8-bath-story__wide img,
  .pro8-archive__item {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 620px) {
  .pro8-page .project-image-hero h1 {
    max-width: calc(100vw - 48px);
    font-size: clamp(2.2rem, 10vw, 3.8rem);
    line-height: 1.03;
  }

  .pro8-page .project-image-hero__content {
    grid-template-rows: auto auto auto minmax(18px, 1fr) auto;
    padding-top: 90px;
    padding-bottom: 28px;
  }

  .pro8-page .project-image-hero__kicker {
    grid-row: 1;
    width: min(100%, 310px);
    max-width: calc(100vw - 48px);
    margin-bottom: clamp(34px, 7vh, 64px);
    font-size: 0.62rem;
    line-height: 1.35;
    white-space: normal;
  }

  .pro8-page .project-image-hero h1 {
    grid-row: 2;
  }

  .pro8-page .project-image-hero__meta {
    grid-row: 3;
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    line-height: 1.35;
    white-space: normal;
  }

  .pro8-page .project-image-hero__lead {
    grid-row: 5;
    max-width: 360px;
    font-size: 0.7rem;
    line-height: 1.36;
  }

  .pro8-opening__copy h2,
  .pro8-bath-story__head h2,
  .pro8-archive__head h2,
  .pro8-detail-sequence .project-sequence__copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
    line-height: 1.02;
  }

  .pro8-library-wall__side img,
  .pro8-caption-run figure:not(.pro8-caption-run__feature) img,
  .pro8-bath-story__grid figure:not(.pro8-bath-story__wide) img,
  .pro8-archive__item {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

.pro7-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro7 img {
  object-position: center 52%;
  filter: saturate(0.82) contrast(1.02) brightness(0.8);
}

.pro7-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(20, 20, 18, 0.3), rgba(20, 20, 18, 0.06) 32%, rgba(20, 20, 18, 0.52)),
    radial-gradient(circle at 52% 48%, rgba(20, 20, 18, 0) 0 34%, rgba(20, 20, 18, 0.38) 86%);
}

.pro7-page .project-image-hero__content {
  width: min(94vw, 1260px);
  padding-top: clamp(104px, 12vh, 150px);
  padding-bottom: clamp(44px, 6vh, 74px);
}

.pro7-page .project-image-hero h1 {
  max-width: 1120px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(3rem, 5.15vw, 6.9rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: none;
  text-wrap: balance;
}

.pro7-page .project-image-hero__meta {
  margin-top: clamp(18px, 2vh, 28px);
}

.pro7-page .project-image-hero__lead {
  max-width: 860px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.48;
}

.pro7-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(320px, 0.36fr);
  gap: clamp(34px, 7vw, 118px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro7-overview__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
}

.pro7-overview__copy h2 {
  max-width: 1020px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(3.1rem, 6.1vw, 8.1rem);
  font-weight: 300;
  line-height: 0.93;
  text-wrap: balance;
}

.pro7-overview__copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
}

.pro7-overview__facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.pro7-overview__facts div {
  display: grid;
  grid-template-columns: minmax(78px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
}

.pro7-overview__facts b {
  color: var(--ink);
  font-weight: 600;
}

.pro7-kitchen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.46fr);
  gap: clamp(18px, 2.4vw, 38px);
  align-items: start;
}

.pro7-kitchen-grid figure,
.pro7-fireplace__media,
.pro7-dark-kitchen figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pro7-kitchen-grid img,
.pro7-fireplace img,
.pro7-dark-kitchen img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02) brightness(0.96);
}

.pro7-kitchen-grid__main img {
  height: clamp(560px, 48vw, 820px);
  object-position: center 50%;
}

.pro7-kitchen-grid__main figcaption {
  max-width: 520px;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(0.86rem, 0.88vw, 0.98rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.68;
}

.pro7-kitchen-grid__side {
  display: grid;
  gap: clamp(20px, 2.4vw, 36px);
}

.pro7-kitchen-grid__side img {
  height: clamp(260px, 24vw, 400px);
}

.pro7-kitchen-grid__side figcaption,
.pro7-dark-kitchen figcaption {
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pro7-fireplace {
  padding-top: clamp(34px, 5vw, 82px);
}

.pro7-fireplace__media {
  position: relative;
  overflow: hidden;
  background: #161411;
  color: var(--paper-soft);
}

.pro7-fireplace__media img {
  display: block;
  height: clamp(560px, 54vw, 860px);
  object-position: center 50%;
  filter: saturate(0.82) contrast(1.04) brightness(0.78);
}

.pro7-fireplace__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 17, 14, 0.03), rgba(18, 17, 14, 0.44)),
    linear-gradient(90deg, rgba(18, 17, 14, 0.58), rgba(18, 17, 14, 0.06) 55%, rgba(18, 17, 14, 0.46));
  content: "";
  pointer-events: none;
}

.pro7-fireplace__media figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 94px);
  bottom: clamp(24px, 5vw, 86px);
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(440px, 40vw);
}

.pro7-fireplace__media span {
  color: rgba(250, 246, 237, 0.72);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro7-fireplace__media p {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--text);
  font-size: clamp(1rem, 1.08vw, 1.28rem);
  font-weight: 300;
  line-height: 1.62;
}

.project-abstract--pro7 {
  padding-top: clamp(70px, 7vw, 120px);
  padding-bottom: clamp(72px, 7vw, 122px);
}

.project-abstract--pro7 p {
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.82;
}

.pro7-flow {
  border-top: 1px solid var(--line);
}

.pro7-flow .project-sequence__copy h2,
.pro7-dark-kitchen__copy h2 {
  font-family: "Euclid Flex", var(--display);
  font-weight: 300;
  letter-spacing: 0;
}

.pro7-flow .project-story-card img,
.pro7-archive .project-visual-archive__item img {
  filter: saturate(0.86) contrast(1.02) brightness(0.95);
}

.pro7-dark-kitchen {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.78fr);
  gap: clamp(34px, 6vw, 98px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro7-dark-kitchen__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro7-dark-kitchen__copy h2 {
  max-width: 620px;
  font-size: clamp(3rem, 4.7vw, 6.4rem);
  line-height: 0.96;
  text-wrap: balance;
}

.pro7-dark-kitchen__copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1vw, 1.12rem);
  line-height: 1.68;
}

.pro7-dark-kitchen__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.pro7-dark-kitchen__images img {
  height: clamp(520px, 48vw, 780px);
  object-position: center 50%;
}

@media (max-width: 980px) {
  .pro7-overview,
  .pro7-kitchen-grid,
  .pro7-dark-kitchen,
  .pro7-dark-kitchen__images {
    grid-template-columns: 1fr;
  }

  .pro7-kitchen-grid__main img,
  .pro7-kitchen-grid__side img,
  .pro7-dark-kitchen__images img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .pro7-overview__facts {
    max-width: 760px;
  }

  .pro7-fireplace__media figcaption {
    width: min(480px, 56vw);
  }
}

@media (max-width: 760px) {
  .pro7-page .project-image-hero__content {
    width: min(100%, calc(100vw - 32px));
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .pro7-page .project-image-hero h1 {
    width: min(100%, 260px);
    max-width: calc(100vw - 92px);
    font-size: clamp(1.72rem, 6.9vw, 2.16rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
    word-break: normal;
  }

  .pro7-page .project-image-hero__kicker,
  .pro7-page .project-image-hero__meta {
    width: min(100%, 310px);
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
  }

  .pro7-page .project-image-hero__lead {
    width: min(100%, 292px);
    max-width: calc(100vw - 72px);
    overflow-wrap: anywhere;
  }

  .pro7-overview__copy h2,
  .pro7-dark-kitchen__copy h2 {
    font-size: clamp(2.7rem, 14vw, 4.55rem);
    line-height: 0.92;
  }

  .pro7-kitchen-grid__main img,
  .pro7-kitchen-grid__side img,
  .pro7-dark-kitchen__images img {
    aspect-ratio: 4 / 5;
  }

  .pro7-fireplace__media img {
    height: auto;
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }

  .pro7-fireplace__media figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
    background: #161411;
  }
}

.pro9-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro9 img {
  object-position: center 47%;
  filter: saturate(0.82) contrast(1.04) brightness(0.8);
}

.pro9-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(18, 18, 16, 0.18), rgba(18, 18, 16, 0.05) 34%, rgba(18, 18, 16, 0.62)),
    radial-gradient(circle at 50% 46%, rgba(18, 18, 16, 0.02) 0 30%, rgba(18, 18, 16, 0.48) 88%);
}

.pro9-page .project-image-hero__content {
  width: min(94vw, 1240px);
  padding-top: clamp(106px, 13vh, 152px);
  padding-bottom: clamp(44px, 6vh, 76px);
}

.pro9-page .project-image-hero h1 {
  max-width: 1120px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(2.8rem, 4.85vw, 6.35rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: none;
  text-wrap: balance;
}

.pro9-page .project-image-hero__meta {
  margin-top: clamp(16px, 1.8vh, 26px);
}

.pro9-page .project-image-hero__lead {
  max-width: 860px;
  color: rgba(250, 246, 237, 0.98);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.48;
}

.pro9-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(320px, 0.36fr);
  gap: clamp(34px, 7vw, 118px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro9-overview__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
}

.pro9-overview__copy h2 {
  max-width: 720px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(2.35rem, 3.55vw, 5rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.pro9-overview__copy p:not(.eyebrow) {
  max-width: 710px;
  margin: 0;
  color: rgba(23, 23, 19, 0.84);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  font-weight: 300;
  line-height: 1.76;
}

.pro9-overview__facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.pro9-overview__facts div {
  display: grid;
  grid-template-columns: minmax(82px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(23, 23, 19, 0.62);
  font-family: var(--text);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
}

.pro9-overview__facts b {
  color: var(--ink);
  font-weight: 500;
}

.pro9-screen-story {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.38fr);
  gap: clamp(22px, 3vw, 52px);
  align-items: start;
}

.pro9-screen-story figure,
.pro9-bath-feature__media,
.pro9-stair-run figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pro9-screen-story img,
.pro9-bath-feature img,
.pro9-stair-run img,
.pro9-living-sequence .project-story-card img,
.pro9-archive .project-visual-archive__item img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.01) brightness(0.96);
}

.pro9-screen-story__main img {
  height: clamp(620px, 57vw, 910px);
  object-position: center 47%;
}

.pro9-screen-story__main figcaption {
  max-width: 560px;
  color: rgba(23, 23, 19, 0.68);
  font-family: var(--text);
  font-size: clamp(0.9rem, 0.92vw, 1.02rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro9-screen-story__side {
  display: grid;
  gap: clamp(20px, 2.2vw, 34px);
}

.pro9-screen-story__side img {
  height: clamp(280px, 25vw, 440px);
}

.pro9-screen-story__side figcaption,
.pro9-stair-run figcaption {
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-abstract--pro9 {
  padding-top: clamp(70px, 7vw, 120px);
  padding-bottom: clamp(72px, 7vw, 122px);
}

.project-abstract--pro9 p {
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(1.02rem, 1.04vw, 1.16rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.72;
}

.project-abstract--pro9 p::before {
  display: none;
  content: none;
}

.pro9-bath-feature {
  padding-top: clamp(26px, 5vw, 78px);
}

.pro9-bath-feature__media {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 58vw, 900px);
  background: #1b1a17;
  color: var(--paper-soft);
}

.pro9-bath-feature__media img {
  height: 100%;
  min-height: inherit;
  object-position: center 50%;
  filter: saturate(0.78) contrast(1.04) brightness(0.78);
}

.pro9-bath-feature__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 18, 15, 0.08), rgba(20, 18, 15, 0.5)),
    linear-gradient(90deg, rgba(20, 18, 15, 0.58), rgba(20, 18, 15, 0.04) 52%, rgba(20, 18, 15, 0.46));
  content: "";
  pointer-events: none;
}

.pro9-bath-feature__media figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 96px);
  bottom: clamp(24px, 5vw, 88px);
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(460px, 41vw);
}

.pro9-bath-feature__media span {
  color: rgba(250, 246, 237, 0.72);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro9-bath-feature__media p {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--text);
  font-size: clamp(1rem, 1.08vw, 1.28rem);
  font-weight: 300;
  line-height: 1.62;
}

.pro9-living-sequence {
  border-top: 1px solid var(--line);
}

.pro9-living-sequence .project-sequence__copy h2 {
  max-width: 620px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(2.25rem, 3.3vw, 4.7rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.02;
}

.pro9-stair-run {
  border-top: 1px solid var(--line);
}

.pro9-stair-run__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(260px, 0.36fr) minmax(240px, 0.32fr);
  gap: clamp(20px, 3vw, 54px);
  align-items: center;
}

.pro9-stair-run__grid img {
  height: clamp(520px, 52vw, 760px);
  object-position: center 50%;
}

.pro9-stair-run__text {
  align-self: end;
  padding: clamp(22px, 3vw, 44px) 0;
}

.pro9-stair-run__text p {
  max-width: 430px;
  margin: 0 auto;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(1rem, 1.08vw, 1.22rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro9-archive .project-visual-archive__head h2 {
  max-width: 820px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(2.35rem, 3.45vw, 4.9rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.04;
}

@media (max-width: 980px) {
  .pro9-overview,
  .pro9-screen-story,
  .pro9-stair-run__grid {
    grid-template-columns: 1fr;
  }

  .pro9-overview__facts {
    max-width: 760px;
  }

  .pro9-screen-story__main img,
  .pro9-screen-story__side img,
  .pro9-stair-run__grid img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .pro9-bath-feature__media figcaption {
    width: min(480px, 56vw);
  }

  .pro9-stair-run__text p {
    margin: 0;
  }
}

@media (max-width: 760px) {
  .pro9-page .project-image-hero__content {
    width: min(100%, calc(100vw - 32px));
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .pro9-page .project-image-hero h1 {
    width: min(100%, 304px);
    max-width: calc(100vw - 56px);
    font-size: clamp(1.68rem, 6.6vw, 2.18rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
    word-break: normal;
  }

  .pro9-page .project-image-hero__kicker,
  .pro9-page .project-image-hero__meta {
    width: min(100%, 312px);
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
  }

  .pro9-page .project-image-hero__lead {
    width: min(100%, 304px);
    max-width: calc(100vw - 66px);
    overflow-wrap: anywhere;
  }

  .pro9-overview__copy h2,
  .pro9-living-sequence .project-sequence__copy h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.6rem);
    line-height: 1;
  }

  .project-abstract--pro9 {
    grid-template-columns: 1fr;
  }

  .pro9-screen-story__main img,
  .pro9-screen-story__side img,
  .pro9-stair-run__grid img {
    aspect-ratio: 4 / 5;
  }

  .pro9-bath-feature__media {
    min-height: 0;
  }

  .pro9-bath-feature__media img {
    height: auto;
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }

  .pro9-bath-feature__media figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
    background: #1b1a17;
  }
}

.pro10-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro10 img {
  object-position: center 52%;
  filter: saturate(0.82) contrast(1.03) brightness(0.78);
}

.pro10-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(18, 17, 14, 0.24), rgba(18, 17, 14, 0.06) 34%, rgba(18, 17, 14, 0.62)),
    radial-gradient(circle at 52% 50%, rgba(18, 17, 14, 0.02) 0 32%, rgba(18, 17, 14, 0.44) 88%);
}

.pro10-page .project-image-hero__content {
  width: min(94vw, 1240px);
  padding-top: clamp(106px, 13vh, 152px);
  padding-bottom: clamp(44px, 6vh, 76px);
}

.pro10-page .project-image-hero h1 {
  max-width: 1060px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(2.85rem, 4.9vw, 6.55rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: none;
  text-wrap: balance;
}

.pro10-page .project-image-hero__meta {
  margin-top: clamp(16px, 1.8vh, 26px);
}

.pro10-page .project-image-hero__lead {
  max-width: 850px;
  color: rgba(250, 246, 237, 0.98);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.48;
}

.pro10-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(320px, 0.36fr);
  gap: clamp(34px, 7vw, 118px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro10-overview__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
}

.pro10-overview__copy h2,
.pro10-wetroom-feature__copy h2,
.pro10-detail-sequence .project-sequence__copy h2,
.pro10-archive .project-visual-archive__head h2 {
  font-family: "Euclid Flex", var(--display);
  font-weight: 300;
  letter-spacing: 0;
  text-wrap: balance;
}

.pro10-overview__copy h2 {
  max-width: 1040px;
  font-size: clamp(3.05rem, 5.75vw, 7.7rem);
  line-height: 0.95;
}

.pro10-overview__copy p:not(.eyebrow) {
  max-width: 710px;
  margin: 0;
  color: rgba(23, 23, 19, 0.82);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.13rem);
  font-weight: 300;
  line-height: 1.78;
}

.pro10-overview__facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.pro10-overview__facts div {
  display: grid;
  grid-template-columns: minmax(82px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(23, 23, 19, 0.62);
  font-family: var(--text);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
}

.pro10-overview__facts b {
  color: var(--ink);
  font-weight: 500;
}

.pro10-kitchen-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.38fr);
  gap: clamp(22px, 3vw, 52px);
  align-items: start;
}

.pro10-kitchen-feature figure,
.pro10-wetroom-feature figure,
.pro10-sauna-run figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pro10-kitchen-feature img,
.pro10-wetroom-feature img,
.pro10-sauna-run img,
.pro10-detail-sequence .project-story-card img,
.pro10-archive .project-visual-archive__item img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.02) brightness(0.96);
}

.pro10-kitchen-feature__main {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 56vw, 900px);
  background: #17130f;
}

.pro10-kitchen-feature__main img {
  height: 100%;
  min-height: inherit;
  object-position: center 52%;
  filter: saturate(0.82) contrast(1.04) brightness(0.78);
}

.pro10-kitchen-feature__main::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 16, 13, 0.02), rgba(18, 16, 13, 0.48)),
    linear-gradient(90deg, rgba(18, 16, 13, 0.58), rgba(18, 16, 13, 0.04) 52%, rgba(18, 16, 13, 0.44));
  content: "";
  pointer-events: none;
}

.pro10-kitchen-feature__main figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 96px);
  bottom: clamp(24px, 5vw, 88px);
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(460px, 41vw);
  color: var(--paper-soft);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.pro10-kitchen-feature__main span,
.pro10-wetroom-feature__media span {
  color: rgba(250, 246, 237, 0.84);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro10-kitchen-feature__main p,
.pro10-wetroom-feature__media p {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--text);
  font-size: clamp(1rem, 1.08vw, 1.25rem);
  font-weight: 300;
  line-height: 1.62;
}

.pro10-kitchen-feature__side {
  display: grid;
  gap: clamp(20px, 2.2vw, 34px);
}

.pro10-kitchen-feature__side img {
  height: clamp(300px, 28vw, 460px);
  object-position: center 50%;
}

.pro10-kitchen-feature__side figcaption,
.pro10-sauna-run figcaption {
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-abstract--pro10 {
  padding-top: clamp(70px, 7vw, 120px);
  padding-bottom: clamp(72px, 7vw, 122px);
}

.project-abstract--pro10 p {
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8;
}

.project-abstract--pro10 p::before {
  display: none;
  content: none;
}

.pro10-wetroom-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.78fr);
  gap: clamp(34px, 6vw, 98px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro10-wetroom-feature__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro10-wetroom-feature__copy h2 {
  max-width: 620px;
  font-size: clamp(3rem, 4.65vw, 6.35rem);
  line-height: 0.96;
}

.pro10-wetroom-feature__copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(23, 23, 19, 0.66);
  font-family: var(--text);
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro10-wetroom-feature__media {
  position: relative;
  overflow: hidden;
  min-height: clamp(580px, 52vw, 820px);
  background: #1a1916;
  color: var(--paper-soft);
}

.pro10-wetroom-feature__media img {
  height: 100%;
  min-height: inherit;
  object-position: center 50%;
  filter: saturate(0.78) contrast(1.04) brightness(0.76);
}

.pro10-wetroom-feature__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 17, 14, 0.08), rgba(18, 17, 14, 0.52)),
    linear-gradient(90deg, rgba(18, 17, 14, 0.52), rgba(18, 17, 14, 0.06) 55%, rgba(18, 17, 14, 0.5));
  content: "";
  pointer-events: none;
}

.pro10-wetroom-feature__media figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 96px);
  bottom: clamp(24px, 5vw, 88px);
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(450px, 41vw);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.pro10-sauna-run {
  border-top: 1px solid var(--line);
}

.pro10-sauna-run__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(260px, 0.36fr) minmax(240px, 0.32fr);
  gap: clamp(20px, 3vw, 54px);
  align-items: center;
}

.pro10-sauna-run__grid img {
  height: clamp(520px, 52vw, 760px);
  object-position: center 50%;
}

.pro10-sauna-run__text {
  align-self: end;
  padding: clamp(22px, 3vw, 44px) 0;
}

.pro10-sauna-run__text p {
  max-width: 430px;
  margin: 0 auto;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(1rem, 1.08vw, 1.22rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro10-detail-sequence {
  border-top: 1px solid var(--line);
}

.pro10-archive .project-visual-archive__head h2 {
  max-width: 980px;
}

@media (max-width: 980px) {
  .pro10-overview,
  .pro10-kitchen-feature,
  .pro10-wetroom-feature,
  .pro10-sauna-run__grid {
    grid-template-columns: 1fr;
  }

  .pro10-overview__facts {
    max-width: 760px;
  }

  .pro10-kitchen-feature__main,
  .pro10-wetroom-feature__media {
    min-height: 0;
  }

  .pro10-kitchen-feature__main img,
  .pro10-kitchen-feature__side img,
  .pro10-wetroom-feature__media img,
  .pro10-sauna-run__grid img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .pro10-kitchen-feature__main figcaption,
  .pro10-wetroom-feature__media figcaption {
    width: min(480px, 56vw);
  }

  .pro10-sauna-run__text p {
    margin: 0;
  }
}

@media (max-width: 760px) {
  .pro10-page .project-image-hero__content {
    width: min(100%, calc(100vw - 32px));
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .pro10-page .project-image-hero h1 {
    width: min(100%, 316px);
    max-width: calc(100vw - 54px);
    font-size: clamp(1.64rem, 6.45vw, 2.16rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
    word-break: normal;
  }

  .pro10-page .project-image-hero__kicker,
  .pro10-page .project-image-hero__meta {
    width: min(100%, 316px);
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
  }

  .pro10-page .project-image-hero__lead {
    width: min(100%, 310px);
    max-width: calc(100vw - 66px);
    overflow-wrap: anywhere;
  }

  .pro10-overview__copy h2,
  .pro10-wetroom-feature__copy h2,
  .pro10-detail-sequence .project-sequence__copy h2 {
    font-size: clamp(2.55rem, 13.2vw, 4.4rem);
    line-height: 0.94;
  }

  .project-abstract--pro10 {
    grid-template-columns: 1fr;
  }

  .pro10-kitchen-feature__main img,
  .pro10-kitchen-feature__side img,
  .pro10-wetroom-feature__media img,
  .pro10-sauna-run__grid img {
    aspect-ratio: 4 / 5;
  }

  .pro10-kitchen-feature__main figcaption,
  .pro10-wetroom-feature__media figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
    background: #17130f;
  }
}

.pro12-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro12 img {
  object-position: center 48%;
  filter: saturate(0.82) contrast(1.04) brightness(0.72);
}

.pro12-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(17, 15, 12, 0.34), rgba(17, 15, 12, 0.06) 34%, rgba(17, 15, 12, 0.68)),
    radial-gradient(circle at 50% 50%, rgba(17, 15, 12, 0.02) 0 30%, rgba(17, 15, 12, 0.48) 86%);
}

.pro12-page .project-image-hero__content {
  width: min(94vw, 1240px);
  padding-top: clamp(106px, 13vh, 152px);
  padding-bottom: clamp(44px, 6vh, 76px);
}

.pro12-page .project-image-hero h1 {
  max-width: 1120px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(2.75rem, 4.7vw, 6.25rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: none;
  text-wrap: balance;
}

.pro12-page .project-image-hero__meta {
  margin-top: clamp(16px, 1.8vh, 26px);
}

.pro12-page .project-image-hero__lead {
  max-width: 820px;
  color: rgba(250, 246, 237, 0.98);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.48;
}

.pro12-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro12-overview__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
}

.pro12-overview__copy h2,
.pro12-spa-feature__copy h2,
.pro12-detail-sequence .project-sequence__copy h2,
.pro12-archive .project-visual-archive__head h2 {
  font-family: "Euclid Flex", var(--display);
  font-weight: 300;
  letter-spacing: 0;
  text-wrap: balance;
}

.pro12-overview__copy h2 {
  max-width: 1040px;
  font-size: clamp(3rem, 5.55vw, 7.35rem);
  line-height: 0.96;
}

.pro12-overview__copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(23, 23, 19, 0.82);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.13rem);
  font-weight: 300;
  line-height: 1.78;
}

.pro12-overview__facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.pro12-overview__facts div {
  display: grid;
  grid-template-columns: minmax(82px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(23, 23, 19, 0.62);
  font-family: var(--text);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
}

.pro12-overview__facts b {
  color: var(--ink);
  font-weight: 500;
}

.pro12-material-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.38fr);
  gap: clamp(22px, 3vw, 52px);
  align-items: start;
}

.pro12-material-feature figure,
.pro12-spa-feature figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pro12-material-feature img,
.pro12-spa-feature img,
.pro12-detail-sequence .project-story-card img,
.pro12-archive .project-visual-archive__item img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.02) brightness(0.96);
}

.pro12-material-feature__main {
  position: relative;
  overflow: hidden;
  min-height: clamp(640px, 58vw, 940px);
  background: #17130f;
}

.pro12-material-feature__main img {
  height: 100%;
  min-height: inherit;
  object-position: center 50%;
  filter: saturate(0.82) contrast(1.05) brightness(0.72);
}

.pro12-material-feature__main::after,
.pro12-spa-feature__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 16, 13, 0.04), rgba(18, 16, 13, 0.5)),
    linear-gradient(90deg, rgba(18, 16, 13, 0.58), rgba(18, 16, 13, 0.06) 52%, rgba(18, 16, 13, 0.48));
  content: "";
  pointer-events: none;
}

.pro12-material-feature__main figcaption,
.pro12-spa-feature__media figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 96px);
  bottom: clamp(24px, 5vw, 88px);
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(460px, 41vw);
  color: var(--paper-soft);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.pro12-material-feature__main span,
.pro12-spa-feature__media span {
  color: rgba(250, 246, 237, 0.84);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro12-material-feature__main p,
.pro12-spa-feature__media p {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--text);
  font-size: clamp(1rem, 1.08vw, 1.25rem);
  font-weight: 300;
  line-height: 1.62;
}

.pro12-material-feature__side {
  display: grid;
  gap: clamp(20px, 2.2vw, 34px);
}

.pro12-material-feature__side img {
  height: clamp(300px, 28vw, 460px);
  object-position: center 50%;
}

.pro12-material-feature__side figcaption {
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-abstract--pro12 {
  padding-top: clamp(70px, 7vw, 120px);
  padding-bottom: clamp(72px, 7vw, 122px);
}

.project-abstract--pro12 p {
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8;
}

.project-abstract--pro12 p::before {
  display: none;
  content: none;
}

.pro12-spa-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.78fr);
  gap: clamp(34px, 6vw, 98px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro12-spa-feature__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro12-spa-feature__copy h2 {
  max-width: 640px;
  font-size: clamp(2.9rem, 4.55vw, 6.1rem);
  line-height: 0.98;
}

.pro12-spa-feature__copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(23, 23, 19, 0.66);
  font-family: var(--text);
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro12-spa-feature__media {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 58vw, 900px);
  background: #16130f;
  color: var(--paper-soft);
}

.pro12-spa-feature__media img {
  height: 100%;
  min-height: inherit;
  object-position: center 52%;
  filter: saturate(0.8) contrast(1.04) brightness(0.76);
}

.pro12-detail-sequence {
  border-top: 1px solid var(--line);
}

.pro12-detail-sequence .project-sequence__copy h2 {
  font-size: clamp(2.75rem, 4.25vw, 5.75rem);
  line-height: 1.02;
}

.pro12-archive .project-visual-archive__head h2 {
  max-width: 980px;
}

@media (max-width: 980px) {
  .pro12-overview,
  .pro12-material-feature,
  .pro12-spa-feature {
    grid-template-columns: 1fr;
  }

  .pro12-overview__facts {
    max-width: 760px;
  }

  .pro12-material-feature__main,
  .pro12-spa-feature__media {
    min-height: 0;
  }

  .pro12-material-feature__main img,
  .pro12-material-feature__side img,
  .pro12-spa-feature__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .pro12-material-feature__main figcaption,
  .pro12-spa-feature__media figcaption {
    width: min(480px, 56vw);
  }
}

@media (max-width: 760px) {
  .pro12-page .project-image-hero__content {
    width: min(100%, calc(100vw - 32px));
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .pro12-page .project-image-hero h1 {
    width: min(100%, 318px);
    max-width: calc(100vw - 54px);
    font-size: clamp(1.64rem, 6.4vw, 2.12rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
    word-break: normal;
  }

  .pro12-page .project-image-hero__kicker,
  .pro12-page .project-image-hero__meta {
    width: min(100%, 318px);
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
  }

  .pro12-page .project-image-hero__lead {
    width: min(100%, 312px);
    max-width: calc(100vw - 66px);
    overflow-wrap: anywhere;
  }

  .pro12-overview__copy h2,
  .pro12-spa-feature__copy h2,
  .pro12-detail-sequence .project-sequence__copy h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: 1.02;
  }

  .project-abstract--pro12 {
    grid-template-columns: 1fr;
  }

  .pro12-material-feature__main img,
  .pro12-material-feature__side img,
  .pro12-spa-feature__media img {
    aspect-ratio: 4 / 5;
  }

  .pro12-material-feature__main figcaption,
  .pro12-spa-feature__media figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
    background: #17130f;
  }
}

.pro11-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro11 img {
  object-position: center 48%;
  filter: saturate(0.86) contrast(1.05) brightness(0.74);
}

.pro11-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(18, 16, 13, 0.18), rgba(18, 16, 13, 0.06) 34%, rgba(18, 16, 13, 0.66)),
    radial-gradient(circle at 52% 46%, rgba(18, 16, 13, 0.02) 0 30%, rgba(18, 16, 13, 0.52) 88%);
}

.pro11-page .project-image-hero__content {
  width: min(94vw, 1220px);
  padding-top: clamp(106px, 13vh, 152px);
  padding-bottom: clamp(44px, 6vh, 76px);
}

.pro11-page .project-image-hero h1 {
  max-width: 1120px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(2.65rem, 4.6vw, 6.05rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
  text-wrap: balance;
}

.pro11-page .project-image-hero__meta {
  margin-top: clamp(16px, 1.8vh, 26px);
}

.pro11-page .project-image-hero__lead {
  max-width: 850px;
  color: rgba(250, 246, 237, 0.98);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.48;
}

.pro11-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: clamp(34px, 7vw, 116px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro11-overview__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
}

.pro11-overview__copy h2,
.pro11-storage-feature__copy h2,
.pro11-private-sequence .project-sequence__copy h2,
.pro11-archive .project-visual-archive__head h2 {
  font-family: "Euclid Flex", var(--display);
  font-weight: 300;
  letter-spacing: 0;
  text-wrap: balance;
}

.pro11-overview__copy h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 3.5vw, 4.85rem);
  line-height: 1.02;
}

.pro11-overview__copy p:not(.eyebrow) {
  max-width: 710px;
  margin: 0;
  color: rgba(23, 23, 19, 0.82);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.13rem);
  font-weight: 300;
  line-height: 1.76;
}

.pro11-overview__facts {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.pro11-overview__facts div {
  display: grid;
  grid-template-columns: minmax(92px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(23, 23, 19, 0.62);
  font-family: var(--text);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
}

.pro11-overview__facts b {
  color: var(--ink);
  font-weight: 500;
}

.pro11-kitchen-story {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.38fr);
  gap: clamp(22px, 3vw, 52px);
  align-items: start;
}

.pro11-kitchen-story figure,
.pro11-storage-feature figure,
.pro11-bath-feature__media {
  display: grid;
  gap: 14px;
  margin: 0;
}

.pro11-kitchen-story img,
.pro11-storage-feature img,
.pro11-bath-feature img,
.pro11-private-sequence .project-story-card img,
.pro11-archive .project-visual-archive__item img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02) brightness(0.95);
}

.pro11-kitchen-story__main {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 58vw, 880px);
  background: #17130f;
  color: var(--paper-soft);
}

.pro11-kitchen-story__main img {
  height: 100%;
  min-height: inherit;
  object-position: center 50%;
  filter: saturate(0.84) contrast(1.04) brightness(0.78);
}

.pro11-kitchen-story__main::after,
.pro11-bath-feature__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 14, 11, 0.06), rgba(17, 14, 11, 0.48)),
    linear-gradient(90deg, rgba(17, 14, 11, 0.5), rgba(17, 14, 11, 0.04) 56%, rgba(17, 14, 11, 0.42));
  content: "";
  pointer-events: none;
}

.pro11-kitchen-story__main figcaption,
.pro11-bath-feature__media figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 96px);
  bottom: clamp(24px, 5vw, 88px);
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(460px, 41vw);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.pro11-kitchen-story__main span,
.pro11-bath-feature__media span {
  color: rgba(250, 246, 237, 0.72);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro11-kitchen-story__main p,
.pro11-bath-feature__media p {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--text);
  font-size: clamp(1rem, 1.08vw, 1.25rem);
  font-weight: 300;
  line-height: 1.62;
}

.pro11-kitchen-story__side {
  display: grid;
  gap: clamp(20px, 2.2vw, 34px);
}

.pro11-kitchen-story__side img {
  height: clamp(300px, 28vw, 460px);
  object-position: center 50%;
}

.pro11-kitchen-story__side figcaption {
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-abstract--pro11 {
  padding-top: clamp(70px, 7vw, 120px);
  padding-bottom: clamp(72px, 7vw, 122px);
}

.project-abstract--pro11 p {
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8;
}

.project-abstract--pro11 p::before {
  display: none;
  content: none;
}

.pro11-storage-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.78fr);
  gap: clamp(34px, 6vw, 98px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro11-storage-feature__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro11-storage-feature__copy h2,
.pro11-private-sequence .project-sequence__copy h2,
.pro11-archive .project-visual-archive__head h2 {
  font-size: clamp(2.25rem, 3.35vw, 4.75rem);
  line-height: 1.03;
}

.pro11-storage-feature__copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(23, 23, 19, 0.66);
  font-family: var(--text);
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro11-storage-feature__media img {
  height: clamp(540px, 50vw, 780px);
  object-position: center 50%;
}

.pro11-storage-feature__media figcaption {
  max-width: 520px;
  color: rgba(23, 23, 19, 0.66);
  font-family: var(--text);
  font-size: clamp(0.9rem, 0.92vw, 1.02rem);
  font-weight: 300;
  line-height: 1.72;
}

.pro11-storage-feature__media span {
  display: block;
  margin-bottom: 10px;
  color: rgba(23, 23, 19, 0.54);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pro11-bath-feature {
  padding-top: clamp(30px, 5vw, 82px);
}

.pro11-bath-feature__media {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 56vw, 860px);
  background: #1b1611;
  color: var(--paper-soft);
}

.pro11-bath-feature__media img {
  height: 100%;
  min-height: inherit;
  object-position: center 50%;
  filter: saturate(0.78) contrast(1.04) brightness(0.76);
}

.pro11-private-sequence {
  border-top: 1px solid var(--line);
}

.pro11-archive .project-visual-archive__head h2 {
  max-width: 960px;
}

@media (max-width: 980px) {
  .pro11-overview,
  .pro11-kitchen-story,
  .pro11-storage-feature {
    grid-template-columns: 1fr;
  }

  .pro11-overview__facts {
    max-width: 760px;
  }

  .pro11-kitchen-story__main,
  .pro11-bath-feature__media {
    min-height: 0;
  }

  .pro11-kitchen-story__main img,
  .pro11-kitchen-story__side img,
  .pro11-storage-feature__media img,
  .pro11-bath-feature__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .pro11-kitchen-story__main figcaption,
  .pro11-bath-feature__media figcaption {
    width: min(480px, 56vw);
  }
}

@media (max-width: 760px) {
  .pro11-page .project-image-hero__content {
    width: min(100%, calc(100vw - 32px));
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .pro11-page .project-image-hero h1 {
    width: min(100%, 318px);
    max-width: calc(100vw - 54px);
    font-size: clamp(1.58rem, 6.15vw, 2.08rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
    word-break: normal;
  }

  .pro11-page .project-image-hero__kicker,
  .pro11-page .project-image-hero__meta {
    width: min(100%, 316px);
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
  }

  .pro11-page .project-image-hero__lead {
    width: min(100%, 312px);
    max-width: calc(100vw - 66px);
    overflow-wrap: anywhere;
  }

  .pro11-overview__copy h2,
  .pro11-storage-feature__copy h2,
  .pro11-private-sequence .project-sequence__copy h2,
  .pro11-archive .project-visual-archive__head h2 {
    font-size: clamp(2.2rem, 10.4vw, 3.55rem);
    line-height: 1;
  }

  .project-abstract--pro11 {
    grid-template-columns: 1fr;
  }

  .pro11-kitchen-story__main img,
  .pro11-kitchen-story__side img,
  .pro11-storage-feature__media img,
  .pro11-bath-feature__media img {
    aspect-ratio: 4 / 5;
  }

  .pro11-kitchen-story__main figcaption,
  .pro11-bath-feature__media figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
    background: #17130f;
  }
}

.pro13-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro13 img {
  object-position: center 51%;
  filter: saturate(0.9) contrast(1.04) brightness(0.78);
}

.pro13-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(12, 15, 14, 0.16), rgba(12, 15, 14, 0.02) 30%, rgba(12, 15, 14, 0.76)),
    radial-gradient(circle at 50% 52%, rgba(12, 15, 14, 0.02) 0 28%, rgba(12, 15, 14, 0.54) 92%);
}

.pro13-page .project-image-hero__content {
  width: min(94vw, 1240px);
  grid-template-rows: minmax(136px, 0.31fr) auto minmax(64px, 0.17fr) auto auto minmax(160px, 1fr) auto;
  padding-top: clamp(108px, 13vh, 152px);
  padding-bottom: clamp(42px, 6vh, 72px);
}

.pro13-page .project-image-hero h1 {
  max-width: 1060px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(2.8rem, 4.65vw, 6.15rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: none;
  text-wrap: balance;
}

.pro13-page .project-image-hero__meta {
  margin-top: clamp(16px, 1.8vh, 24px);
}

.pro13-page .project-image-hero__lead {
  max-width: 820px;
  color: rgba(250, 246, 237, 0.98);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.48;
}

.pro13-page figure {
  margin: 0;
}

.pro13-landscape-note {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 0.42fr);
  gap: clamp(38px, 7vw, 124px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro13-landscape-note__copy {
  display: grid;
  gap: clamp(18px, 2.1vw, 32px);
}

.pro13-landscape-note__copy h2,
.pro13-light-volume__copy h2,
.pro13-stair-chapter__copy h2,
.pro13-room-sequence .project-sequence__copy h2,
.pro13-archive .project-visual-archive__head h2 {
  font-family: "Euclid Flex", var(--display);
  font-weight: 300;
  letter-spacing: 0;
  text-wrap: balance;
}

.pro13-landscape-note__copy h2 {
  max-width: 850px;
  font-size: clamp(2.45rem, 4.05vw, 5.45rem);
  line-height: 1.02;
}

.pro13-landscape-note__copy p:not(.eyebrow),
.pro13-light-volume__copy p:not(.eyebrow),
.pro13-stair-chapter__copy p:not(.eyebrow),
.pro13-room-sequence .project-sequence__copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 300;
  line-height: 1.76;
}

.pro13-landscape-note__ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.pro13-landscape-note__ledger div {
  display: grid;
  gap: 12px;
  padding: 22px clamp(16px, 2.2vw, 34px) 24px 0;
  border-bottom: 1px solid var(--line);
}

.pro13-landscape-note__ledger span {
  color: rgba(23, 23, 19, 0.42);
  font-family: var(--caption);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.17em;
}

.pro13-landscape-note__ledger b {
  color: var(--ink);
  font-family: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.pro13-landscape-note__ledger p {
  margin: 0;
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--text);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.58;
}

.pro13-exterior-chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(260px, 0.32fr);
  gap: clamp(24px, 3vw, 54px);
  align-items: stretch;
}

.pro13-exterior-chapter__wide,
.pro13-light-volume__main,
.pro13-gable-room__wide,
.pro13-site-panorama figure {
  position: relative;
  overflow: hidden;
  background: #17130f;
  color: var(--paper-soft);
}

.pro13-exterior-chapter img,
.pro13-light-volume img,
.pro13-gable-room img,
.pro13-stair-chapter img,
.pro13-site-panorama img,
.pro13-room-sequence .project-story-card img,
.pro13-archive .project-visual-archive__item img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.96);
}

.pro13-exterior-chapter__wide img {
  height: 100%;
  min-height: clamp(560px, 52vw, 860px);
  object-position: center 48%;
  filter: saturate(0.88) contrast(1.04) brightness(0.76);
}

.pro13-exterior-chapter__wide::after,
.pro13-light-volume__main::after,
.pro13-gable-room__wide::after,
.pro13-site-panorama figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 14, 11, 0.02), rgba(15, 14, 11, 0.48)),
    linear-gradient(90deg, rgba(15, 14, 11, 0.54), rgba(15, 14, 11, 0.04) 56%, rgba(15, 14, 11, 0.34));
  content: "";
  pointer-events: none;
}

.pro13-exterior-chapter__wide figcaption,
.pro13-light-volume__main figcaption,
.pro13-gable-room__wide figcaption,
.pro13-site-panorama figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 92px);
  bottom: clamp(24px, 5vw, 84px);
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(470px, 42vw);
  color: var(--paper-soft);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.pro13-exterior-chapter__wide span,
.pro13-light-volume__main span,
.pro13-gable-room__wide span,
.pro13-site-panorama span {
  color: rgba(250, 246, 237, 0.76);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro13-exterior-chapter__wide p,
.pro13-light-volume__main p,
.pro13-gable-room__wide p,
.pro13-site-panorama p {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--text);
  font-size: clamp(0.98rem, 1.04vw, 1.18rem);
  font-weight: 300;
  line-height: 1.66;
}

.pro13-exterior-chapter__stack {
  display: grid;
  gap: clamp(20px, 2.2vw, 34px);
}

.pro13-exterior-chapter__stack figure {
  display: grid;
  gap: 14px;
}

.pro13-exterior-chapter__stack img {
  height: clamp(250px, 24vw, 390px);
  object-position: center 52%;
}

.pro13-exterior-chapter__stack figcaption,
.pro13-gable-room__tall figcaption,
.pro13-stair-chapter figcaption {
  color: rgba(23, 23, 19, 0.56);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-abstract--pro13 {
  padding-top: clamp(70px, 7vw, 122px);
  padding-bottom: clamp(72px, 7vw, 124px);
}

.project-abstract--pro13 p {
  color: rgba(23, 23, 19, 0.68);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.13rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8;
}

.project-abstract--pro13 p::before {
  display: none;
  content: none;
}

.pro13-light-volume {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.36fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro13-light-volume__main img {
  height: clamp(580px, 55vw, 860px);
  object-position: center 50%;
  filter: saturate(0.86) contrast(1.03) brightness(0.78);
}

.pro13-light-volume__copy {
  display: grid;
  gap: clamp(18px, 2vw, 32px);
  padding-bottom: clamp(6px, 2vw, 28px);
}

.pro13-light-volume__copy h2 {
  max-width: 620px;
  font-size: clamp(2.25rem, 3.55vw, 4.85rem);
  line-height: 1.04;
}

.pro13-gable-room {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.78fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: end;
}

.pro13-gable-room__tall {
  display: grid;
  gap: 14px;
}

.pro13-gable-room__tall img {
  height: clamp(560px, 56vw, 860px);
  object-position: center 50%;
}

.pro13-gable-room__wide img {
  height: clamp(520px, 50vw, 760px);
  object-position: center 52%;
  filter: saturate(0.86) contrast(1.03) brightness(0.78);
}

.pro13-stair-chapter {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.7fr);
  gap: clamp(36px, 6vw, 108px);
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pro13-stair-chapter__copy {
  display: grid;
  gap: clamp(18px, 2vw, 32px);
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro13-stair-chapter__copy h2 {
  max-width: 560px;
  font-size: clamp(2.2rem, 3.35vw, 4.55rem);
  line-height: 1.04;
}

.pro13-stair-chapter__images {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  gap: clamp(20px, 2.4vw, 40px);
  align-items: end;
}

.pro13-stair-chapter__images figure {
  display: grid;
  gap: 14px;
}

.pro13-stair-chapter__images img {
  height: clamp(520px, 50vw, 800px);
  object-position: center 50%;
}

.pro13-stair-chapter__images figure:last-child img {
  height: clamp(420px, 40vw, 650px);
}

.pro13-site-panorama {
  padding-top: clamp(32px, 5vw, 82px);
}

.pro13-site-panorama img {
  height: clamp(520px, 48vw, 760px);
  object-position: center 50%;
  filter: saturate(0.9) contrast(1.04) brightness(0.78);
}

.pro13-room-sequence {
  border-top: 1px solid var(--line);
}

.pro13-room-sequence .project-sequence__copy h2,
.pro13-archive .project-visual-archive__head h2 {
  font-size: clamp(2.25rem, 3.35vw, 4.75rem);
  line-height: 1.04;
}

.pro13-archive .project-visual-archive__head h2 {
  max-width: 920px;
}

@media (max-width: 980px) {
  .pro13-landscape-note,
  .pro13-exterior-chapter,
  .pro13-light-volume,
  .pro13-gable-room,
  .pro13-stair-chapter {
    grid-template-columns: 1fr;
  }

  .pro13-landscape-note__ledger {
    max-width: 760px;
  }

  .pro13-exterior-chapter__wide img,
  .pro13-light-volume__main img,
  .pro13-gable-room__wide img,
  .pro13-gable-room__tall img,
  .pro13-stair-chapter__images img,
  .pro13-stair-chapter__images figure:last-child img,
  .pro13-site-panorama img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .pro13-exterior-chapter__wide figcaption,
  .pro13-light-volume__main figcaption,
  .pro13-gable-room__wide figcaption,
  .pro13-site-panorama figcaption {
    width: min(500px, 58vw);
  }
}

@media (max-width: 760px) {
  .pro13-page .project-image-hero__content {
    width: min(100%, calc(100vw - 32px));
    grid-template-rows: minmax(92px, 0.25fr) auto minmax(44px, 0.16fr) auto auto minmax(62px, 0.8fr) auto;
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .project-image-hero__media--pro13 img {
    object-position: center 50%;
  }

  .pro13-page .project-image-hero h1 {
    width: min(100%, 322px);
    max-width: calc(100vw - 54px);
    font-size: clamp(1.58rem, 6.2vw, 2.08rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
    word-break: normal;
  }

  .pro13-page .project-image-hero__kicker,
  .pro13-page .project-image-hero__meta {
    width: min(100%, 322px);
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
  }

  .pro13-page .project-image-hero__lead {
    width: min(100%, 314px);
    max-width: calc(100vw - 66px);
    overflow-wrap: anywhere;
  }

  .pro13-landscape-note__copy h2,
  .pro13-light-volume__copy h2,
  .pro13-stair-chapter__copy h2,
  .pro13-room-sequence .project-sequence__copy h2,
  .pro13-archive .project-visual-archive__head h2 {
    font-size: clamp(2.15rem, 10.2vw, 3.5rem);
    line-height: 1;
  }

  .pro13-landscape-note__ledger,
  .project-abstract--pro13,
  .pro13-stair-chapter__images {
    grid-template-columns: 1fr;
  }

  .pro13-exterior-chapter__wide img,
  .pro13-exterior-chapter__stack img,
  .pro13-light-volume__main img,
  .pro13-gable-room__wide img,
  .pro13-gable-room__tall img,
  .pro13-stair-chapter__images img,
  .pro13-site-panorama img {
    aspect-ratio: 4 / 5;
  }

  .pro13-exterior-chapter__wide figcaption,
  .pro13-light-volume__main figcaption,
  .pro13-gable-room__wide figcaption,
  .pro13-site-panorama figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
    background: #17130f;
  }
}

.pro14-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro14 img {
  object-position: center 48%;
  filter: saturate(0.9) contrast(1.03) brightness(0.76);
}

.pro14-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(17, 15, 13, 0.22), rgba(17, 15, 13, 0.03) 34%, rgba(17, 15, 13, 0.74)),
    radial-gradient(circle at 50% 50%, rgba(17, 15, 13, 0.01) 0 28%, rgba(17, 15, 13, 0.56) 92%);
}

.pro14-page .project-image-hero__content {
  width: min(94vw, 1220px);
  grid-template-rows: minmax(132px, 0.3fr) auto minmax(58px, 0.16fr) auto auto minmax(152px, 1fr) auto;
  padding-top: clamp(108px, 13vh, 152px);
  padding-bottom: clamp(42px, 6vh, 72px);
}

.pro14-page .project-image-hero h1 {
  max-width: 1060px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(2.75rem, 4.55vw, 6rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: none;
  text-wrap: balance;
}

.pro14-page .project-image-hero__meta {
  margin-top: clamp(16px, 1.8vh, 24px);
}

.pro14-page .project-image-hero__lead {
  max-width: 790px;
  color: rgba(250, 246, 237, 0.98);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.5;
}

.pro14-page figure {
  margin: 0;
}

.pro14-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 0.42fr);
  gap: clamp(38px, 7vw, 118px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro14-overview__copy {
  display: grid;
  gap: clamp(18px, 2.1vw, 32px);
}

.pro14-overview__copy h2,
.pro14-bath-view__copy h2,
.pro14-suite-run__copy h2,
.pro14-material-sequence .project-sequence__copy h2,
.pro14-archive .project-visual-archive__head h2 {
  font-family: "Euclid Flex", var(--display);
  font-weight: 300;
  letter-spacing: 0;
  text-wrap: balance;
}

.pro14-overview__copy h2 {
  max-width: 850px;
  font-size: clamp(2.45rem, 4vw, 5.35rem);
  line-height: 1.02;
}

.pro14-overview__copy p:not(.eyebrow),
.pro14-bath-view__copy p:not(.eyebrow),
.pro14-suite-run__copy p:not(.eyebrow),
.pro14-material-sequence .project-sequence__copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 300;
  line-height: 1.76;
}

.pro14-overview__facts {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-strong);
}

.pro14-overview__facts div {
  display: grid;
  gap: 12px;
  padding: 22px 0 24px;
  border-bottom: 1px solid var(--line);
}

.pro14-overview__facts b {
  color: var(--ink);
  font-family: var(--text);
  font-size: 0.96rem;
  font-weight: 500;
}

.pro14-overview__facts span {
  max-width: 560px;
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--text);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.62;
}

.pro14-vanity-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.34fr);
  gap: clamp(24px, 3.6vw, 64px);
  align-items: stretch;
}

.pro14-vanity-feature figure,
.pro14-bath-view figure,
.pro14-suite-run figure {
  overflow: hidden;
  background: #17130f;
}

.pro14-vanity-feature img,
.pro14-bath-view img,
.pro14-suite-run img,
.pro14-material-sequence .project-story-card img,
.pro14-archive .project-visual-archive__item img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02) brightness(0.96);
}

.pro14-vanity-feature__main {
  position: relative;
  color: var(--paper-soft);
}

.pro14-vanity-feature__main img {
  height: 100%;
  min-height: clamp(620px, 58vw, 920px);
  object-position: center 49%;
  filter: saturate(0.9) contrast(1.03) brightness(0.82);
}

.pro14-vanity-feature__main::after,
.pro14-bath-view__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 14, 11, 0.02), rgba(15, 14, 11, 0.48)),
    linear-gradient(90deg, rgba(15, 14, 11, 0.54), rgba(15, 14, 11, 0.06) 56%, rgba(15, 14, 11, 0.28));
  content: "";
  pointer-events: none;
}

.pro14-vanity-feature__main figcaption,
.pro14-bath-view__media figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 88px);
  bottom: clamp(24px, 5vw, 84px);
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(470px, 42vw);
  color: var(--paper-soft);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.pro14-vanity-feature__main span,
.pro14-bath-view__media span {
  color: rgba(250, 246, 237, 0.76);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro14-vanity-feature__main p,
.pro14-bath-view__media p {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--text);
  font-size: clamp(0.98rem, 1.04vw, 1.18rem);
  font-weight: 300;
  line-height: 1.66;
}

.pro14-vanity-feature__side {
  display: grid;
  gap: clamp(20px, 2.2vw, 34px);
}

.pro14-vanity-feature__side figure,
.pro14-suite-run__tall,
.pro14-suite-run__detail {
  display: grid;
  gap: 14px;
  background: transparent;
}

.pro14-vanity-feature__side img {
  height: clamp(300px, 30vw, 470px);
  object-position: center 50%;
}

.pro14-vanity-feature__side figcaption,
.pro14-suite-run figcaption {
  color: rgba(23, 23, 19, 0.56);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-abstract--pro14 {
  padding-top: clamp(70px, 7vw, 122px);
  padding-bottom: clamp(72px, 7vw, 124px);
}

.project-abstract--pro14 p {
  color: rgba(23, 23, 19, 0.68);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.13rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8;
}

.project-abstract--pro14 p::before {
  display: none;
  content: none;
}

.pro14-bath-view {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.72fr);
  gap: clamp(34px, 6vw, 104px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro14-bath-view__copy {
  display: grid;
  gap: clamp(18px, 2vw, 32px);
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro14-bath-view__copy h2 {
  max-width: 620px;
  font-size: clamp(2.25rem, 3.55vw, 4.85rem);
  line-height: 1.04;
}

.pro14-bath-view__media {
  position: relative;
  color: var(--paper-soft);
}

.pro14-bath-view__media img {
  height: clamp(620px, 58vw, 890px);
  object-position: center 50%;
  filter: saturate(0.86) contrast(1.04) brightness(0.78);
}

.pro14-suite-run {
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(300px, 0.36fr) minmax(250px, 0.32fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: end;
}

.pro14-suite-run__copy {
  display: grid;
  gap: clamp(18px, 2vw, 32px);
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro14-suite-run__copy h2 {
  max-width: 620px;
  font-size: clamp(2.15rem, 3.1vw, 4.25rem);
  line-height: 1.05;
}

.pro14-suite-run__tall img {
  height: clamp(540px, 54vw, 820px);
  object-position: center 52%;
}

.pro14-suite-run__detail img {
  height: clamp(430px, 43vw, 680px);
  object-position: center 50%;
}

.pro14-material-sequence {
  border-top: 1px solid var(--line);
}

.pro14-material-sequence .project-sequence__copy h2,
.pro14-archive .project-visual-archive__head h2 {
  font-size: clamp(2.25rem, 3.35vw, 4.75rem);
  line-height: 1.04;
}

.pro14-archive .project-visual-archive__head h2 {
  max-width: 920px;
}

@media (max-width: 980px) {
  .pro14-overview,
  .pro14-vanity-feature,
  .pro14-bath-view,
  .pro14-suite-run {
    grid-template-columns: 1fr;
  }

  .pro14-vanity-feature__main img,
  .pro14-vanity-feature__side img,
  .pro14-bath-view__media img,
  .pro14-suite-run__tall img,
  .pro14-suite-run__detail img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .pro14-vanity-feature__main figcaption,
  .pro14-bath-view__media figcaption {
    width: min(500px, 58vw);
  }
}

@media (max-width: 760px) {
  .pro14-page .project-image-hero__content {
    width: min(100%, calc(100vw - 32px));
    grid-template-rows: minmax(92px, 0.25fr) auto minmax(44px, 0.16fr) auto auto minmax(62px, 0.8fr) auto;
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .project-image-hero__media--pro14 img {
    object-position: center 50%;
  }

  .pro14-page .project-image-hero h1 {
    width: min(100%, 334px);
    max-width: calc(100vw - 54px);
    font-size: clamp(1.55rem, 6.4vw, 2.14rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
    word-break: normal;
  }

  .pro14-page .project-image-hero__kicker,
  .pro14-page .project-image-hero__meta {
    width: min(100%, 322px);
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
  }

  .pro14-page .project-image-hero__lead {
    width: min(100%, 314px);
    max-width: calc(100vw - 66px);
    overflow-wrap: anywhere;
  }

  .pro14-overview__copy h2,
  .pro14-bath-view__copy h2,
  .pro14-suite-run__copy h2,
  .pro14-material-sequence .project-sequence__copy h2,
  .pro14-archive .project-visual-archive__head h2 {
    font-size: clamp(2.1rem, 10vw, 3.45rem);
    line-height: 1;
  }

  .project-abstract--pro14 {
    grid-template-columns: 1fr;
  }

  .pro14-vanity-feature__main img,
  .pro14-vanity-feature__side img,
  .pro14-bath-view__media img,
  .pro14-suite-run__tall img,
  .pro14-suite-run__detail img {
    aspect-ratio: 4 / 5;
  }

  .pro14-vanity-feature__main figcaption,
  .pro14-bath-view__media figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
    background: #17130f;
  }
}

.pro17-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  background: #14130f;
}

.project-image-hero__media--pro17 img {
  object-position: center 50%;
  filter: saturate(0.86) contrast(1.05) brightness(0.76);
}

.pro17-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(12, 13, 14, 0.1), rgba(12, 13, 14, 0.03) 32%, rgba(12, 13, 14, 0.72)),
    radial-gradient(circle at 52% 50%, rgba(12, 13, 14, 0.02) 0 24%, rgba(12, 13, 14, 0.6) 92%);
}

.pro17-page .project-image-hero__content {
  width: min(94vw, 1220px);
  grid-template-rows: minmax(132px, 0.3fr) auto minmax(62px, 0.17fr) auto auto minmax(150px, 1fr) auto;
  padding-top: clamp(106px, 13vh, 152px);
  padding-bottom: clamp(42px, 6vh, 72px);
}

.pro17-page .project-image-hero h1 {
  max-width: 1080px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(2.65rem, 4.5vw, 5.95rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
  text-wrap: balance;
}

.pro17-title-line {
  display: inline;
}

.pro17-title-line + .pro17-title-line::before {
  content: " ";
}

.pro17-page .project-image-hero__meta {
  margin-top: clamp(16px, 1.8vh, 24px);
}

.pro17-page .project-image-hero__lead {
  max-width: 820px;
  color: rgba(250, 246, 237, 0.98);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.5;
}

.pro17-page figure {
  margin: 0;
}

.pro17-opening,
.pro17-timber-shell,
.pro17-bath-core,
.pro17-stair-spine {
  border-bottom: 1px solid var(--line);
}

.pro17-opening {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(340px, 0.44fr);
  gap: clamp(42px, 7vw, 124px);
  align-items: end;
}

.pro17-opening__copy,
.pro17-timber-shell__copy,
.pro17-bath-core__copy,
.pro17-stair-spine__copy,
.pro17-plan-slices__note {
  display: grid;
  gap: clamp(18px, 2.1vw, 32px);
}

.pro17-opening__copy h2,
.pro17-timber-shell__copy h2,
.pro17-bath-core__copy h2,
.pro17-stair-spine__copy h2,
.pro17-plan-slices__note h2,
.pro17-material-sequence .project-sequence__copy h2,
.pro17-archive .project-visual-archive__head h2 {
  font-family: "Euclid Flex", var(--display);
  font-weight: 300;
  letter-spacing: 0;
  text-wrap: balance;
}

.pro17-opening__copy h2 {
  max-width: 880px;
  font-size: clamp(2.42rem, 4.05vw, 5.35rem);
  line-height: 1.03;
}

.pro17-opening__copy p:not(.eyebrow),
.pro17-timber-shell__copy p:not(.eyebrow),
.pro17-bath-core__copy p:not(.eyebrow),
.pro17-stair-spine__copy p:not(.eyebrow),
.pro17-plan-slices__note p:not(.eyebrow),
.pro17-material-sequence .project-sequence__copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 300;
  line-height: 1.76;
}

.pro17-opening__spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.pro17-opening__spec div {
  display: grid;
  gap: 12px;
  padding: 22px clamp(16px, 2.2vw, 34px) 24px 0;
  border-bottom: 1px solid var(--line);
}

.pro17-opening__spec span {
  color: rgba(23, 23, 19, 0.42);
  font-family: var(--caption);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.17em;
}

.pro17-opening__spec b {
  color: var(--ink);
  font-family: var(--text);
  font-size: 0.94rem;
  font-weight: 500;
}

.pro17-opening__spec p {
  margin: 0;
  color: rgba(23, 23, 19, 0.58);
  font-family: var(--text);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}

.pro17-exterior-system {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.34fr);
  gap: clamp(24px, 3.6vw, 64px);
  align-items: stretch;
}

.pro17-exterior-system__hero,
.pro17-timber-shell__main,
.pro17-bath-core__main {
  position: relative;
  overflow: hidden;
  background: #17130f;
  color: var(--paper-soft);
}

.pro17-exterior-system img,
.pro17-timber-shell img,
.pro17-plan-slices img,
.pro17-bath-core img,
.pro17-stair-spine img,
.pro17-material-sequence .project-story-card img,
.pro17-archive .project-visual-archive__item img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03) brightness(0.94);
}

.pro17-exterior-system__hero img {
  height: 100%;
  min-height: clamp(620px, 58vw, 920px);
  object-position: center 50%;
  filter: saturate(0.86) contrast(1.04) brightness(0.76);
}

.pro17-exterior-system__hero::after,
.pro17-timber-shell__main::after,
.pro17-bath-core__main::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 14, 11, 0.01), rgba(15, 14, 11, 0.52)),
    linear-gradient(90deg, rgba(15, 14, 11, 0.54), rgba(15, 14, 11, 0.06) 54%, rgba(15, 14, 11, 0.24));
  content: "";
  pointer-events: none;
}

.pro17-exterior-system__hero figcaption,
.pro17-timber-shell__main figcaption,
.pro17-bath-core__main figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 92px);
  bottom: clamp(24px, 5vw, 84px);
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(480px, 42vw);
  color: var(--paper-soft);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.pro17-exterior-system__hero span,
.pro17-timber-shell__main span,
.pro17-bath-core__main span {
  color: rgba(250, 246, 237, 0.76);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro17-exterior-system__hero p,
.pro17-timber-shell__main p,
.pro17-bath-core__main p {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--text);
  font-size: clamp(0.98rem, 1.04vw, 1.18rem);
  font-weight: 300;
  line-height: 1.66;
}

.pro17-exterior-system__side,
.pro17-bath-core__details,
.pro17-stair-spine__images {
  display: grid;
  gap: clamp(20px, 2.2vw, 34px);
}

.pro17-exterior-system__side figure,
.pro17-bath-core__details figure,
.pro17-stair-spine__images figure,
.pro17-plan-slices figure {
  display: grid;
  gap: 14px;
}

.pro17-exterior-system__side img {
  height: clamp(300px, 30vw, 470px);
  object-position: center 50%;
}

.pro17-exterior-system__side figcaption,
.pro17-bath-core__details figcaption,
.pro17-stair-spine figcaption,
.pro17-plan-slices figcaption {
  color: rgba(23, 23, 19, 0.56);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-abstract--pro17 {
  padding-top: clamp(70px, 7vw, 122px);
  padding-bottom: clamp(72px, 7vw, 124px);
}

.project-abstract--pro17 p {
  color: rgba(23, 23, 19, 0.68);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.13rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8;
}

.project-abstract--pro17 p::before {
  display: none;
  content: none;
}

.pro17-timber-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.74fr);
  gap: clamp(34px, 6vw, 104px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro17-timber-shell__copy {
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro17-timber-shell__copy h2 {
  max-width: 640px;
  font-size: clamp(2.22rem, 3.55vw, 4.8rem);
  line-height: 1.04;
}

.pro17-timber-shell__main img {
  height: clamp(620px, 58vw, 900px);
  object-position: center 49%;
  filter: saturate(0.88) contrast(1.04) brightness(0.78);
}

.pro17-plan-slices {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(240px, 0.24fr) minmax(300px, 0.31fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: end;
}

.pro17-plan-slices__wide img {
  height: clamp(500px, 50vw, 760px);
  object-position: center 52%;
}

.pro17-plan-slices__tall img {
  height: clamp(560px, 56vw, 850px);
  object-position: center 52%;
}

.pro17-plan-slices__note h2 {
  max-width: 560px;
  font-size: clamp(2.1rem, 3.1vw, 4.2rem);
  line-height: 1.05;
}

.pro17-bath-core {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(290px, 0.28fr) minmax(240px, 0.24fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro17-bath-core__main img {
  height: clamp(620px, 60vw, 920px);
  object-position: center 52%;
  filter: saturate(0.86) contrast(1.04) brightness(0.78);
}

.pro17-bath-core__copy {
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro17-bath-core__copy h2 {
  max-width: 560px;
  font-size: clamp(2.08rem, 3.05vw, 4.15rem);
  line-height: 1.05;
}

.pro17-bath-core__details img {
  height: clamp(270px, 28vw, 450px);
  object-position: center 52%;
}

.pro17-stair-spine {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.72fr);
  gap: clamp(36px, 6vw, 108px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro17-stair-spine__copy {
  padding-bottom: clamp(8px, 2vw, 28px);
}

.pro17-stair-spine__copy h2 {
  max-width: 610px;
  font-size: clamp(2.2rem, 3.35vw, 4.5rem);
  line-height: 1.04;
}

.pro17-stair-spine__images {
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  align-items: end;
}

.pro17-stair-spine__images img {
  height: clamp(520px, 50vw, 790px);
  object-position: center 50%;
}

.pro17-stair-spine__images figure:last-child img {
  height: clamp(420px, 40vw, 650px);
}

.pro17-material-sequence {
  border-top: 1px solid var(--line);
}

.pro17-material-sequence .project-sequence__copy h2,
.pro17-archive .project-visual-archive__head h2 {
  font-size: clamp(2.22rem, 3.32vw, 4.65rem);
  line-height: 1.04;
}

.pro17-archive .project-visual-archive__head h2 {
  max-width: 940px;
}

@media (max-width: 1080px) {
  .pro17-opening,
  .pro17-exterior-system,
  .pro17-timber-shell,
  .pro17-plan-slices,
  .pro17-bath-core,
  .pro17-stair-spine {
    grid-template-columns: 1fr;
  }

  .pro17-opening__spec {
    max-width: 760px;
  }

  .pro17-exterior-system__hero img,
  .pro17-timber-shell__main img,
  .pro17-plan-slices__wide img,
  .pro17-plan-slices__tall img,
  .pro17-bath-core__main img,
  .pro17-bath-core__details img,
  .pro17-stair-spine__images img,
  .pro17-stair-spine__images figure:last-child img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .pro17-exterior-system__hero figcaption,
  .pro17-timber-shell__main figcaption,
  .pro17-bath-core__main figcaption {
    width: min(500px, 58vw);
  }
}

@media (max-width: 760px) {
  .pro17-page .project-image-hero {
    width: 100vw;
    max-width: 100vw;
    justify-items: stretch;
  }

  .pro17-page .project-image-hero__content {
    justify-self: stretch;
    width: 100%;
    max-width: 100vw;
    grid-template-rows: minmax(92px, 0.24fr) auto minmax(44px, 0.16fr) auto auto minmax(62px, 0.88fr) auto;
    overflow: hidden;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .project-image-hero__media--pro17 img {
    object-position: center 50%;
  }

  .pro17-page .project-image-hero h1 {
    width: min(100%, 300px);
    max-width: calc(100vw - 54px);
    font-size: clamp(1.42rem, 5.85vw, 1.86rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
    word-break: normal;
  }

  .pro17-title-line {
    display: block;
  }

  .pro17-title-line + .pro17-title-line::before {
    content: none;
  }

  .pro17-page .project-image-hero__kicker,
  .pro17-page .project-image-hero__meta {
    width: min(100%, 322px);
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
  }

  .pro17-page .project-image-hero__lead {
    width: min(100%, 314px);
    max-width: calc(100vw - 66px);
    overflow-wrap: anywhere;
  }

  .pro17-opening__copy h2,
  .pro17-timber-shell__copy h2,
  .pro17-bath-core__copy h2,
  .pro17-stair-spine__copy h2,
  .pro17-plan-slices__note h2,
  .pro17-material-sequence .project-sequence__copy h2,
  .pro17-archive .project-visual-archive__head h2 {
    font-size: clamp(2.05rem, 9.8vw, 3.4rem);
    line-height: 1;
  }

  .pro17-opening__spec,
  .project-abstract--pro17,
  .pro17-stair-spine__images {
    grid-template-columns: 1fr;
  }

  .pro17-exterior-system__hero img,
  .pro17-exterior-system__side img,
  .pro17-timber-shell__main img,
  .pro17-plan-slices__wide img,
  .pro17-plan-slices__tall img,
  .pro17-bath-core__main img,
  .pro17-bath-core__details img,
  .pro17-stair-spine__images img {
    aspect-ratio: 4 / 5;
  }

  .pro17-exterior-system__hero figcaption,
  .pro17-timber-shell__main figcaption,
  .pro17-bath-core__main figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
    background: #17130f;
  }
}

.pro16-page .project-image-hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

.project-image-hero__media--pro16 img {
  object-position: center 52%;
  filter: saturate(0.92) contrast(1.06) brightness(0.74);
}

.pro16-page .project-image-hero__shade {
  background:
    linear-gradient(180deg, rgba(10, 12, 11, 0.24), rgba(10, 12, 11, 0.02) 28%, rgba(10, 12, 11, 0.78)),
    radial-gradient(circle at 52% 48%, rgba(10, 12, 11, 0.02) 0 31%, rgba(10, 12, 11, 0.54) 90%);
}

.pro16-page .project-image-hero__content {
  width: min(94vw, 1280px);
  grid-template-rows: minmax(128px, 0.28fr) auto minmax(54px, 0.15fr) auto auto minmax(152px, 1fr) auto;
  padding-top: clamp(104px, 12vh, 146px);
  padding-bottom: clamp(42px, 6vh, 72px);
}

.pro16-page .project-image-hero h1 {
  max-width: 1040px;
  font-family: "Euclid Flex", var(--display);
  font-size: clamp(3.1rem, 5.15vw, 7rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
  text-wrap: balance;
}

.pro16-page .project-image-hero__meta {
  margin-top: clamp(16px, 1.8vh, 24px);
}

.pro16-page .project-image-hero__lead {
  max-width: 780px;
  color: rgba(250, 246, 237, 0.98);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.5;
}

.pro16-page figure {
  margin: 0;
}

.pro16-opening {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 0.42fr);
  gap: clamp(34px, 6vw, 108px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.pro16-opening__statement,
.pro16-opening__copy,
.pro16-detail-band__copy,
.pro16-interior__copy,
.pro16-technical__panel {
  display: grid;
  gap: clamp(18px, 2vw, 32px);
}

.pro16-opening__statement h2,
.pro16-color-chapter__note h2,
.pro16-process__head h2,
.pro16-detail-band__copy h2,
.pro16-interior__copy h2,
.pro16-technical__panel h2,
.pro16-room-sequence .project-sequence__copy h2,
.pro16-archive .project-visual-archive__head h2 {
  font-family: "Euclid Flex", var(--display);
  font-weight: 300;
  letter-spacing: 0;
  text-wrap: balance;
}

.pro16-opening__statement h2 {
  max-width: 930px;
  font-size: clamp(2.6rem, 4.8vw, 6.8rem);
  line-height: 1;
}

.pro16-opening__copy p,
.pro16-color-chapter__note p,
.pro16-detail-band__copy p:not(.eyebrow),
.pro16-interior__copy p:not(.eyebrow),
.pro16-room-sequence .project-sequence__copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(23, 23, 19, 0.72);
  font-family: var(--text);
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 300;
  line-height: 1.76;
}

.pro16-opening__metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(32px, 4.8vw, 72px);
  border-top: 1px solid var(--line-strong);
}

.pro16-opening__metrics div {
  display: grid;
  gap: 16px;
  padding: clamp(42px, 4vw, 72px) clamp(34px, 4vw, 72px) clamp(48px, 4.6vw, 78px);
  border-right: 1px solid var(--line);
}

.pro16-opening__metrics div:last-child {
  border-right: 0;
}

.pro16-opening__metrics span,
.pro16-process article span {
  color: rgba(23, 23, 19, 0.42);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro16-opening__metrics b,
.pro16-process h3 {
  color: var(--ink);
  font-family: var(--text);
  font-size: 1rem;
  font-weight: 500;
}

.pro16-opening__metrics p,
.pro16-process p {
  max-width: 34rem;
  margin: 0;
  color: rgba(23, 23, 19, 0.6);
  font-family: var(--text);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.62;
}

.pro16-color-chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.32fr);
  gap: clamp(34px, 6vw, 108px);
  align-items: end;
}

.pro16-color-chapter__wide,
.pro16-detail-band__image {
  position: relative;
  overflow: hidden;
  background: #17130f;
  color: var(--paper-soft);
}

.pro16-color-chapter img,
.pro16-facade-triptych img,
.pro16-detail-band img,
.pro16-interior img,
.pro16-technical img,
.pro16-room-sequence .project-story-card img,
.pro16-archive .project-visual-archive__item img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.96);
}

.pro16-color-chapter__wide img {
  height: clamp(560px, 52vw, 820px);
  object-position: center 48%;
  filter: saturate(0.84) contrast(1.05) brightness(0.74);
}

.pro16-color-chapter__wide::after,
.pro16-detail-band__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 14, 11, 0.02), rgba(15, 14, 11, 0.5)),
    linear-gradient(90deg, rgba(15, 14, 11, 0.48), rgba(15, 14, 11, 0.04) 58%, rgba(15, 14, 11, 0.28));
  content: "";
  pointer-events: none;
}

.pro16-color-chapter__wide figcaption,
.pro16-detail-band__image figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 92px);
  bottom: clamp(24px, 5vw, 84px);
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(480px, 42vw);
  color: var(--paper-soft);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.pro16-color-chapter__wide span,
.pro16-detail-band__image span {
  color: rgba(250, 246, 237, 0.76);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pro16-color-chapter__wide p,
.pro16-detail-band__image p {
  margin: 0;
  color: var(--paper-soft);
  font-family: var(--text);
  font-size: clamp(0.98rem, 1.04vw, 1.18rem);
  font-weight: 300;
  line-height: 1.66;
}

.pro16-color-chapter__note h2,
.pro16-detail-band__copy h2,
.pro16-interior__copy h2,
.pro16-technical__panel h2 {
  max-width: 650px;
  font-size: clamp(2.25rem, 3.7vw, 5rem);
  line-height: 1.04;
}

.pro16-facade-triptych {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.28fr) minmax(0, 0.36fr);
  gap: clamp(20px, 2.4vw, 42px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro16-facade-triptych figure,
.pro16-interior__images figure,
.pro16-technical__media {
  display: grid;
  gap: 14px;
}

.pro16-facade-triptych img {
  height: clamp(420px, 44vw, 700px);
  object-position: center 50%;
}

.pro16-facade-triptych figure:nth-child(2) img {
  height: clamp(330px, 34vw, 560px);
}

.pro16-facade-triptych figcaption,
.pro16-interior figcaption,
.pro16-technical figcaption {
  color: rgba(23, 23, 19, 0.56);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pro16-process {
  width: min(100%, 1840px);
  background: #171512;
  color: var(--paper-soft);
}

.pro16-process__head {
  display: grid;
  gap: 22px;
  max-width: 960px;
}

.pro16-process__head h2 {
  color: var(--paper-soft);
  font-size: clamp(2.55rem, 4.6vw, 6.4rem);
  line-height: 1;
}

.pro16-process__head .eyebrow {
  color: rgba(250, 246, 237, 0.64);
}

.pro16-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(46px, 6vw, 92px);
  border-top: 1px solid rgba(250, 246, 237, 0.22);
}

.pro16-process article {
  display: grid;
  gap: 18px;
  padding: clamp(46px, 4.4vw, 76px) clamp(34px, 3.6vw, 68px) clamp(52px, 4.8vw, 82px);
  border-right: 1px solid rgba(250, 246, 237, 0.16);
}

.pro16-process article:last-child {
  border-right: 0;
}

.pro16-process article span {
  color: rgba(250, 246, 237, 0.42);
}

.pro16-process h3 {
  color: var(--paper-soft);
}

.pro16-process p {
  color: rgba(250, 246, 237, 0.68);
}

.pro16-detail-band {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  gap: clamp(34px, 6vw, 108px);
  align-items: end;
}

.pro16-detail-band__image img {
  height: clamp(580px, 54vw, 840px);
  object-position: center 50%;
  filter: saturate(0.9) contrast(1.04) brightness(0.78);
}

.pro16-interior {
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.68fr);
  gap: clamp(36px, 6vw, 108px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro16-interior__images {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
  gap: clamp(20px, 2.6vw, 44px);
  align-items: end;
}

.pro16-interior__large img {
  height: clamp(540px, 52vw, 820px);
  object-position: center 50%;
}

.pro16-interior__images figure:not(.pro16-interior__large) img {
  height: clamp(430px, 42vw, 660px);
  object-position: center 50%;
}

.project-abstract--pro16 {
  padding-top: clamp(72px, 7vw, 124px);
  padding-bottom: clamp(76px, 7vw, 130px);
}

.project-abstract--pro16 p {
  color: rgba(23, 23, 19, 0.68);
  font-family: var(--text);
  font-size: clamp(1rem, 1.02vw, 1.13rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8;
}

.project-abstract--pro16 p::before {
  display: none;
  content: none;
}

.pro16-technical {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(340px, 0.46fr);
  gap: clamp(34px, 6vw, 108px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.pro16-technical__media img {
  height: clamp(500px, 49vw, 760px);
  object-position: center 50%;
}

.pro16-technical__panel dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.pro16-technical__panel dl div {
  display: grid;
  grid-template-columns: minmax(90px, 0.24fr) minmax(0, 0.76fr);
  gap: clamp(18px, 2vw, 32px);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.pro16-technical__panel dt {
  color: var(--ink);
  font-family: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
}

.pro16-technical__panel dd {
  margin: 0;
  color: rgba(23, 23, 19, 0.62);
  font-family: var(--text);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}

.pro16-room-sequence {
  border-top: 1px solid var(--line);
}

.pro16-room-sequence .project-sequence__copy h2,
.pro16-archive .project-visual-archive__head h2 {
  font-size: clamp(2.28rem, 3.36vw, 4.7rem);
  line-height: 1.04;
}

.pro16-archive .project-visual-archive__head h2 {
  max-width: 980px;
}

@media (max-width: 1080px) {
  .pro16-opening,
  .pro16-color-chapter,
  .pro16-detail-band,
  .pro16-interior,
  .pro16-technical {
    grid-template-columns: 1fr;
  }

  .pro16-opening__copy {
    max-width: 760px;
  }

  .pro16-opening__metrics,
  .pro16-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pro16-facade-triptych {
    grid-template-columns: 1fr 1fr;
  }

  .pro16-facade-triptych figure:first-child {
    grid-column: 1 / -1;
  }

  .pro16-color-chapter__wide img,
  .pro16-facade-triptych img,
  .pro16-facade-triptych figure:nth-child(2) img,
  .pro16-detail-band__image img,
  .pro16-interior__large img,
  .pro16-interior__images figure:not(.pro16-interior__large) img,
  .pro16-technical__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .pro16-color-chapter__wide figcaption,
  .pro16-detail-band__image figcaption {
    width: min(500px, 58vw);
  }
}

@media (max-width: 760px) {
  .pro16-page .project-image-hero__content {
    width: min(100%, calc(100vw - 32px));
    grid-template-rows: minmax(92px, 0.24fr) auto minmax(42px, 0.14fr) auto auto minmax(62px, 0.84fr) auto;
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .project-image-hero__media--pro16 img {
    object-position: center 51%;
  }

  .pro16-page .project-image-hero h1 {
    width: min(100%, 342px);
    max-width: calc(100vw - 54px);
    font-size: clamp(2rem, 9.6vw, 3.4rem);
    line-height: 1;
    overflow-wrap: break-word;
    text-wrap: balance;
    word-break: normal;
  }

  .pro16-page .project-image-hero__kicker,
  .pro16-page .project-image-hero__meta {
    width: min(100%, 322px);
    max-width: calc(100vw - 48px);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
    white-space: normal;
  }

  .pro16-page .project-image-hero__lead {
    width: min(100%, 314px);
    max-width: calc(100vw - 66px);
    overflow-wrap: anywhere;
  }

  .pro16-opening__statement h2,
  .pro16-color-chapter__note h2,
  .pro16-process__head h2,
  .pro16-detail-band__copy h2,
  .pro16-interior__copy h2,
  .pro16-technical__panel h2,
  .pro16-room-sequence .project-sequence__copy h2,
  .pro16-archive .project-visual-archive__head h2 {
    font-size: clamp(2.05rem, 9.8vw, 3.4rem);
    line-height: 1;
  }

  .pro16-opening__metrics,
  .pro16-process__grid,
  .pro16-facade-triptych,
  .pro16-interior__images,
  .project-abstract--pro16,
  .pro16-technical__panel dl div {
    grid-template-columns: 1fr;
  }

  .pro16-opening__metrics div,
  .pro16-process article {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 19, 0.12);
  }

  .pro16-process article {
    border-bottom-color: rgba(250, 246, 237, 0.16);
  }

  .pro16-facade-triptych figure:first-child {
    grid-column: auto;
  }

  .pro16-color-chapter__wide img,
  .pro16-facade-triptych img,
  .pro16-detail-band__image img,
  .pro16-interior__large img,
  .pro16-interior__images figure:not(.pro16-interior__large) img,
  .pro16-technical__media img {
    aspect-ratio: 4 / 5;
  }

  .pro16-color-chapter__wide figcaption,
  .pro16-detail-band__image figcaption {
    position: static;
    width: auto;
    padding: 24px 18px 28px;
    background: #17130f;
  }
}

/* Project archive editorial refinements. Kept late to override earlier archive layout safely. */
.architecture-feature__link {
  grid-template-columns: minmax(0, 0.58fr) minmax(440px, 0.42fr);
}

.architecture-archive__rail {
  position: absolute;
  top: var(--archive-rail-top);
  bottom: auto;
}

.architecture-archive__intro h1 {
  width: 100%;
  max-width: calc(100vw - 160px);
  font-size: clamp(4.6rem, 9.2vw, 11rem);
  white-space: normal;
}

.architecture-archive__intro {
  min-height: clamp(260px, 25vw, 420px);
  margin-bottom: clamp(30px, 4vw, 58px);
}

.architecture-archive-plate {
  margin-bottom: clamp(62px, 7.2vw, 126px);
}

.architecture-feature__copy strong {
  font-size: clamp(2.7rem, 3.45vw, 5rem);
  overflow-wrap: break-word;
}

@media (max-width: 1180px) {
  .architecture-archive__rails {
    display: block;
  }

  .architecture-archive__rail {
    display: grid;
  }

  .architecture-feature__link {
    grid-template-columns: 1fr;
  }

  .architecture-feature__copy strong {
    max-width: 820px;
    font-size: clamp(2.8rem, 7.2vw, 5.2rem);
  }
}

@media (max-width: 1000px) {
  .architecture-archive__rails {
    display: none;
  }
}

@media (max-width: 760px) {
  .architecture-archive {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .architecture-archive__intro {
    width: 100%;
    min-width: 0;
    min-height: 300px;
    margin-bottom: 40px;
  }

  .architecture-archive__intro h1 {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: clamp(3.25rem, 15.5vw, 3.95rem);
    overflow-wrap: normal;
  }

  .architecture-archive__intro > p:last-child,
  .architecture-feature__text,
  .architecture-case__description {
    width: min(100%, calc(100vw - 32px));
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .architecture-feature__copy,
  .architecture-case__copy {
    min-width: 0;
    width: 100%;
  }

  .architecture-feature__copy strong,
  .architecture-case__copy strong {
    width: 100%;
    max-width: calc(100vw - 32px);
    overflow-wrap: break-word;
  }

  .architecture-feature__copy strong {
    font-size: clamp(2.3rem, 10.2vw, 3.25rem);
    overflow-wrap: break-word;
  }
}

/* Full image-led project archive hero. */
.architecture-archive--with-hero {
  width: 100%;
  max-width: none;
  padding: 0 0 clamp(84px, 9vw, 160px);
}

.architecture-archive-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background: #14140f;
}

.architecture-archive-hero__link,
.architecture-archive-hero__media {
  display: block;
}

.architecture-archive-hero__link {
  position: relative;
  min-height: inherit;
  color: #faf6ed;
}

.architecture-archive-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #14140f;
}

.architecture-archive-hero__media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(23, 23, 19, 0.08), rgba(23, 23, 19, 0.34) 58%, rgba(23, 23, 19, 0.6) 100%),
    linear-gradient(180deg, rgba(23, 23, 19, 0.28), rgba(23, 23, 19, 0.08) 38%, rgba(23, 23, 19, 0.62)),
    linear-gradient(90deg, rgba(23, 23, 19, 0.34), rgba(23, 23, 19, 0) 26%, rgba(23, 23, 19, 0) 74%, rgba(23, 23, 19, 0.34));
  content: "";
}

.architecture-archive-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.9) contrast(1.02) brightness(0.84);
  transform: scale(1.001);
  transition: filter 900ms cubic-bezier(0.16, 0.74, 0.18, 1), transform 900ms cubic-bezier(0.16, 0.74, 0.18, 1);
}

.architecture-archive-hero__link:hover .architecture-archive-hero__media img,
.architecture-archive-hero__link:focus-visible .architecture-archive-hero__media img {
  filter: saturate(0.98) contrast(1.04) brightness(0.9);
  transform: scale(1.025);
}

.architecture-archive-hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: inherit;
  padding: clamp(124px, 12vw, 188px) clamp(22px, 7vw, 132px) clamp(150px, 14vw, 238px);
  text-align: center;
}

.architecture-archive-hero__eyebrow,
.architecture-archive-hero__foot {
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.45;
  text-transform: uppercase;
}

.architecture-archive-hero__eyebrow {
  margin-bottom: clamp(20px, 2.4vw, 38px);
  color: rgba(250, 246, 237, 0.76);
}

.architecture-archive-hero h1 {
  max-width: min(100%, 1280px);
  margin: 0;
  color: #fffaf0;
  font-family: var(--display);
  font-size: clamp(5.8rem, 13vw, 15.2rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: none;
  text-shadow: 0 28px 76px rgba(0, 0, 0, 0.38);
}

.architecture-archive-hero__text {
  display: block;
  max-width: 790px;
  margin-top: clamp(30px, 4vw, 62px);
  color: rgba(250, 246, 237, 0.84);
  font-size: clamp(1rem, 1.04vw, 1.18rem);
  line-height: 1.72;
  text-wrap: balance;
}

.architecture-archive-hero__foot {
  position: absolute;
  right: clamp(22px, 5vw, 92px);
  bottom: clamp(24px, 4vw, 72px);
  left: clamp(22px, 5vw, 92px);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  color: rgba(250, 246, 237, 0.74);
  pointer-events: none;
}

.architecture-archive-hero__foot strong {
  display: block;
  max-width: 560px;
  margin-top: 12px;
  color: #fffaf0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.6vw, 3.75rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
}

.architecture-archive--with-hero .architecture-feature,
.architecture-archive--with-hero .architecture-archive__statement,
.architecture-archive--with-hero .architecture-case-list {
  width: min(calc(100% - clamp(44px, 10vw, 184px)), 1640px);
  margin-right: auto;
  margin-left: auto;
}

.architecture-archive--with-hero .architecture-feature {
  margin-top: clamp(72px, 9vw, 150px);
}

.image-hero-page .architecture-archive__rail {
  color: rgba(250, 246, 237, 0.62);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.image-hero-page .architecture-archive__rails.is-on-paper .architecture-archive__rail,
.image-hero-page .architecture-archive__rails.is-released .architecture-archive__rail {
  color: rgba(23, 23, 19, 0.34);
  text-shadow: none;
}

@media (max-width: 1180px) {
  .architecture-archive-hero__copy {
    padding-right: clamp(22px, 5vw, 72px);
    padding-left: clamp(22px, 5vw, 72px);
  }

  .architecture-archive-hero h1 {
    font-size: clamp(5rem, 15vw, 10.5rem);
  }
}

@media (max-width: 1000px) {
  .architecture-archive--with-hero .architecture-feature,
  .architecture-archive--with-hero .architecture-archive__statement,
  .architecture-archive--with-hero .architecture-case-list {
    width: min(calc(100% - 32px), 920px);
  }
}

@media (max-width: 760px) {
  .architecture-archive--with-hero {
    padding-bottom: 78px;
  }

  .architecture-archive-hero {
    min-height: 100svh;
  }

  .architecture-archive-hero__media img {
    object-position: 55% 50%;
  }

  .architecture-archive-hero__copy {
    justify-items: start;
    padding: 112px 16px 178px;
    text-align: left;
  }

  .architecture-archive-hero__eyebrow,
  .architecture-archive-hero__foot {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .architecture-archive-hero h1 {
    max-width: calc(100vw - 32px);
    font-size: clamp(2.95rem, 13.2vw, 3.45rem);
    line-height: 0.9;
    white-space: nowrap;
  }

  .architecture-archive-hero__text {
    width: min(100%, 290px);
    max-width: calc(100vw - 48px);
    margin-top: 28px;
    font-size: 0.86rem;
    line-height: 1.62;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .architecture-archive-hero__foot {
    right: 16px;
    bottom: 22px;
    left: 16px;
    display: grid;
    gap: 12px;
    justify-content: stretch;
  }

  .architecture-archive-hero__foot strong {
    max-width: 330px;
    margin-top: 8px;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .architecture-archive--with-hero .architecture-feature {
    margin-top: 58px;
  }
}

@media (min-width: 1001px) {
  body.byggsikt-frame-page {
    position: relative;
    --frame-line: rgba(17, 16, 13, 0.98);
    --frame-line-soft: rgba(17, 16, 13, 0.98);
    --frame-gap-fill: var(--paper);
    --frame-stroke: 2px;
    --frame-middle: 3px;
    --frame-gap: calc(var(--frame-stroke) + var(--frame-middle));
    --frame-x-outer: 20px;
    --frame-x-inner: calc(var(--frame-x-outer) + var(--frame-gap));
    --frame-top-outer: 32px;
    --frame-top-inner: calc(var(--frame-top-outer) + var(--frame-gap));
    --frame-bottom-outer: clamp(26px, 3.2vw, 54px);
    --frame-bottom-inner: calc(var(--frame-bottom-outer) + var(--frame-gap));
    --frame-rail-bottom-outer: 0px;
    --frame-rail-bottom-inner: 0px;
    --frame-footer-cap-top: calc(100vh + 100px);
    --frame-left-cap-outer: clamp(96px, 7.2vw, 154px);
    --frame-left-cap-inner: calc(var(--frame-left-cap-outer) - var(--frame-gap));
    --frame-right-cap-outer: clamp(96px, 7.2vw, 154px);
    --frame-right-cap-inner: calc(var(--frame-right-cap-outer) - var(--frame-gap));
  }

  body.byggsikt-frame-page::before,
  body.byggsikt-frame-page::after {
    pointer-events: none;
    content: "";
  }

  body.byggsikt-frame-page .page-footer {
    --footer-frame-inset: calc(var(--frame-x-outer) + var(--frame-stroke) + var(--frame-middle) + var(--frame-stroke));
    --footer-frame-bottom-inset: var(--footer-frame-inset);
  }

  body.byggsikt-frame-page .footer-cta {
    margin-right: calc(var(--frame-x-outer) + var(--frame-stroke) + var(--frame-middle) + var(--frame-stroke));
    margin-left: calc(var(--frame-x-outer) + var(--frame-stroke) + var(--frame-middle) + var(--frame-stroke));
    border-top-color: rgba(23, 21, 16, 0.1);
  }

  body.byggsikt-frame-page .footer-cta + .page-footer {
    margin-top: 0;
  }

  body.byggsikt-frame-page .footer-card-shell {
    box-shadow: none;
  }

  body.byggsikt-frame-page::before {
    position: fixed;
    inset: 0;
    z-index: 91;
    background:
      linear-gradient(var(--frame-line), var(--frame-line)) left var(--frame-x-outer) top var(--frame-top-outer) / var(--frame-stroke) calc(100vh - var(--frame-top-outer) - var(--frame-rail-bottom-outer)) no-repeat,
      linear-gradient(var(--frame-line-soft), var(--frame-line-soft)) left var(--frame-x-inner) top var(--frame-top-inner) / var(--frame-stroke) calc(100vh - var(--frame-top-inner) - var(--frame-rail-bottom-inner)) no-repeat,
      linear-gradient(var(--frame-line), var(--frame-line)) right var(--frame-x-outer) top var(--frame-top-outer) / var(--frame-stroke) calc(100vh - var(--frame-top-outer) - var(--frame-rail-bottom-outer)) no-repeat,
      linear-gradient(var(--frame-line-soft), var(--frame-line-soft)) right var(--frame-x-inner) top var(--frame-top-inner) / var(--frame-stroke) calc(100vh - var(--frame-top-inner) - var(--frame-rail-bottom-inner)) no-repeat,
      linear-gradient(var(--frame-gap-fill), var(--frame-gap-fill)) left calc(var(--frame-x-outer) + var(--frame-stroke)) top var(--frame-top-outer) / var(--frame-middle) calc(100vh - var(--frame-top-outer) - var(--frame-rail-bottom-outer)) no-repeat,
      linear-gradient(var(--frame-gap-fill), var(--frame-gap-fill)) right calc(var(--frame-x-outer) + var(--frame-stroke)) top var(--frame-top-outer) / var(--frame-middle) calc(100vh - var(--frame-top-outer) - var(--frame-rail-bottom-outer)) no-repeat;
  }

  body.byggsikt-frame-page::after {
    position: fixed;
    inset: 0;
    z-index: 92;
    background:
      linear-gradient(90deg, var(--frame-line), var(--frame-line)) left var(--frame-x-outer) top calc(var(--frame-footer-cap-top) + var(--frame-stroke) + var(--frame-middle)) / calc(100% - var(--frame-x-outer) - var(--frame-x-outer)) var(--frame-stroke) no-repeat,
      linear-gradient(90deg, var(--frame-gap-fill), var(--frame-gap-fill)) left calc(var(--frame-x-outer) + var(--frame-stroke)) top calc(var(--frame-footer-cap-top) + var(--frame-stroke)) / calc(100% - var(--frame-x-outer) - var(--frame-x-outer) - var(--frame-stroke) - var(--frame-stroke)) var(--frame-middle) no-repeat,
      linear-gradient(90deg, var(--frame-line-soft), var(--frame-line-soft)) left var(--frame-x-inner) top var(--frame-footer-cap-top) / calc(100% - var(--frame-x-inner) - var(--frame-x-inner)) var(--frame-stroke) no-repeat,
      linear-gradient(90deg, var(--frame-line), var(--frame-line)) left var(--frame-x-outer) top var(--frame-top-outer) / var(--frame-left-cap-outer) var(--frame-stroke) no-repeat,
      linear-gradient(90deg, var(--frame-line-soft), var(--frame-line-soft)) left var(--frame-x-inner) top var(--frame-top-inner) / var(--frame-left-cap-inner) var(--frame-stroke) no-repeat,
      linear-gradient(90deg, var(--frame-line), var(--frame-line)) right var(--frame-x-outer) top var(--frame-top-outer) / var(--frame-right-cap-outer) var(--frame-stroke) no-repeat,
      linear-gradient(90deg, var(--frame-line-soft), var(--frame-line-soft)) right var(--frame-x-inner) top var(--frame-top-inner) / var(--frame-right-cap-inner) var(--frame-stroke) no-repeat,
      linear-gradient(90deg, var(--frame-gap-fill), var(--frame-gap-fill)) left calc(var(--frame-x-outer) + var(--frame-stroke)) top calc(var(--frame-top-outer) + var(--frame-stroke)) / calc(var(--frame-left-cap-outer) - var(--frame-stroke)) var(--frame-middle) no-repeat,
      linear-gradient(90deg, var(--frame-gap-fill), var(--frame-gap-fill)) right calc(var(--frame-x-outer) + var(--frame-stroke)) top calc(var(--frame-top-outer) + var(--frame-stroke)) / calc(var(--frame-right-cap-outer) - var(--frame-stroke)) var(--frame-middle) no-repeat;
  }

  body.byggsikt-frame-page .page-footer::after {
    content: none;
  }

  body.byggsikt-frame-page .page-footer .footer-grid {
    padding-top: clamp(104px, 12vh, 148px);
  }

  body.byggsikt-frame-page .page-footer .footer-mark {
    margin-left: clamp(210px, 17vw, 300px);
    max-width: clamp(330px, 24vw, 430px);
  }

  body.byggsikt-frame-page .page-footer .footer-bottom > span:first-child {
    margin-left: clamp(210px, 17vw, 300px);
  }
}

@media (min-width: 1181px) and (max-width: 1500px) {
  body.byggsikt-frame-page .footer-card-shell {
    --footer-ribbon-left: -58px;
    --footer-ribbon-top: 105.7%;
    --footer-ribbon-height: 86%;
    --footer-ribbon-bleed: 0px;
    --footer-f-clearance: clamp(340px, 29vw, 430px);
    --footer-logo-size: clamp(132px, 9.8vw, 170px);
  }

  body.byggsikt-frame-page .footer-grid {
    grid-template-columns: minmax(clamp(570px, 43vw, 650px), 0.95fr) repeat(3, minmax(128px, 0.34fr));
    gap: clamp(26px, 3.2vw, 58px);
  }

  body.byggsikt-frame-page .page-footer .footer-mark {
    margin-left: clamp(190px, 18vw, 270px);
    max-width: clamp(320px, 26vw, 380px);
  }

  body.byggsikt-frame-page .page-footer .footer-mark p {
    max-width: clamp(300px, 24vw, 360px);
  }

  body.byggsikt-frame-page .page-footer .footer-bottom > span:first-child {
    margin-left: clamp(190px, 18vw, 270px);
  }
}

@media (min-width: 1001px) and (max-width: 1180px) {
  body.byggsikt-frame-page .footer-card-shell {
    --footer-ribbon-left: -58px;
    --footer-ribbon-top: 105.7%;
    --footer-ribbon-height: 86%;
    --footer-ribbon-bleed: 0px;
    --footer-f-clearance: clamp(330px, 38vw, 420px);
    --footer-logo-size: clamp(132px, 16vw, 170px);
    min-height: auto;
  }

  body.byggsikt-frame-page .page-footer .footer-grid {
    padding-top: calc(var(--footer-f-clearance) + 46px);
  }

  body.byggsikt-frame-page .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 42px;
  }

  body.byggsikt-frame-page .page-footer .footer-mark {
    grid-column: 1 / -1;
    margin-left: 0;
    max-width: 560px;
  }

  body.byggsikt-frame-page .page-footer .footer-mark::before {
    top: calc(0px - var(--footer-logo-size) - clamp(42px, 7vw, 64px));
    left: 0;
    transform: none;
    opacity: 0.9;
  }

  body.byggsikt-frame-page .page-footer .footer-mark p {
    max-width: 440px;
  }

  body.byggsikt-frame-page .page-footer .footer-bottom > span:first-child {
    margin-left: 0;
  }
}

@media (max-width: 1000px) {
  body.byggsikt-frame-page::before,
  body.byggsikt-frame-page::after {
    display: none;
    content: none;
  }

  body.byggsikt-frame-page .footer-cta {
    margin: 0;
    border-top: 0;
    border-bottom: 0;
  }

  body.byggsikt-frame-page .footer-cta + .page-footer {
    margin-top: 0;
  }

  body.byggsikt-frame-page .footer-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: clamp(20px, 4vw, 34px);
    width: 100%;
    max-width: none;
    padding: clamp(54px, 9vw, 84px) clamp(20px, 5vw, 46px) clamp(58px, 10vw, 88px);
  }

  body.byggsikt-frame-page .footer-cta__eyebrow,
  body.byggsikt-frame-page .footer-cta__copy,
  body.byggsikt-frame-page .footer-cta__button {
    grid-column: 1;
  }

  body.byggsikt-frame-page .footer-cta__copy {
    max-width: 720px;
    gap: clamp(16px, 3vw, 24px);
  }

  body.byggsikt-frame-page .footer-cta__copy h2 {
    max-width: 720px;
    font-size: clamp(3.35rem, 9.4vw, 6.1rem);
    line-height: 0.94;
  }

  body.byggsikt-frame-page .footer-cta__copy p {
    max-width: 650px;
    font-size: clamp(1rem, 1.9vw, 1.1rem);
    line-height: 1.62;
  }

  body.byggsikt-frame-page .footer-cta__button {
    justify-self: start;
    margin-top: 4px;
    margin-bottom: 0;
  }

  body.byggsikt-frame-page .page-footer {
    --footer-frame-inset: 0px;
    --footer-frame-bottom-inset: 0px;
    margin: 0;
    padding: 0;
    background: var(--footer-cta-bg, #173452);
  }

  body.byggsikt-frame-page .footer-card-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  body.byggsikt-frame-page .page-footer .section {
    padding-right: clamp(18px, 5vw, 42px);
    padding-left: clamp(18px, 5vw, 42px);
  }
}

@media (max-width: 760px) {
  body.byggsikt-frame-page .footer-cta__inner {
    padding: clamp(48px, 12vw, 70px) clamp(18px, 5vw, 28px) clamp(54px, 12vw, 74px);
  }

  body.byggsikt-frame-page .footer-cta__copy h2 {
    font-size: clamp(2.9rem, 13.6vw, 4.6rem);
  }

  body.byggsikt-frame-page .footer-cta__copy p {
    font-size: clamp(0.96rem, 3.5vw, 1.02rem);
    line-height: 1.58;
  }

  body.byggsikt-frame-page .footer-cta__button {
    min-width: 164px;
    min-height: 46px;
  }

  body.byggsikt-frame-page .page-footer .footer-grid {
    padding-top: calc(var(--footer-f-clearance) + 30px);
  }
}

@media (max-width: 380px) {
  body.byggsikt-frame-page .footer-cta__copy h2 {
    font-size: clamp(2.62rem, 13.2vw, 3.1rem);
  }

  body.byggsikt-frame-page .footer-cta__button {
    width: 100%;
  }

  body.byggsikt-frame-page .page-footer .footer-grid {
    padding-top: calc(var(--footer-f-clearance) + 42px);
  }
}

.blog-article__section .blog-infographic--bath-preflight,
.blog-article__section .blog-infographic--bath-threshold,
.blog-article__section .blog-infographic--bath-drain,
.blog-article__section .blog-infographic--bath-section,
.blog-article__section .blog-infographic--bath-cost-model {
  --bath-blue: #173452;
  --bath-blue-deep: #0c263d;
  --bath-blue-panel: #203e5a;
  --bath-cream: #fbf5eb;
  --bath-cream-soft: rgba(251, 245, 235, 0.78);
  --bath-rule: rgba(251, 245, 235, 0.2);
  --bath-brass: #d99b35;
  --bath-sage: #9aaa89;
  --bath-clay: #bf7554;
  max-width: 980px;
  padding: 48px;
  color: var(--bath-cream);
  background: var(--bath-blue);
  border: 1px solid rgba(12, 38, 61, 0.9);
  box-shadow: none;
}

.blog-article__section .blog-infographic--bath-preflight::before,
.blog-article__section .blog-infographic--bath-threshold::before,
.blog-article__section .blog-infographic--bath-drain::before,
.blog-article__section .blog-infographic--bath-section::before,
.blog-article__section .blog-infographic--bath-cost-model::before {
  background:
    linear-gradient(90deg, rgba(251, 245, 235, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 245, 235, 0.032) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.45;
}

.blog-article__section .blog-infographic--bath-preflight .blog-infographic__head,
.blog-article__section .blog-infographic--bath-threshold .blog-infographic__head,
.blog-article__section .blog-infographic--bath-drain .blog-infographic__head,
.blog-article__section .blog-infographic--bath-section .blog-infographic__head,
.blog-article__section .blog-infographic--bath-cost-model .blog-infographic__head {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--bath-rule);
}

.blog-article__section .blog-infographic--bath-preflight .blog-infographic__label,
.blog-article__section .blog-infographic--bath-threshold .blog-infographic__label,
.blog-article__section .blog-infographic--bath-drain .blog-infographic__label,
.blog-article__section .blog-infographic--bath-section .blog-infographic__label,
.blog-article__section .blog-infographic--bath-cost-model .blog-infographic__label {
  grid-column: 1;
  grid-row: 1 / 3;
  color: #efc56e;
}

.blog-article__section .blog-infographic--bath-preflight .blog-infographic__label::after,
.blog-article__section .blog-infographic--bath-threshold .blog-infographic__label::after,
.blog-article__section .blog-infographic--bath-drain .blog-infographic__label::after,
.blog-article__section .blog-infographic--bath-section .blog-infographic__label::after,
.blog-article__section .blog-infographic--bath-cost-model .blog-infographic__label::after {
  max-width: 138px;
  background: var(--bath-brass);
}

.blog-article__section .blog-infographic--bath-preflight .blog-infographic__title,
.blog-article__section .blog-infographic--bath-threshold .blog-infographic__title,
.blog-article__section .blog-infographic--bath-drain .blog-infographic__title,
.blog-article__section .blog-infographic--bath-section .blog-infographic__title,
.blog-article__section .blog-infographic--bath-cost-model .blog-infographic__title {
  grid-column: 2;
  max-width: 660px;
  margin: 0;
  color: var(--bath-cream);
  font-size: 2rem;
  font-weight: 560;
  line-height: 1.08;
}

.blog-article__section .blog-infographic--bath-preflight .blog-infographic__note,
.blog-article__section .blog-infographic--bath-threshold .blog-infographic__note,
.blog-article__section .blog-infographic--bath-drain .blog-infographic__note,
.blog-article__section .blog-infographic--bath-section .blog-infographic__note,
.blog-article__section .blog-infographic--bath-cost-model .blog-infographic__note {
  grid-column: 2;
  max-width: 58ch;
  margin: 0;
  color: var(--bath-cream-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.bath-preflight-board,
.bath-threshold-map,
.bath-drain-plan,
.bath-section-stack,
.bath-cost-model {
  position: relative;
  z-index: 1;
}

.bath-preflight-board {
  display: grid;
  gap: 18px;
}

.bath-preflight-board__gate {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: var(--bath-blue-deep);
  border: 1px solid var(--bath-rule);
}

.bath-preflight-board__gate span,
.bath-preflight-board__result strong,
.bath-threshold-map__check strong,
.bath-cost-model__formula span,
.bath-cost-model__formula strong {
  color: #efc56e;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bath-preflight-board__gate strong {
  color: var(--bath-cream);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 560;
  line-height: 1.28;
}

.bath-preflight-board__tracks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bath-preflight-board__tracks article,
.bath-threshold-map__item,
.bath-threshold-map__check,
.bath-drain-plan__rules article,
.bath-section-stack__checks article,
.bath-cost-model__rows article {
  background: rgba(12, 38, 61, 0.78);
  border: 1px solid var(--bath-rule);
}

.bath-preflight-board__tracks article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 248px;
  padding: 24px;
}

.bath-preflight-board__tracks article:nth-child(2),
.bath-threshold-map__item:nth-child(2),
.bath-drain-plan__rules article:nth-child(2),
.bath-section-stack__checks article:nth-child(2),
.bath-section-stack__checks article:nth-child(4) {
  background: rgba(32, 62, 90, 0.84);
}

.bath-preflight-board__tracks article:nth-child(3),
.bath-threshold-map__item:nth-child(3),
.bath-drain-plan__rules article:nth-child(3) {
  background: rgba(13, 43, 66, 0.9);
}

.bath-preflight-board__tracks span,
.bath-threshold-map__item span,
.bath-section-stack__checks span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--bath-blue);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 760;
  background: var(--bath-cream);
}

.blog-article__section .blog-infographic--bath-preflight .bath-preflight-board__tracks article > span,
.blog-article__section .blog-infographic--bath-threshold .bath-threshold-map__item > span,
.blog-article__section .blog-infographic--bath-section .bath-section-stack__checks article > span {
  color: var(--bath-blue);
}

.bath-preflight-board h4,
.bath-threshold-map h4,
.bath-section-stack h4 {
  margin: 0;
  color: var(--bath-cream);
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1.22;
}

.bath-preflight-board p,
.bath-threshold-map p,
.bath-drain-plan p,
.bath-section-stack p,
.bath-cost-model p {
  margin: 0;
  color: var(--bath-cream-soft);
  font-family: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}

.bath-preflight-board em,
.bath-threshold-map em,
.bath-cost-model em {
  align-self: end;
  color: #efc56e;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bath-preflight-board__result {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--bath-rule);
  border: 1px solid var(--bath-rule);
}

.bath-preflight-board__result strong,
.bath-preflight-board__result span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  background: var(--bath-blue-deep);
}

.bath-preflight-board__result span {
  color: var(--bath-cream);
  font-family: var(--text);
  font-size: 0.93rem;
}

.bath-threshold-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bath-threshold-map__item {
  display: grid;
  gap: 14px;
  min-height: 245px;
  padding: 24px;
  border-top: 4px solid var(--bath-sage);
}

.bath-threshold-map__item:nth-child(2) {
  border-top-color: var(--bath-brass);
}

.bath-threshold-map__item:nth-child(3) {
  border-top-color: var(--bath-clay);
}

.bath-threshold-map__check {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 190px repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--bath-rule);
}

.bath-threshold-map__check strong,
.bath-threshold-map__check span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px;
  background: var(--bath-blue-deep);
}

.bath-threshold-map__check strong {
  grid-row: span 2;
  align-items: flex-start;
}

.bath-threshold-map__check span {
  color: var(--bath-cream-soft);
  font-family: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.bath-drain-plan {
  display: grid;
  grid-template-columns: minmax(430px, 1.18fr) minmax(250px, 0.82fr);
  gap: 22px;
  align-items: start;
}

.bath-drain-plan__drawing {
  position: relative;
  aspect-ratio: 640 / 700;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 245, 235, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 245, 235, 0.04) 1px, transparent 1px),
    var(--bath-blue-deep);
  background-size: 36px 36px;
  border: 1px solid var(--bath-rule);
}

.bath-drain-plan__svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
}

.bath-drain-plan__room,
.bath-drain-plan__shower {
  fill: rgba(12, 38, 61, 0.26);
  stroke: rgba(251, 245, 235, 0.32);
  stroke-width: 1.4;
}

.bath-drain-plan__shower {
  stroke: rgba(217, 155, 53, 0.72);
}

.bath-drain-plan__threshold-line {
  stroke: var(--bath-sage);
  stroke-width: 6;
}

.bath-drain-plan__flow {
  marker-end: url("#bathDrainArrow");
  stroke: var(--bath-brass);
  stroke-linecap: round;
  stroke-width: 4.25;
}

.bath-drain-plan__flow--secondary {
  marker-end: url("#bathDrainArrowSecondary");
  stroke: var(--bath-sage);
}

.bath-drain-plan__leader {
  stroke: var(--bath-cream);
  stroke-linecap: round;
  stroke-width: 1.8;
  opacity: 0.7;
}

.bath-drain-plan__svg marker path {
  fill: var(--bath-brass);
}

.bath-drain-plan__svg .bath-drain-plan__marker--secondary path {
  fill: var(--bath-sage);
}

.bath-drain-plan__drain-ring {
  fill: rgba(12, 38, 61, 0.92);
  stroke: var(--bath-cream);
  stroke-width: 7;
}

.bath-drain-plan__drain-plate {
  fill: rgba(251, 245, 235, 0.07);
  stroke: rgba(251, 245, 235, 0.5);
  stroke-width: 2;
}

.bath-drain-plan__drain-slot {
  stroke: rgba(251, 245, 235, 0.62);
  stroke-linecap: round;
  stroke-width: 3;
}

.bath-drain-plan__drain-core {
  fill: var(--bath-brass);
  opacity: 0.55;
}

.bath-drain-plan__text {
  fill: var(--bath-cream);
  font-family: var(--caption);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.bath-drain-plan__text--zone,
.bath-drain-plan__text--threshold,
.bath-drain-plan__text--low {
  fill: #efc56e;
}

.bath-drain-plan__text--drain {
  fill: var(--bath-cream);
  font-size: 23px;
  letter-spacing: 0.02em;
}

.bath-drain-plan__text--low {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.bath-drain-plan__zone {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 48%;
  height: 46%;
  padding: 16px;
  color: #efc56e;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(239, 197, 110, 0.55);
}

.bath-drain-plan__threshold {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding-top: 12px;
  color: var(--bath-cream-soft);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 3px solid var(--bath-sage);
}

.bath-drain-plan__drain {
  position: absolute;
  right: 72px;
  bottom: 104px;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--bath-cream);
  font-family: var(--caption);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 4px solid var(--bath-cream);
  border-radius: 50%;
}

.bath-drain-plan__arrow {
  position: absolute;
  right: 112px;
  height: 3px;
  background: var(--bath-brass);
  transform-origin: right center;
}

.bath-drain-plan__arrow::before {
  position: absolute;
  top: -5px;
  left: -2px;
  width: 12px;
  height: 12px;
  border-bottom: 3px solid var(--bath-brass);
  border-left: 3px solid var(--bath-brass);
  transform: rotate(45deg);
  content: "";
}

.bath-drain-plan__arrow--one {
  top: 134px;
  width: 260px;
  transform: rotate(13deg);
}

.bath-drain-plan__arrow--two {
  top: 210px;
  width: 218px;
  transform: rotate(-7deg);
}

.bath-drain-plan__arrow--three {
  right: 156px;
  bottom: 150px;
  width: 150px;
  transform: rotate(31deg);
}

.bath-drain-plan__rules {
  display: grid;
  gap: 12px;
}

.bath-drain-plan__rules article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 112px;
  padding: 22px;
}

.bath-drain-plan__rules strong,
.bath-section-stack__checks strong,
.bath-cost-model__rows strong {
  color: var(--bath-cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 620;
  line-height: 1.18;
}

.bath-section-stack {
  display: grid;
  grid-template-columns: minmax(350px, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.bath-section-stack__visual {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 390px;
  padding: 34px;
  background: var(--bath-blue-deep);
  border: 1px solid var(--bath-rule);
}

.bath-section-stack__layer {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--bath-blue);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bath-section-stack__layer--finish {
  width: 72%;
  margin-left: 20%;
  background: #d7c094;
}

.bath-section-stack__layer--seal {
  width: 86%;
  margin-left: 9%;
  color: var(--bath-cream);
  background: var(--bath-clay);
}

.bath-section-stack__layer--slope {
  width: 96%;
  margin-left: 2%;
  background: var(--bath-sage);
}

.bath-section-stack__layer--base {
  width: 100%;
  color: var(--bath-cream);
  background: #122d45;
  border: 1px solid var(--bath-rule);
}

.bath-section-stack__pipe {
  position: absolute;
  right: 27%;
  bottom: 34px;
  width: 34px;
  height: 238px;
  border: 3px solid var(--bath-cream);
  border-bottom: 0;
}

.bath-section-stack__visual b {
  position: absolute;
  right: 28px;
  top: 36px;
  max-width: 150px;
  color: var(--bath-cream);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bath-section-stack__checks {
  display: grid;
  gap: 1px;
  background: var(--bath-rule);
  border: 1px solid var(--bath-rule);
}

.bath-section-stack__checks article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 88px;
  padding: 18px 20px;
  border: 0;
}

.bath-section-stack__checks p {
  grid-column: 2;
}

.bath-cost-model {
  display: grid;
  gap: 20px;
}

.bath-cost-model__formula {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 1px;
  background: var(--bath-rule);
  border: 1px solid var(--bath-rule);
}

.bath-cost-model__formula span,
.bath-cost-model__formula strong,
.bath-cost-model__formula b {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px;
  background: var(--bath-blue-deep);
  text-align: center;
}

.bath-cost-model__formula b {
  color: var(--bath-cream);
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 560;
}

.bath-cost-model__formula strong {
  color: var(--bath-blue);
  background: var(--bath-brass);
}

.bath-cost-model__rows {
  display: grid;
  gap: 10px;
}

.bath-cost-model__rows article {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr) minmax(154px, 0.28fr);
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px 20px;
}

.bath-cost-model__rows article:nth-child(2),
.bath-cost-model__rows article:nth-child(4) {
  background: rgba(32, 62, 90, 0.84);
}

.bath-cost-model__rows em {
  justify-self: end;
  max-width: 156px;
  text-align: right;
}

.blog-article__section .blog-infographic--bath-price-snapshot,
.blog-article__section .blog-infographic--bath-price-base,
.blog-article__section .blog-infographic--bath-price-new,
.blog-article__section .blog-infographic--bath-price-logistics,
.blog-article__section .blog-infographic--bath-price-offer,
.blog-article__section .blog-infographic--bath-price-trades {
  --price-blue: #173452;
  --price-blue-deep: #0d253a;
  --price-blue-panel: #213f5d;
  --price-cream: #fbf5eb;
  --price-cream-soft: rgba(251, 245, 235, 0.78);
  --price-rule: rgba(251, 245, 235, 0.22);
  --price-brass: #d99b35;
  --price-sage: #9aaa89;
  --price-clay: #bf7554;
  max-width: 980px;
  padding: 48px;
  color: var(--price-cream);
  background: var(--price-blue);
  border: 1px solid rgba(13, 37, 58, 0.96);
  box-shadow: none;
}

.blog-article__section .blog-infographic--bath-price-snapshot::before,
.blog-article__section .blog-infographic--bath-price-base::before,
.blog-article__section .blog-infographic--bath-price-new::before,
.blog-article__section .blog-infographic--bath-price-logistics::before,
.blog-article__section .blog-infographic--bath-price-offer::before,
.blog-article__section .blog-infographic--bath-price-trades::before {
  background:
    linear-gradient(90deg, rgba(251, 245, 235, 0.048) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 245, 235, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.5;
}

.blog-article__section .blog-infographic--bath-price-snapshot .blog-infographic__head,
.blog-article__section .blog-infographic--bath-price-base .blog-infographic__head,
.blog-article__section .blog-infographic--bath-price-new .blog-infographic__head,
.blog-article__section .blog-infographic--bath-price-logistics .blog-infographic__head,
.blog-article__section .blog-infographic--bath-price-offer .blog-infographic__head,
.blog-article__section .blog-infographic--bath-price-trades .blog-infographic__head {
  align-items: start;
  margin-bottom: 34px;
  border-bottom-color: var(--price-rule);
}

.blog-article__section .blog-infographic--bath-price-snapshot .blog-infographic__label,
.blog-article__section .blog-infographic--bath-price-base .blog-infographic__label,
.blog-article__section .blog-infographic--bath-price-new .blog-infographic__label,
.blog-article__section .blog-infographic--bath-price-logistics .blog-infographic__label,
.blog-article__section .blog-infographic--bath-price-offer .blog-infographic__label,
.blog-article__section .blog-infographic--bath-price-trades .blog-infographic__label {
  color: #efc56e;
}

.blog-article__section .blog-infographic--bath-price-snapshot .blog-infographic__label::after,
.blog-article__section .blog-infographic--bath-price-base .blog-infographic__label::after,
.blog-article__section .blog-infographic--bath-price-new .blog-infographic__label::after,
.blog-article__section .blog-infographic--bath-price-logistics .blog-infographic__label::after,
.blog-article__section .blog-infographic--bath-price-offer .blog-infographic__label::after,
.blog-article__section .blog-infographic--bath-price-trades .blog-infographic__label::after {
  background: var(--price-brass);
}

.blog-article__section .blog-infographic--bath-price-snapshot .blog-infographic__title,
.blog-article__section .blog-infographic--bath-price-base .blog-infographic__title,
.blog-article__section .blog-infographic--bath-price-new .blog-infographic__title,
.blog-article__section .blog-infographic--bath-price-logistics .blog-infographic__title,
.blog-article__section .blog-infographic--bath-price-offer .blog-infographic__title,
.blog-article__section .blog-infographic--bath-price-trades .blog-infographic__title {
  color: var(--price-cream);
  font-size: 2rem;
  font-weight: 560;
}

.blog-article__section .blog-infographic--bath-price-snapshot .blog-infographic__note,
.blog-article__section .blog-infographic--bath-price-base .blog-infographic__note,
.blog-article__section .blog-infographic--bath-price-new .blog-infographic__note,
.blog-article__section .blog-infographic--bath-price-logistics .blog-infographic__note,
.blog-article__section .blog-infographic--bath-price-offer .blog-infographic__note,
.blog-article__section .blog-infographic--bath-price-trades .blog-infographic__note {
  color: var(--price-cream-soft);
}

.bath-price-ladder,
.bath-price-equation,
.bath-price-split,
.bath-price-logistics,
.bath-price-offer,
.bath-offer-matrix,
.bath-trade-matrix {
  position: relative;
  z-index: 1;
}

.bath-price-ladder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bath-price-ladder article,
.bath-price-equation article,
.bath-price-split article,
.bath-price-logistics article,
.bath-price-offer article,
.bath-offer-matrix article,
.bath-trade-matrix article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  background: rgba(13, 37, 58, 0.78);
  border: 1px solid var(--price-rule);
}

.bath-price-ladder article {
  min-height: 196px;
  padding: 24px 22px;
  border-top: 4px solid var(--price-sage);
}

.bath-price-ladder article:nth-child(2),
.bath-price-split article:nth-child(1),
.bath-price-logistics article:nth-child(2),
.bath-price-offer article:nth-child(2),
.bath-price-offer article:nth-child(5) {
  background: rgba(33, 63, 93, 0.86);
}

.bath-price-ladder article:nth-child(3),
.bath-price-logistics article:nth-child(3),
.bath-price-offer article:nth-child(3) {
  border-top-color: var(--price-brass);
}

.bath-price-ladder article:nth-child(4),
.bath-price-split article:nth-child(2),
.bath-price-logistics article:nth-child(4),
.bath-price-offer article:nth-child(4) {
  border-top-color: var(--price-clay);
}

.bath-price-ladder span,
.bath-price-split span,
.bath-price-equation article span,
.bath-price-logistics span,
.bath-price-offer span {
  color: #efc56e;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.28;
  text-transform: uppercase;
}

.bath-price-ladder strong,
.bath-price-equation strong,
.bath-price-split strong,
.bath-price-logistics strong,
.bath-price-offer strong {
  color: var(--price-cream);
  font-family: var(--sans);
  font-size: 1.04rem;
  font-weight: 620;
  line-height: 1.18;
}

.bath-price-ladder article > strong {
  color: var(--price-cream);
  font-size: clamp(1.5rem, 2.12vw, 2.12rem);
  letter-spacing: 0;
}

.bath-price-ladder p,
.bath-price-equation p,
.bath-price-split p,
.bath-price-logistics p,
.bath-price-offer p,
.bath-offer-matrix p,
.bath-trade-matrix p {
  margin: 0;
  color: var(--price-cream-soft);
  font-family: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.bath-price-equation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.bath-price-equation article {
  min-height: 224px;
  padding: 24px;
}

.bath-price-equation > b {
  display: grid;
  place-items: center;
  color: var(--price-cream);
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 420;
  background: rgba(251, 245, 235, 0.08);
  border: 1px solid var(--price-rule);
}

.bath-price-equation__sum {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 74px;
  color: var(--price-blue) !important;
  font-family: var(--caption);
  font-size: 0.72rem !important;
  font-weight: 780 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--price-brass);
}

.bath-price-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bath-price-split article {
  min-height: 300px;
  padding: 28px;
  border-top: 4px solid var(--price-sage);
}

.bath-price-split strong {
  font-size: 1.28rem;
  line-height: 1.2;
}

.bath-price-split em {
  align-self: end;
  color: var(--price-blue);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--price-brass);
  padding: 10px 12px;
  width: max-content;
  max-width: 100%;
}

.bath-price-logistics {
  display: grid;
  gap: 10px;
}

.bath-price-logistics article {
  grid-template-columns: 44px minmax(154px, 0.32fr) minmax(0, 1fr);
  align-items: center;
  min-height: 86px;
  padding: 18px 20px;
}

.bath-price-logistics span,
.bath-price-offer span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--price-blue) !important;
  background: var(--price-cream);
}

.bath-price-logistics p {
  font-size: 0.94rem;
}

.bath-price-offer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bath-price-offer article {
  min-height: 194px;
  padding: 22px;
  border-top: 4px solid var(--price-sage);
}

.bath-price-offer article:nth-child(3n + 2) {
  border-top-color: var(--price-brass);
}

.bath-price-offer article:nth-child(3n) {
  border-top-color: var(--price-clay);
}

.bath-offer-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bath-offer-matrix article {
  min-height: 220px;
  padding: 24px;
  border-top: 4px solid var(--price-sage);
}

.bath-offer-matrix article:nth-child(2),
.bath-offer-matrix article:nth-child(3) {
  background: rgba(33, 63, 93, 0.86);
}

.bath-offer-matrix article:nth-child(2) {
  border-top-color: var(--price-brass);
}

.bath-offer-matrix article:nth-child(4) {
  border-top-color: var(--price-clay);
}

.bath-offer-matrix span {
  width: fit-content;
  max-width: 100%;
  padding-bottom: 8px;
  color: #efc56e;
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  border-bottom: 2px solid var(--price-brass);
}

.bath-offer-matrix strong {
  color: var(--price-cream);
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 640;
  line-height: 1.24;
}

.bath-trade-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.bath-trade-matrix article {
  min-height: 146px;
  padding: 18px;
  border-top: 4px solid var(--price-sage);
}

.bath-trade-matrix article:nth-child(3n + 2) {
  background: rgba(33, 63, 93, 0.86);
  border-top-color: var(--price-brass);
}

.bath-trade-matrix article:nth-child(3n) {
  border-top-color: var(--price-clay);
}

.bath-trade-matrix span {
  color: #efc56e;
  font-family: var(--caption);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  line-height: 1.22;
  text-transform: uppercase;
}

.bath-trade-matrix strong {
  color: var(--price-cream);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.2;
}

.bath-trade-matrix p {
  align-self: end;
  color: var(--price-cream) !important;
  font-family: var(--sans) !important;
  font-size: clamp(1.46rem, 2.1vw, 2.15rem) !important;
  font-weight: 680;
  line-height: 1;
}

@media (max-width: 1080px) {
  .blog-article__section .blog-infographic--bath-preflight,
  .blog-article__section .blog-infographic--bath-threshold,
  .blog-article__section .blog-infographic--bath-drain,
  .blog-article__section .blog-infographic--bath-section,
  .blog-article__section .blog-infographic--bath-cost-model {
    padding: 38px 34px;
  }

  .bath-preflight-board__tracks,
  .bath-threshold-map {
    grid-template-columns: 1fr;
  }

  .bath-threshold-map__check {
    grid-template-columns: 1fr 1fr;
  }

  .bath-threshold-map__check strong {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bath-drain-plan,
  .bath-section-stack {
    grid-template-columns: 1fr;
  }

  .bath-drain-plan__drawing {
    min-height: 330px;
  }

  .bath-cost-model__rows article {
    grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  }

  .bath-cost-model__rows em {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic--bath-preflight,
  .blog-article__section .blog-infographic--bath-threshold,
  .blog-article__section .blog-infographic--bath-drain,
  .blog-article__section .blog-infographic--bath-section,
  .blog-article__section .blog-infographic--bath-cost-model {
    padding: 28px 20px;
  }

  .blog-article__section .blog-infographic--bath-preflight .blog-infographic__head,
  .blog-article__section .blog-infographic--bath-threshold .blog-infographic__head,
  .blog-article__section .blog-infographic--bath-drain .blog-infographic__head,
  .blog-article__section .blog-infographic--bath-section .blog-infographic__head,
  .blog-article__section .blog-infographic--bath-cost-model .blog-infographic__head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
    padding-bottom: 22px;
  }

  .blog-article__section .blog-infographic--bath-preflight .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-threshold .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-drain .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-section .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-cost-model .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-preflight .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-threshold .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-drain .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-section .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-cost-model .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-preflight .blog-infographic__note,
  .blog-article__section .blog-infographic--bath-threshold .blog-infographic__note,
  .blog-article__section .blog-infographic--bath-drain .blog-infographic__note,
  .blog-article__section .blog-infographic--bath-section .blog-infographic__note,
  .blog-article__section .blog-infographic--bath-cost-model .blog-infographic__note {
    grid-column: auto;
    grid-row: auto;
  }

  .blog-article__section .blog-infographic--bath-preflight .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-threshold .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-drain .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-section .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-cost-model .blog-infographic__title {
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .bath-preflight-board__gate,
  .bath-preflight-board__result,
  .bath-threshold-map__check,
  .bath-cost-model__formula,
  .bath-cost-model__rows article {
    grid-template-columns: 1fr;
  }

  .bath-preflight-board__tracks article,
  .bath-threshold-map__item {
    min-height: 0;
    padding: 22px 20px;
  }

  .bath-drain-plan__drawing,
  .bath-section-stack__visual {
    min-height: 310px;
  }

  .bath-drain-plan__arrow--one {
    width: 190px;
  }

  .bath-drain-plan__arrow--two {
    width: 160px;
  }

  .bath-drain-plan__arrow--three {
    width: 110px;
  }

  .bath-section-stack__checks article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .bath-section-stack__checks p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1080px) {
  .blog-article__section .blog-infographic--bath-price-snapshot,
  .blog-article__section .blog-infographic--bath-price-base,
  .blog-article__section .blog-infographic--bath-price-new,
  .blog-article__section .blog-infographic--bath-price-logistics,
  .blog-article__section .blog-infographic--bath-price-offer,
  .blog-article__section .blog-infographic--bath-price-trades {
    padding: 38px 34px;
  }

  .bath-price-ladder,
  .bath-price-offer,
  .bath-offer-matrix,
  .bath-trade-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bath-price-equation {
    grid-template-columns: 1fr;
  }

  .bath-price-equation > b {
    min-height: 42px;
  }

  .bath-price-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .blog-article-table {
    max-width: 100%;
    margin: 18px 0 14px;
    overflow: visible;
    background: transparent;
    border: 0;
  }

  .blog-article-table table {
    display: block;
    min-width: 0;
  }

  .blog-article-table thead {
    display: none;
  }

  .blog-article-table tbody {
    display: grid;
    gap: 10px;
  }

  .blog-article-table tbody tr {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(23, 52, 82, 0.12);
    background: #fbf7ef;
  }

  .blog-article-table tbody tr:nth-child(even) {
    background: #f0eadf;
  }

  .blog-article-table tbody tr:hover {
    background: #fbf7ef;
  }

  .blog-article-table th,
  .blog-article-table td,
  .blog-article-table td + td {
    border-left: 0;
  }

  .blog-article-table td {
    display: grid;
    grid-template-columns: minmax(82px, 0.44fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    width: 100%;
    min-width: 0;
    padding: 11px 12px;
    border-bottom: 1px solid rgba(23, 52, 82, 0.08);
    font-size: 0.86rem;
    line-height: 1.36;
    overflow-wrap: anywhere;
  }

  .blog-article-table tbody td:first-child {
    background: rgba(23, 52, 82, 0.065);
  }

  .blog-article-table tbody td:last-child {
    border-bottom: 0;
  }

  .blog-article-table tbody tr:last-child td:not(:last-child) {
    border-bottom: 1px solid rgba(23, 52, 82, 0.08);
  }

  .blog-article-table td::before {
    color: var(--blog-accent);
    font-family: var(--caption);
    font-size: 0.58rem;
    font-weight: 760;
    letter-spacing: 0.07em;
    line-height: 1.22;
    text-transform: uppercase;
    content: attr(data-label);
    overflow-wrap: anywhere;
  }

  .blog-article__section .blog-infographic--bath-price-snapshot,
  .blog-article__section .blog-infographic--bath-price-base,
  .blog-article__section .blog-infographic--bath-price-new,
  .blog-article__section .blog-infographic--bath-price-logistics,
  .blog-article__section .blog-infographic--bath-price-offer,
  .blog-article__section .blog-infographic--bath-price-trades {
    padding: 28px 20px;
  }

  .blog-article__section .blog-infographic--bath-price-snapshot .blog-infographic__head,
  .blog-article__section .blog-infographic--bath-price-base .blog-infographic__head,
  .blog-article__section .blog-infographic--bath-price-new .blog-infographic__head,
  .blog-article__section .blog-infographic--bath-price-logistics .blog-infographic__head,
  .blog-article__section .blog-infographic--bath-price-offer .blog-infographic__head,
  .blog-article__section .blog-infographic--bath-price-trades .blog-infographic__head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
    padding-bottom: 22px;
  }

  .blog-article__section .blog-infographic--bath-price-snapshot .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-price-base .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-price-new .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-price-logistics .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-price-offer .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-price-trades .blog-infographic__label,
  .blog-article__section .blog-infographic--bath-price-snapshot .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-base .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-new .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-logistics .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-offer .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-trades .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-snapshot .blog-infographic__note,
  .blog-article__section .blog-infographic--bath-price-base .blog-infographic__note,
  .blog-article__section .blog-infographic--bath-price-new .blog-infographic__note,
  .blog-article__section .blog-infographic--bath-price-logistics .blog-infographic__note,
  .blog-article__section .blog-infographic--bath-price-offer .blog-infographic__note,
  .blog-article__section .blog-infographic--bath-price-trades .blog-infographic__note {
    grid-column: auto;
    grid-row: auto;
  }

  .blog-article__section .blog-infographic--bath-price-snapshot .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-base .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-new .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-logistics .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-offer .blog-infographic__title,
  .blog-article__section .blog-infographic--bath-price-trades .blog-infographic__title {
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .bath-price-ladder,
  .bath-price-offer,
  .bath-offer-matrix,
  .bath-trade-matrix {
    grid-template-columns: 1fr;
  }

  .bath-price-ladder article,
  .bath-price-equation article,
  .bath-price-split article,
  .bath-price-offer article,
  .bath-offer-matrix article,
  .bath-trade-matrix article {
    min-height: 0;
    padding: 22px 20px;
  }

  .bath-price-logistics article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px;
  }

  .bath-price-logistics p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic,
  .blog-article__section .blog-infographic--strong {
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .blog-article__section .blog-infographic--strong {
    padding: 28px clamp(20px, 5.7vw, 28px);
    border-right: 1px solid #10283f;
    border-left: 1px solid #10283f;
  }

  .blog-article__section .blog-infographic--strong .blog-infographic__head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 24px;
    padding-bottom: 22px;
  }

  .blog-article__section .blog-infographic--strong .blog-infographic__label {
    max-width: 100%;
    font-size: 0.62rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .blog-article__section .blog-infographic--strong .blog-infographic__label::after {
    width: min(154px, 100%);
    max-width: 100%;
    margin-top: 12px;
  }

  .blog-article__section .blog-infographic--strong .blog-infographic__title {
    max-width: none;
    font-size: clamp(1.28rem, 6.1vw, 1.7rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .blog-article__section .blog-infographic--strong .blog-infographic__note,
  .blog-article__section .blog-infographic--strong p,
  .blog-article__section .blog-infographic--strong dd,
  .blog-article__section .blog-infographic--strong span,
  .blog-article__section .blog-infographic--strong strong,
  .blog-article__section .blog-infographic--strong em {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .blog-article__section .blog-infographic--strong .blog-infographic__note {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .blog-article__section .blog-infographic--strong * {
    min-width: 0;
  }

  .blog-article__section .blog-info-process,
  .blog-article__section .blog-info-rules,
  .blog-article__section .blog-info-timeline,
  .blog-article__section .blog-info-command,
  .blog-article__section .blog-info-decision,
  .blog-article__section .blog-info-layer,
  .blog-article__section .blog-info-risk-map,
  .blog-article__section .blog-info-contract-grid,
  .blog-article__section .blog-info-permit-flow,
  .blog-article__section .blog-info-permit-system,
  .blog-article__section .blog-info-air-path,
  .blog-article__section .blog-info-triad,
  .blog-article__section .blog-info-layer-stack,
  .blog-article__section .blog-info-cost-board,
  .blog-article__section .blog-info-laundry-blueprint,
  .blog-article__section .blog-info-laundry-room-map,
  .blog-article__section .blog-info-laundry-water-map,
  .blog-article__section .blog-info-laundry-machine-map,
  .blog-article__section .blog-info-laundry-service-map,
  .blog-article__section .blog-info-laundry-cost-matrix,
  .blog-article__section .blog-info-laundry-docs-package,
  .blog-article__section .bath-price-ladder,
  .blog-article__section .bath-price-equation,
  .blog-article__section .bath-price-split,
  .blog-article__section .bath-price-offer,
  .blog-article__section .bath-offer-matrix,
  .blog-article__section .bath-trade-matrix,
  .blog-article__section .reno-risk-chain,
  .blog-article__section .reno-compass,
  .blog-article__section .reno-preflight,
  .blog-article__section .reno-score,
  .blog-article__section .reno-budget,
  .blog-article__section .reno-offer,
  .blog-article__section .reno-regulation,
  .blog-article__section .reno-gates,
  .blog-article__section .reno-docs {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-article__section .blog-info-risk-map,
  .blog-article__section .blog-info-contract-grid,
  .blog-article__section .blog-info-cost-board {
    background: transparent;
    border: 0;
    overflow: visible;
  }

  .blog-article__section .blog-info-step,
  .blog-article__section .blog-info-rule,
  .blog-article__section .blog-info-time,
  .blog-article__section .blog-info-command div,
  .blog-article__section .blog-info-decision div,
  .blog-article__section .blog-info-layer div,
  .blog-article__section .blog-info-risk-map article,
  .blog-article__section .blog-info-contract-grid article,
  .blog-article__section .blog-info-permit-flow article,
  .blog-article__section .blog-info-permit-system article,
  .blog-article__section .blog-info-air-path article,
  .blog-article__section .blog-info-triad article,
  .blog-article__section .blog-info-layer-stack article,
  .blog-article__section .bath-price-ladder article,
  .blog-article__section .bath-price-equation article,
  .blog-article__section .bath-price-split article,
  .blog-article__section .bath-price-offer article,
  .blog-article__section .bath-offer-matrix article,
  .blog-article__section .bath-trade-matrix article,
  .blog-article__section .reno-risk-chain article,
  .blog-article__section .reno-compass article,
  .blog-article__section .reno-preflight article,
  .blog-article__section .reno-score article,
  .blog-article__section .reno-budget article,
  .blog-article__section .reno-offer article,
  .blog-article__section .reno-regulation article,
  .blog-article__section .reno-gates article,
  .blog-article__section .reno-docs article {
    min-height: 0;
    padding: 18px;
    border: 1px solid var(--strong-line);
  }

  .blog-article__section .blog-info-risk-map article > span,
  .blog-article__section .blog-info-contract-grid article > span {
    width: fit-content;
    max-width: 100%;
    font-size: 0.62rem;
    line-height: 1.2;
    white-space: normal;
  }

  .blog-article__section .blog-info-layer-stack article,
  .blog-article__section .bath-price-logistics article {
    grid-template-columns: 1fr;
  }

  .blog-article__section .blog-info-layer-stack article p,
  .blog-article__section .bath-price-logistics p {
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  .blog-article__section .blog-infographic--strong {
    padding-inline: clamp(20px, 6vw, 24px);
  }

  .blog-article__section .blog-infographic--strong .blog-infographic__title {
    font-size: clamp(1.22rem, 6.65vw, 1.56rem);
  }
}

.blog-article__section .blog-infographic--offer-layers,
.blog-article__section .blog-infographic--offer-docs,
.blog-article__section .blog-infographic--offer-clauses,
.blog-article__section .blog-infographic--offer-payment,
.blog-article__section .blog-infographic--offer-score {
  --offer-blue: #173452;
  --offer-blue-deep: #0d253a;
  --offer-blue-panel: #203e5a;
  --offer-cream: #fbf5eb;
  --offer-paper: #f9f4ea;
  --offer-paper-warm: #f5ece1;
  --offer-line: rgba(251, 245, 235, 0.2);
  --offer-ink: #14263a;
  --offer-muted: #5f6a70;
  --offer-gold: #d99b35;
  --offer-green: #93a77f;
  --offer-red: #c65f4a;
  max-width: 1040px;
  padding: 48px;
  color: var(--offer-cream);
  background:
    linear-gradient(135deg, rgba(251, 245, 235, 0.06), transparent 34%),
    var(--offer-blue);
  border: 1px solid rgba(13, 37, 58, 0.95);
  box-shadow: none;
}

.blog-article__section .blog-infographic--offer-layers::before,
.blog-article__section .blog-infographic--offer-docs::before,
.blog-article__section .blog-infographic--offer-clauses::before,
.blog-article__section .blog-infographic--offer-payment::before,
.blog-article__section .blog-infographic--offer-score::before {
  background:
    linear-gradient(90deg, rgba(251, 245, 235, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 245, 235, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.55;
}

.blog-article__section .blog-infographic--offer-layers .blog-infographic__head,
.blog-article__section .blog-infographic--offer-docs .blog-infographic__head,
.blog-article__section .blog-infographic--offer-clauses .blog-infographic__head,
.blog-article__section .blog-infographic--offer-payment .blog-infographic__head,
.blog-article__section .blog-infographic--offer-score .blog-infographic__head {
  align-items: start;
  margin-bottom: 32px;
  border-bottom-color: var(--offer-line);
}

.blog-article__section .blog-infographic--offer-layers .blog-infographic__label,
.blog-article__section .blog-infographic--offer-docs .blog-infographic__label,
.blog-article__section .blog-infographic--offer-clauses .blog-infographic__label,
.blog-article__section .blog-infographic--offer-payment .blog-infographic__label,
.blog-article__section .blog-infographic--offer-score .blog-infographic__label {
  color: #efc56e;
}

.blog-article__section .blog-infographic--offer-layers .blog-infographic__label::after,
.blog-article__section .blog-infographic--offer-docs .blog-infographic__label::after,
.blog-article__section .blog-infographic--offer-clauses .blog-infographic__label::after,
.blog-article__section .blog-infographic--offer-payment .blog-infographic__label::after,
.blog-article__section .blog-infographic--offer-score .blog-infographic__label::after {
  background: var(--offer-gold);
}

.blog-article__section .blog-infographic--offer-layers .blog-infographic__title,
.blog-article__section .blog-infographic--offer-docs .blog-infographic__title,
.blog-article__section .blog-infographic--offer-clauses .blog-infographic__title,
.blog-article__section .blog-infographic--offer-payment .blog-infographic__title,
.blog-article__section .blog-infographic--offer-score .blog-infographic__title {
  color: var(--offer-cream);
  font-size: 2rem;
  font-weight: 560;
}

.blog-article__section .blog-infographic--offer-layers .blog-infographic__note,
.blog-article__section .blog-infographic--offer-docs .blog-infographic__note,
.blog-article__section .blog-infographic--offer-clauses .blog-infographic__note,
.blog-article__section .blog-infographic--offer-payment .blog-infographic__note,
.blog-article__section .blog-infographic--offer-score .blog-infographic__note {
  color: rgba(251, 245, 235, 0.78);
}

@media (min-width: 761px) {
  .blog-article__section .blog-infographic--offer-layers .blog-infographic__head,
  .blog-article__section .blog-infographic--offer-docs .blog-infographic__head,
  .blog-article__section .blog-infographic--offer-clauses .blog-infographic__head,
  .blog-article__section .blog-infographic--offer-payment .blog-infographic__head,
  .blog-article__section .blog-infographic--offer-score .blog-infographic__head {
    grid-template-columns: minmax(140px, 0.24fr) minmax(0, 1fr);
  }

  .blog-article__section .blog-infographic--offer-layers .blog-infographic__label,
  .blog-article__section .blog-infographic--offer-docs .blog-infographic__label,
  .blog-article__section .blog-infographic--offer-clauses .blog-infographic__label,
  .blog-article__section .blog-infographic--offer-payment .blog-infographic__label,
  .blog-article__section .blog-infographic--offer-score .blog-infographic__label {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .blog-article__section .blog-infographic--offer-layers .blog-infographic__title,
  .blog-article__section .blog-infographic--offer-docs .blog-infographic__title,
  .blog-article__section .blog-infographic--offer-clauses .blog-infographic__title,
  .blog-article__section .blog-infographic--offer-payment .blog-infographic__title,
  .blog-article__section .blog-infographic--offer-score .blog-infographic__title,
  .blog-article__section .blog-infographic--offer-layers .blog-infographic__note,
  .blog-article__section .blog-infographic--offer-docs .blog-infographic__note,
  .blog-article__section .blog-infographic--offer-clauses .blog-infographic__note,
  .blog-article__section .blog-infographic--offer-payment .blog-infographic__note,
  .blog-article__section .blog-infographic--offer-score .blog-infographic__note {
    grid-column: 2;
    max-width: 720px;
  }
}

.offer-layer-grid,
.offer-doc-compare,
.offer-clause-board,
.offer-payment-line,
.offer-scorecard {
  position: relative;
  z-index: 1;
}

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

.offer-layer-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 166px;
  padding: 20px;
  background: rgba(13, 37, 58, 0.74);
  border: 1px solid var(--offer-line);
  border-top: 4px solid var(--offer-green);
}

.offer-layer-grid article:nth-child(3n + 2) {
  background: rgba(32, 62, 90, 0.82);
}

.offer-layer-grid article:nth-child(3n) {
  border-top-color: var(--offer-gold);
}

.offer-layer-grid span,
.offer-clause-board span,
.offer-payment-line span,
.offer-scorecard span {
  color: #efc56e;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.offer-layer-grid strong,
.offer-clause-board strong,
.offer-payment-line strong,
.offer-scorecard strong {
  color: var(--offer-cream);
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 620;
  line-height: 1.18;
}

.offer-layer-grid p,
.offer-clause-board p,
.offer-payment-line p {
  margin: 0;
  color: rgba(251, 245, 235, 0.74);
  font-family: var(--text);
  font-size: 0.93rem;
  line-height: 1.52;
}

.offer-doc-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.offer-doc-compare--stacked {
  grid-template-columns: 1fr;
  gap: 28px;
}

.offer-doc {
  display: grid;
  gap: 15px;
  min-width: 0;
  padding: 22px;
  color: var(--offer-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.18)),
    var(--offer-paper);
  border: 1px solid rgba(13, 37, 58, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  overflow-wrap: anywhere;
}

.offer-doc--summary {
  width: min(100%, 760px);
  margin-inline: auto;
}

.offer-doc--detailed {
  padding: 30px;
}

.offer-doc--good {
  border-top: 6px solid var(--offer-green);
}

.offer-doc--bad {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12)),
    var(--offer-paper-warm);
  border-top: 6px solid var(--offer-red);
}

.offer-doc__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 38, 58, 0.16);
}

.offer-doc__top span {
  grid-column: 1 / -1;
  color: var(--offer-muted);
  font-family: var(--caption);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__top span {
  color: var(--offer-muted);
}

.offer-doc__top strong {
  color: var(--offer-ink);
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 760;
  line-height: 1.12;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__top strong {
  color: var(--offer-ink);
}

.offer-doc__top em {
  justify-self: end;
  color: var(--offer-muted);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__top em {
  color: var(--offer-muted);
}

.offer-doc__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  background: rgba(23, 52, 82, 0.055);
  border: 1px solid rgba(23, 52, 82, 0.08);
}

.offer-doc__meta span {
  color: #354b5c;
  font-family: var(--text);
  font-size: 0.76rem;
  line-height: 1.32;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__meta span {
  color: #354b5c;
}

.offer-doc__rows {
  display: grid;
  gap: 7px;
}

.offer-doc__rows div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(82px, auto) minmax(98px, auto);
  gap: 10px;
  align-items: start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(20, 38, 58, 0.12);
}

.offer-doc__rows div:last-child {
  border-bottom: 0;
}

.offer-doc__rows span {
  color: var(--offer-ink);
  font-family: var(--text);
  font-size: 0.82rem;
  line-height: 1.34;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__rows span {
  color: var(--offer-ink);
}

.offer-doc__rows strong {
  color: var(--offer-ink);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.28;
  text-align: right;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__rows strong {
  color: var(--offer-ink);
}

.offer-doc__rows em {
  color: #486171;
  font-family: var(--caption);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 720;
  letter-spacing: 0.03em;
  line-height: 1.26;
  text-align: right;
  text-transform: uppercase;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__rows em {
  color: #486171;
}

.offer-doc__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: start;
  padding-top: 15px;
  border-top: 2px solid rgba(20, 38, 58, 0.28);
}

.offer-doc__footer span {
  color: var(--offer-muted);
  font-family: var(--caption);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__footer span {
  color: var(--offer-muted);
}

.offer-doc__footer strong {
  color: var(--offer-ink);
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 780;
  line-height: 1.08;
  text-align: right;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__footer strong {
  color: var(--offer-ink);
}

.offer-doc--bad .offer-doc__footer strong {
  color: #9e3f32;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc--bad .offer-doc__footer strong {
  color: #9e3f32;
}

.offer-doc__footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: #4d5c64;
  font-family: var(--text);
  font-size: 0.82rem;
  line-height: 1.48;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__footer p {
  color: #4d5c64;
}

.offer-doc__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 16px;
  background: #fff0e9;
  border: 1px solid rgba(164, 67, 52, 0.36);
  box-shadow: inset 4px 0 0 #a44334;
}

.offer-doc__flags strong {
  flex-basis: 100%;
  color: #7f2e25;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 800;
}

.offer-doc__flags span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  color: #fff;
  background: #a44334;
  border: 1px solid #8e362b;
  box-shadow: 0 1px 0 rgba(20, 38, 58, 0.08);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.offer-doc__intro {
  display: grid;
  gap: 8px;
  padding: 15px 16px;
  background: rgba(147, 167, 127, 0.12);
  border: 1px solid rgba(147, 167, 127, 0.28);
}

.offer-doc__intro strong {
  color: var(--offer-ink);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 760;
}

.offer-doc__intro p {
  margin: 0;
  color: #405462;
  font-family: var(--text);
  font-size: 0.86rem;
  line-height: 1.5;
}

.offer-doc-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.offer-doc-section {
  min-width: 0;
  background: rgba(23, 52, 82, 0.035);
  border: 1px solid rgba(20, 38, 58, 0.12);
}

.offer-doc-section header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 13px;
  background: rgba(23, 52, 82, 0.075);
  border-bottom: 1px solid rgba(20, 38, 58, 0.12);
}

.offer-doc-section header span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--offer-cream);
  background: var(--offer-blue);
  font-family: var(--caption);
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.06em;
}

.offer-doc-section header strong {
  color: var(--offer-ink);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.18;
}

.offer-doc-section header em {
  color: var(--offer-ink);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 780;
  line-height: 1.16;
  text-align: right;
  white-space: nowrap;
}

.offer-doc-section div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(76px, auto) minmax(86px, auto);
  gap: 10px;
  align-items: start;
  padding: 9px 13px;
  border-bottom: 1px solid rgba(20, 38, 58, 0.09);
}

.offer-doc-section div:last-child {
  border-bottom: 0;
}

.offer-doc-section div span {
  color: #203445;
  font-family: var(--text);
  font-size: 0.78rem;
  line-height: 1.34;
}

.offer-doc-section div strong {
  color: var(--offer-ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.28;
  text-align: right;
  white-space: nowrap;
}

.offer-doc-section div em {
  color: #486171;
  font-family: var(--caption);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.03em;
  line-height: 1.22;
  text-align: right;
  text-transform: uppercase;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__flags strong,
.blog-article__section .blog-infographic--offer-docs .offer-doc__flags span,
.blog-article__section .blog-infographic--offer-docs .offer-doc__intro strong,
.blog-article__section .blog-infographic--offer-docs .offer-doc__intro p,
.blog-article__section .blog-infographic--offer-docs .offer-doc-section header span,
.blog-article__section .blog-infographic--offer-docs .offer-doc-section header strong,
.blog-article__section .blog-infographic--offer-docs .offer-doc-section header em,
.blog-article__section .blog-infographic--offer-docs .offer-doc-section div span,
.blog-article__section .blog-infographic--offer-docs .offer-doc-section div strong,
.blog-article__section .blog-infographic--offer-docs .offer-doc-section div em {
  max-width: 100%;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__flags strong,
.blog-article__section .blog-infographic--offer-docs .offer-doc__flags span {
  color: #7f2e25;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__flags span {
  color: #fff !important;
  background: #a44334;
  border-color: #8e362b;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__intro strong,
.blog-article__section .blog-infographic--offer-docs .offer-doc-section header strong,
.blog-article__section .blog-infographic--offer-docs .offer-doc-section header em,
.blog-article__section .blog-infographic--offer-docs .offer-doc-section div strong {
  color: var(--offer-ink);
}

.blog-article__section .blog-infographic--offer-docs .offer-doc__intro p {
  color: #405462;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc-section header span {
  color: var(--offer-cream);
}

.blog-article__section .blog-infographic--offer-docs .offer-doc-section div span {
  color: #203445;
}

.blog-article__section .blog-infographic--offer-docs .offer-doc-section div em {
  color: #486171;
}

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

.offer-clause-board article {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  background: rgba(13, 37, 58, 0.78);
  border: 1px solid var(--offer-line);
}

.offer-clause-board article:first-child {
  border-top: 5px solid var(--offer-green);
}

.offer-clause-board article:last-child {
  border-top: 5px solid var(--offer-red);
}

.offer-clause-board strong {
  font-size: 1.08rem;
  line-height: 1.34;
}

.offer-payment-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.offer-payment-line article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 184px;
  padding: 20px;
  background: rgba(13, 37, 58, 0.78);
  border: 1px solid var(--offer-line);
  border-top: 5px solid var(--offer-gold);
}

.offer-payment-line article:last-child {
  border-top-color: var(--offer-green);
}

.offer-payment-line span {
  font-size: 1.34rem;
  letter-spacing: 0;
}

.offer-scorecard {
  display: grid;
  gap: 12px;
}

.offer-scorecard article {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(74px, auto) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(13, 37, 58, 0.78);
  border: 1px solid var(--offer-line);
}

.offer-scorecard article:nth-child(even) {
  background: rgba(32, 62, 90, 0.86);
}

.offer-scorecard strong {
  justify-self: end;
  color: var(--offer-cream);
  font-size: 1.08rem;
  white-space: nowrap;
}

.offer-scorecard i {
  display: block;
  width: 100%;
  height: 12px;
  overflow: hidden;
  background: rgba(251, 245, 235, 0.15);
}

.offer-scorecard i::before {
  display: block;
  width: var(--score);
  height: 100%;
  background: linear-gradient(90deg, var(--offer-green), var(--offer-gold));
  content: "";
}

@media (min-width: 1200px) {
  .blog-article__section .blog-infographic--offer-docs {
    width: min(1040px, calc(100vw - 96px));
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .offer-layer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-doc-compare,
  .offer-doc-sections,
  .offer-payment-line {
    grid-template-columns: 1fr;
  }

  .offer-payment-line article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic--offer-layers,
  .blog-article__section .blog-infographic--offer-docs,
  .blog-article__section .blog-infographic--offer-clauses,
  .blog-article__section .blog-infographic--offer-payment,
  .blog-article__section .blog-infographic--offer-score {
    padding: 28px clamp(18px, 5.6vw, 28px);
  }

  .blog-article__section .blog-infographic--offer-layers .blog-infographic__head,
  .blog-article__section .blog-infographic--offer-docs .blog-infographic__head,
  .blog-article__section .blog-infographic--offer-clauses .blog-infographic__head,
  .blog-article__section .blog-infographic--offer-payment .blog-infographic__head,
  .blog-article__section .blog-infographic--offer-score .blog-infographic__head {
    margin-bottom: 24px;
  }

  .blog-article__section .blog-infographic--offer-layers .blog-infographic__title,
  .blog-article__section .blog-infographic--offer-docs .blog-infographic__title,
  .blog-article__section .blog-infographic--offer-clauses .blog-infographic__title,
  .blog-article__section .blog-infographic--offer-payment .blog-infographic__title,
  .blog-article__section .blog-infographic--offer-score .blog-infographic__title {
    font-size: clamp(1.32rem, 6vw, 1.66rem);
  }

  .offer-layer-grid,
  .offer-clause-board {
    grid-template-columns: 1fr;
  }

  .offer-layer-grid article {
    min-height: 0;
    padding: 18px;
  }

  .offer-doc {
    padding: 18px;
  }

  .offer-doc__top,
  .offer-doc__meta,
  .offer-doc__rows div,
  .offer-doc__footer,
  .offer-doc-section header,
  .offer-doc-section div,
  .offer-scorecard article {
    grid-template-columns: 1fr;
  }

  .offer-doc__top em,
  .offer-doc__rows strong,
  .offer-doc__rows em,
  .offer-doc__footer strong,
  .offer-doc-section header em,
  .offer-doc-section div strong,
  .offer-doc-section div em,
  .offer-scorecard strong {
    justify-self: start;
    text-align: left;
  }

  .offer-doc__rows div {
    gap: 4px;
    padding: 11px 0;
  }

  .offer-clause-board article,
  .offer-doc--detailed,
  .offer-doc-section header,
  .offer-doc-section div,
  .offer-payment-line article,
  .offer-scorecard article {
    padding: 18px;
  }

  .offer-scorecard article {
    gap: 10px;
  }
}

.blog-article__section .blog-infographic--wellness-route,
.blog-article__section .blog-infographic--wellness-compass,
.blog-article__section .blog-infographic--wellness-price,
.blog-article__section .blog-infographic--wellness-risk,
.blog-article__section .blog-infographic--wellness-air,
.blog-article__section .blog-infographic--wellness-wetroom,
.blog-article__section .blog-infographic--wellness-power,
.blog-article__section .blog-infographic--wellness-material,
.blog-article__section .blog-infographic--wellness-offer,
.blog-article__section .blog-infographic--wellness-docs {
  --wellness-teal: #4ca8a1;
  --wellness-teal-deep: #1f6f73;
  --wellness-gold: #d7a64a;
  --wellness-panel: rgba(13, 37, 58, 0.84);
  --wellness-panel-alt: rgba(34, 71, 96, 0.9);
  --wellness-line: rgba(250, 246, 237, 0.2);
}

.wellness-route-map,
.wellness-compass,
.wellness-risk-zones,
.wellness-airflow,
.wellness-wetroom-zones,
.wellness-power-board,
.wellness-material-matrix,
.wellness-offer-review,
.wellness-docs-pack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--wellness-line);
  background: var(--wellness-line);
}

.wellness-route-map {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.wellness-compass,
.wellness-airflow,
.wellness-wetroom-zones,
.wellness-power-board,
.wellness-material-matrix,
.wellness-offer-review,
.wellness-docs-pack {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wellness-material-matrix,
.wellness-offer-review {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.wellness-route-map article,
.wellness-compass article,
.wellness-risk-zones article,
.wellness-airflow article,
.wellness-wetroom-zones article,
.wellness-power-board article,
.wellness-material-matrix article,
.wellness-offer-review article,
.wellness-docs-pack article {
  display: grid;
  align-content: start;
  gap: 13px;
  min-width: 0;
  min-height: 212px;
  padding: clamp(18px, 2vw, 24px);
  background: var(--wellness-panel);
  border-top: 4px solid var(--wellness-teal);
  overflow-wrap: break-word;
}

.wellness-route-map article {
  grid-column: span 2;
}

.wellness-route-map article:nth-last-child(2),
.wellness-route-map article:last-child {
  grid-column: span 3;
}

.wellness-route-map article:nth-child(even),
.wellness-compass article:nth-child(4n+2),
.wellness-compass article:nth-child(4n+3),
.wellness-risk-zones article:nth-child(even),
.wellness-airflow article:nth-child(even),
.wellness-wetroom-zones article:nth-child(even),
.wellness-power-board article:nth-child(even),
.wellness-material-matrix article:nth-child(even),
.wellness-offer-review article:nth-child(even),
.wellness-docs-pack article:nth-child(even) {
  background: var(--wellness-panel-alt);
  border-top-color: var(--wellness-gold);
}

.wellness-route-map span,
.wellness-compass span,
.wellness-risk-zones span,
.wellness-airflow span,
.wellness-wetroom-zones span,
.wellness-power-board span,
.wellness-material-matrix span,
.wellness-offer-review span,
.wellness-docs-pack span {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-width: 38px;
  min-height: 38px;
  padding: 0 10px;
  color: #082034;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  background: #faf6ed;
}

.wellness-compass span,
.wellness-risk-zones span,
.wellness-power-board span {
  color: #f7f0e6;
  background: var(--wellness-teal-deep);
}

.wellness-material-matrix span,
.wellness-offer-review span {
  color: #082034;
  background: #c9ede8;
}

.blog-article__section .blog-infographic--strong .wellness-route-map span,
.blog-article__section .blog-infographic--strong .wellness-airflow span,
.blog-article__section .blog-infographic--strong .wellness-wetroom-zones span,
.blog-article__section .blog-infographic--strong .wellness-docs-pack span {
  color: #082034;
}

.blog-article__section .blog-infographic--strong .wellness-compass span,
.blog-article__section .blog-infographic--strong .wellness-risk-zones span,
.blog-article__section .blog-infographic--strong .wellness-power-board span {
  color: #f7f0e6;
}

.blog-article__section .blog-infographic--strong .wellness-material-matrix span,
.blog-article__section .blog-infographic--strong .wellness-offer-review span {
  color: #082034;
}

.wellness-icon {
  border-radius: 0;
}

.wellness-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wellness-route-map strong,
.wellness-compass strong,
.wellness-risk-zones strong,
.wellness-airflow strong,
.wellness-wetroom-zones strong,
.wellness-power-board strong,
.wellness-material-matrix strong,
.wellness-offer-review strong,
.wellness-docs-pack strong {
  color: #fff8ec;
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.16vw, 1.16rem);
  font-weight: 660;
  letter-spacing: 0;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.blog-article__section .blog-infographic--strong .wellness-route-map p,
.blog-article__section .blog-infographic--strong .wellness-compass p,
.blog-article__section .blog-infographic--strong .wellness-risk-zones p,
.blog-article__section .blog-infographic--strong .wellness-airflow p,
.blog-article__section .blog-infographic--strong .wellness-wetroom-zones p,
.blog-article__section .blog-infographic--strong .wellness-power-board p,
.blog-article__section .blog-infographic--strong .wellness-material-matrix p,
.blog-article__section .blog-infographic--strong .wellness-offer-review p,
.blog-article__section .blog-infographic--strong .wellness-docs-pack p {
  color: rgba(250, 246, 237, 0.86);
  font-size: clamp(0.93rem, 1vw, 1rem);
  line-height: 1.55;
}

.wellness-route-map em {
  align-self: end;
  width: fit-content;
  padding-top: 12px;
  color: #f4d28c;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
  border-top: 2px solid var(--wellness-teal);
}

.wellness-price-ladder {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.wellness-price-ladder article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 0.25fr) minmax(110px, auto) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 20px 22px 24px;
  overflow: hidden;
  background: rgba(13, 37, 58, 0.86);
  border: 1px solid var(--wellness-line);
}

.wellness-price-ladder article:nth-child(even) {
  background: rgba(34, 71, 96, 0.9);
}

.wellness-price-ladder article::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--w);
  height: 5px;
  background: linear-gradient(90deg, var(--wellness-teal), var(--wellness-gold));
  content: "";
}

.wellness-price-ladder span {
  color: #c9ede8;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wellness-price-ladder strong {
  color: #fff8ec;
  font-family: var(--display);
  font-size: clamp(1.32rem, 2vw, 2rem);
  font-weight: 420;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.blog-article__section .blog-infographic--strong .wellness-price-ladder p {
  color: rgba(250, 246, 237, 0.86);
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.5;
}

.blog-cluster-links--wellness {
  border-top: 1px solid rgba(76, 168, 161, 0.42);
  border-bottom: 1px solid rgba(76, 168, 161, 0.32);
}

.blog-cluster-links--wellness > div p,
.blog-cluster-links--wellness a span {
  color: #1f6f73;
}

.blog-cluster-links--wellness > div p::after,
.blog-cluster-links--wellness a::before {
  background: #1f6f73;
}

@media (max-width: 1120px) {
  .wellness-route-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wellness-route-map article,
  .wellness-route-map article:nth-last-child(2),
  .wellness-route-map article:last-child {
    grid-column: auto;
  }

  .wellness-risk-zones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wellness-compass,
  .wellness-airflow,
  .wellness-wetroom-zones,
  .wellness-power-board,
  .wellness-material-matrix,
  .wellness-offer-review,
  .wellness-docs-pack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wellness-route-map article,
  .wellness-compass article,
  .wellness-risk-zones article,
  .wellness-airflow article,
  .wellness-wetroom-zones article,
  .wellness-power-board article,
  .wellness-material-matrix article,
  .wellness-offer-review article,
  .wellness-docs-pack article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic--wellness-route,
  .blog-article__section .blog-infographic--wellness-compass,
  .blog-article__section .blog-infographic--wellness-price,
  .blog-article__section .blog-infographic--wellness-risk,
  .blog-article__section .blog-infographic--wellness-air,
  .blog-article__section .blog-infographic--wellness-wetroom,
  .blog-article__section .blog-infographic--wellness-power,
  .blog-article__section .blog-infographic--wellness-material,
  .blog-article__section .blog-infographic--wellness-offer,
  .blog-article__section .blog-infographic--wellness-docs {
    padding: 28px clamp(18px, 5.6vw, 28px);
  }

  .wellness-route-map,
  .wellness-compass,
  .wellness-risk-zones,
  .wellness-airflow,
  .wellness-wetroom-zones,
  .wellness-power-board,
  .wellness-material-matrix,
  .wellness-offer-review,
  .wellness-docs-pack,
  .wellness-price-ladder article {
    grid-template-columns: 1fr;
  }

  .wellness-route-map article,
  .wellness-compass article,
  .wellness-risk-zones article,
  .wellness-airflow article,
  .wellness-wetroom-zones article,
  .wellness-power-board article,
  .wellness-material-matrix article,
  .wellness-offer-review article,
  .wellness-docs-pack article,
  .wellness-price-ladder article {
    gap: 11px;
    padding: 18px;
  }

  .wellness-price-ladder strong {
    white-space: normal;
  }
}

.blog-article__section .blog-infographic--loft-gate,
.blog-article__section .blog-infographic--loft-price,
.blog-article__section .blog-infographic--loft-change,
.blog-article__section .blog-infographic--loft-fire,
.blog-article__section .blog-infographic--loft-roof,
.blog-article__section .blog-infographic--loft-offer {
  --loft-blue: #173452;
  --loft-blue-deep: #0b2237;
  --loft-panel: rgba(12, 37, 58, 0.9);
  --loft-panel-alt: rgba(36, 74, 98, 0.92);
  --loft-cream: #faf6ed;
  --loft-cream-soft: rgba(250, 246, 237, 0.82);
  --loft-teal: #4ca8a1;
  --loft-teal-soft: #c9ede8;
  --loft-gold: #d7a64a;
  --loft-line: rgba(250, 246, 237, 0.2);
}

.loft-gate-grid,
.loft-change-route,
.loft-fire-light,
.loft-roof-stack,
.loft-offer-audit {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--loft-line);
  background: var(--loft-line);
}

.loft-gate-grid,
.loft-fire-light,
.loft-offer-audit {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.loft-change-route {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.24fr) minmax(0, 0.86fr);
}

.loft-roof-stack {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.loft-gate-grid article,
.loft-change-route article,
.loft-fire-light article,
.loft-roof-stack article,
.loft-offer-audit article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 214px;
  padding: clamp(18px, 2vw, 24px);
  overflow-wrap: break-word;
  background: var(--loft-panel);
  border-top: 4px solid var(--loft-teal);
}

.loft-gate-grid article:nth-child(even),
.loft-change-route article:nth-child(2),
.loft-fire-light article:nth-child(even),
.loft-roof-stack article:nth-child(even),
.loft-offer-audit article:nth-child(even) {
  background: var(--loft-panel-alt);
  border-top-color: var(--loft-gold);
}

.blog-article__section .blog-infographic--strong .loft-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #082034;
  background: var(--loft-teal-soft);
}

.blog-article__section .blog-infographic--strong .loft-gate-grid article:nth-child(even) .loft-icon,
.blog-article__section .blog-infographic--strong .loft-change-route article:nth-child(2) .loft-icon,
.blog-article__section .blog-infographic--strong .loft-fire-light article:nth-child(even) .loft-icon,
.blog-article__section .blog-infographic--strong .loft-offer-audit article:nth-child(even) .loft-icon {
  background: #fff1cf;
}

.loft-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loft-gate-grid article > span:not(.loft-icon),
.loft-change-route article > span:not(.loft-icon),
.loft-offer-audit article > span:not(.loft-icon),
.loft-roof-stack article > span,
.loft-price-board span {
  width: fit-content;
  color: var(--loft-teal-soft);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.loft-gate-grid strong,
.loft-change-route strong,
.loft-fire-light strong,
.loft-roof-stack strong,
.loft-offer-audit strong {
  color: #fff8ec;
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.16vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.blog-article__section .blog-infographic--strong .loft-gate-grid p,
.blog-article__section .blog-infographic--strong .loft-change-route p,
.blog-article__section .blog-infographic--strong .loft-fire-light p,
.blog-article__section .blog-infographic--strong .loft-roof-stack p,
.blog-article__section .blog-infographic--strong .loft-offer-audit p {
  color: var(--loft-cream-soft);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.52;
}

.loft-price-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.loft-price-board article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 0.23fr) minmax(120px, auto) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 20px 22px 24px;
  overflow: hidden;
  background: var(--loft-panel);
  border: 1px solid var(--loft-line);
}

.loft-price-board article:nth-child(even) {
  background: var(--loft-panel-alt);
}

.loft-price-board article::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--w);
  height: 5px;
  background: linear-gradient(90deg, var(--loft-teal), var(--loft-gold));
  content: "";
}

.loft-price-board strong {
  color: #fff8ec;
  font-family: var(--display);
  font-size: clamp(1.34rem, 2vw, 2rem);
  font-weight: 420;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.blog-article__section .blog-infographic--strong .loft-price-board p {
  color: var(--loft-cream-soft);
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.5;
}

.loft-change-route article:nth-child(2) {
  min-height: 244px;
  border-top-color: var(--loft-gold);
}

.loft-roof-stack article {
  min-height: 230px;
  border-top-color: var(--loft-teal);
}

.loft-roof-stack article::after {
  width: 30px;
  height: 2px;
  margin-top: auto;
  background: var(--loft-gold);
  content: "";
}

@media (max-width: 1120px) {
  .loft-gate-grid,
  .loft-fire-light,
  .loft-offer-audit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .loft-change-route,
  .loft-roof-stack {
    grid-template-columns: 1fr;
  }

  .loft-gate-grid article,
  .loft-change-route article,
  .loft-fire-light article,
  .loft-roof-stack article,
  .loft-offer-audit article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic--loft-gate,
  .blog-article__section .blog-infographic--loft-price,
  .blog-article__section .blog-infographic--loft-change,
  .blog-article__section .blog-infographic--loft-fire,
  .blog-article__section .blog-infographic--loft-roof,
  .blog-article__section .blog-infographic--loft-offer {
    padding: 28px clamp(18px, 5.6vw, 28px);
  }

  .loft-gate-grid,
  .loft-fire-light,
  .loft-offer-audit,
  .loft-price-board article {
    grid-template-columns: 1fr;
  }

  .loft-gate-grid article,
  .loft-change-route article,
  .loft-fire-light article,
  .loft-roof-stack article,
  .loft-offer-audit article,
  .loft-price-board article {
    gap: 11px;
    padding: 18px;
  }

  .loft-price-board strong {
    white-space: normal;
  }
}

.blog-article__section .blog-infographic--facade-layers,
.blog-article__section .blog-infographic--facade-detailmap,
.blog-article__section .blog-infographic--facade-offer,
.blog-article__section .blog-infographic--facade-score,
.blog-article__section .blog-infographic--facade-decision {
  --facade-blue: #17364a;
  --facade-blue-deep: #0d2635;
  --facade-cream: #fbf4e8;
  --facade-wood: #c99558;
  --facade-green: #96a979;
  --facade-steel: #90a7b2;
  --facade-line: rgba(251, 244, 232, 0.18);
  --offer-blue: var(--facade-blue);
  --offer-blue-deep: var(--facade-blue-deep);
  --offer-blue-panel: #25485d;
  --offer-cream: var(--facade-cream);
  --offer-paper: #fbf6ec;
  --offer-paper-warm: #f5eee2;
  --offer-line: rgba(23, 54, 74, 0.16);
  --offer-ink: #162938;
  --offer-muted: #65727b;
  --offer-gold: var(--facade-wood);
  --offer-green: var(--facade-green);
  --offer-red: #b45a46;
  max-width: 1040px;
  padding: 48px;
  color: var(--facade-cream);
  background:
    linear-gradient(135deg, rgba(251, 244, 232, 0.08), transparent 38%),
    linear-gradient(180deg, #1b3f56, var(--facade-blue-deep));
  border: 1px solid rgba(13, 38, 53, 0.94);
  box-shadow: none;
}

.blog-article__section .blog-infographic--facade-layers::before,
.blog-article__section .blog-infographic--facade-detailmap::before,
.blog-article__section .blog-infographic--facade-offer::before,
.blog-article__section .blog-infographic--facade-score::before,
.blog-article__section .blog-infographic--facade-decision::before {
  background:
    linear-gradient(90deg, rgba(251, 244, 232, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 244, 232, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.56;
}

.blog-article__section .blog-infographic--facade-layers .blog-infographic__head,
.blog-article__section .blog-infographic--facade-detailmap .blog-infographic__head,
.blog-article__section .blog-infographic--facade-offer .blog-infographic__head,
.blog-article__section .blog-infographic--facade-score .blog-infographic__head,
.blog-article__section .blog-infographic--facade-decision .blog-infographic__head {
  align-items: start;
  margin-bottom: 32px;
  border-bottom-color: var(--facade-line);
}

.blog-article__section .blog-infographic--facade-layers .blog-infographic__label,
.blog-article__section .blog-infographic--facade-detailmap .blog-infographic__label,
.blog-article__section .blog-infographic--facade-offer .blog-infographic__label,
.blog-article__section .blog-infographic--facade-score .blog-infographic__label,
.blog-article__section .blog-infographic--facade-decision .blog-infographic__label {
  color: #e9bf72;
}

.blog-article__section .blog-infographic--facade-layers .blog-infographic__label::after,
.blog-article__section .blog-infographic--facade-detailmap .blog-infographic__label::after,
.blog-article__section .blog-infographic--facade-offer .blog-infographic__label::after,
.blog-article__section .blog-infographic--facade-score .blog-infographic__label::after,
.blog-article__section .blog-infographic--facade-decision .blog-infographic__label::after {
  background: var(--facade-wood);
}

.blog-article__section .blog-infographic--facade-layers .blog-infographic__title,
.blog-article__section .blog-infographic--facade-detailmap .blog-infographic__title,
.blog-article__section .blog-infographic--facade-offer .blog-infographic__title,
.blog-article__section .blog-infographic--facade-score .blog-infographic__title,
.blog-article__section .blog-infographic--facade-decision .blog-infographic__title {
  color: var(--facade-cream);
  font-size: 2rem;
  font-weight: 560;
}

.blog-article__section .blog-infographic--facade-layers .blog-infographic__note,
.blog-article__section .blog-infographic--facade-detailmap .blog-infographic__note,
.blog-article__section .blog-infographic--facade-offer .blog-infographic__note,
.blog-article__section .blog-infographic--facade-score .blog-infographic__note,
.blog-article__section .blog-infographic--facade-decision .blog-infographic__note {
  color: rgba(251, 244, 232, 0.78);
}

.facade-layer-system,
.facade-detail-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 18px;
}

.facade-layer-wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 0;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(144, 167, 178, 0.18), transparent 30%),
    rgba(13, 38, 53, 0.68);
  border: 1px solid var(--facade-line);
}

.facade-layer-weather {
  grid-column: 1 / -1;
  padding: 9px 12px;
  color: #e9bf72;
  background: rgba(251, 244, 232, 0.08);
  border: 1px solid var(--facade-line);
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facade-layer-wall article,
.facade-layer-rule,
.facade-detail-list article,
.facade-decision-grid article {
  min-width: 0;
  border: 1px solid var(--facade-line);
}

.facade-layer-wall article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 5px 14px;
  align-content: start;
  min-height: 0;
  padding: 16px;
  background: rgba(251, 244, 232, 0.08);
  border-top: 0;
  border-left: 5px solid var(--facade-green);
}

.facade-layer-wall article:nth-of-type(even) {
  border-left-color: var(--facade-steel);
}

.facade-layer-wall article:nth-of-type(3n) {
  border-left-color: var(--facade-wood);
}

.facade-layer-wall article > span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--facade-blue-deep);
  background: var(--facade-cream);
  border: 1px solid rgba(251, 244, 232, 0.38);
}

.blog-article__section .blog-infographic--facade-layers .facade-layer-wall article > span {
  color: var(--facade-blue-deep) !important;
}

.facade-layer-wall span,
.facade-detail-list span,
.facade-decision-grid span,
.facade-scorecard span {
  color: #e9bf72;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  line-height: 1.22;
  text-transform: uppercase;
}

.facade-layer-wall strong,
.facade-layer-rule strong,
.facade-detail-list strong,
.facade-decision-grid strong,
.facade-scorecard strong {
  color: var(--facade-cream);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 660;
  line-height: 1.18;
}

.facade-layer-wall p,
.facade-layer-rule p,
.facade-detail-list p,
.facade-decision-grid p,
.facade-scorecard p {
  margin: 0;
  color: rgba(251, 244, 232, 0.75);
  font-family: var(--text);
  font-size: 0.91rem;
  line-height: 1.5;
}

.facade-layer-wall article p {
  grid-column: 2;
}

.facade-layer-rule {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(150, 169, 121, 0.2), transparent),
    rgba(13, 38, 53, 0.74);
  border-left: 5px solid var(--facade-green);
}

.facade-detail-elevation {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(123, 82, 42, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 244, 232, 0.16), transparent 44%),
    #d8b486;
  background-size: 22px 100%, auto, auto;
  border: 1px solid rgba(251, 244, 232, 0.3);
  box-shadow: inset 0 0 0 1px rgba(13, 38, 53, 0.2);
}

.facade-detail-elevation::before,
.facade-detail-elevation::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.facade-detail-elevation::before {
  top: 0;
  height: 54px;
  background:
    linear-gradient(180deg, rgba(251, 244, 232, 0.48), rgba(251, 244, 232, 0.18)),
    rgba(13, 38, 53, 0.18);
  border-bottom: 1px solid rgba(13, 38, 53, 0.22);
}

.facade-detail-elevation::after {
  bottom: 0;
  height: 82px;
  background:
    linear-gradient(90deg, rgba(251, 244, 232, 0.08) 1px, transparent 1px),
    rgba(13, 38, 53, 0.74);
  background-size: 24px 100%, auto;
  border-top: 1px solid rgba(13, 38, 53, 0.3);
}

.facade-detail-window,
.facade-detail-door {
  position: absolute;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 42%),
    #1d3443;
  border: 10px solid #334c58;
  box-shadow: 0 0 0 3px rgba(251, 244, 232, 0.52);
}

.facade-detail-window {
  top: 122px;
  left: 35%;
  width: 28%;
  height: 112px;
}

.facade-detail-door {
  right: 13%;
  bottom: 78px;
  width: 18%;
  height: 190px;
}

.facade-detail-pin {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  width: min(216px, 48%);
  padding: 8px 10px;
  color: var(--facade-blue-deep);
  background: var(--facade-cream);
  border: 1px solid rgba(13, 38, 53, 0.46);
  box-shadow: 0 14px 28px rgba(13, 38, 53, 0.22);
}

.facade-detail-pin i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--facade-cream);
  background: var(--facade-blue);
  font-family: var(--caption);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 820;
  letter-spacing: 0.05em;
}

.blog-article__section .blog-infographic--facade-detailmap .facade-detail-pin small {
  color: var(--facade-blue-deep);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.facade-detail-pin--1 {
  top: 18px;
  left: 18px;
}

.facade-detail-pin--2 {
  top: 104px;
  left: 46%;
}

.facade-detail-pin--3 {
  top: 174px;
  right: 18px;
}

.facade-detail-pin--4 {
  top: 270px;
  left: 24%;
}

.facade-detail-pin--5 {
  right: 18px;
  bottom: 106px;
}

.facade-detail-pin--6 {
  bottom: 22px;
  left: 18px;
}

.facade-detail-tag {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 8px 10px;
  color: var(--facade-blue-deep);
  background: var(--facade-cream);
  border: 1px solid rgba(13, 38, 53, 0.22);
  font-family: var(--caption);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.facade-detail-tag--roof {
  top: 18px;
  left: 18px;
}

.facade-detail-tag--top {
  top: 92px;
  left: 31%;
}

.facade-detail-tag--side {
  top: 170px;
  right: 9%;
}

.facade-detail-tag--sill {
  top: 250px;
  left: 23%;
}

.facade-detail-tag--corner {
  right: 18px;
  bottom: 34px;
}

.facade-detail-tag--base {
  left: 18px;
  bottom: 24px;
}

.facade-detail-list {
  display: grid;
  gap: 12px;
}

.facade-detail-list article,
.facade-decision-grid article {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
  background: rgba(13, 38, 53, 0.72);
}

.facade-detail-list article {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 7px 14px;
}

.facade-detail-list article > span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--facade-cream);
  background: var(--facade-blue);
  border: 1px solid rgba(251, 244, 232, 0.42);
}

.blog-article__section .blog-infographic--facade-detailmap .facade-detail-list article > span {
  color: var(--facade-cream) !important;
}

.facade-detail-list article > p {
  grid-column: 2;
}

.facade-offer-doc {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin-inline: auto;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--offer-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.44)),
    var(--offer-paper);
}

.facade-offer-sections {
  grid-template-columns: 1fr;
  gap: 14px;
}

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

.facade-offer-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.blog-article__section .blog-infographic--strong .facade-offer-proof span,
.blog-article__section .blog-infographic--facade-offer .facade-offer-proof span {
  display: grid;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: #183247;
  background: rgba(150, 169, 121, 0.2);
  border: 1px solid rgba(23, 54, 74, 0.14);
  font-family: var(--caption);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.22;
  text-transform: uppercase;
}

.facade-offer-doc .offer-doc-section {
  background: #fffdf8;
}

.facade-offer-doc .offer-doc-section header {
  grid-template-columns: 36px minmax(0, 1fr) auto;
  padding: 14px 16px;
  background: #e9ece7;
}

.facade-offer-doc .offer-doc-section header span {
  width: 32px;
  height: 32px;
}

.facade-offer-doc .offer-doc-section header strong {
  font-size: 1rem;
}

.facade-offer-doc .offer-doc-section div {
  grid-template-columns: minmax(190px, 1fr) minmax(110px, auto) minmax(150px, 0.42fr);
  gap: 14px;
  padding: 12px 16px;
}

.facade-offer-doc .offer-doc__footer {
  margin-top: 4px;
  padding: 18px 0 0;
}

.blog-article__section .blog-infographic--facade-offer .offer-doc__top span,
.blog-article__section .blog-infographic--facade-offer .offer-doc__footer span {
  color: var(--offer-muted);
}

.blog-article__section .blog-infographic--facade-offer .offer-doc__top strong,
.blog-article__section .blog-infographic--facade-offer .offer-doc__top em,
.blog-article__section .blog-infographic--facade-offer .offer-doc__intro strong,
.blog-article__section .blog-infographic--facade-offer .offer-doc-section header strong,
.blog-article__section .blog-infographic--facade-offer .offer-doc-section header em,
.blog-article__section .blog-infographic--facade-offer .offer-doc-section div strong,
.blog-article__section .blog-infographic--facade-offer .offer-doc__footer strong {
  color: var(--offer-ink);
}

.blog-article__section .blog-infographic--facade-offer .offer-doc__meta span {
  color: #354b5c;
}

.blog-article__section .blog-infographic--facade-offer .offer-doc__intro p,
.blog-article__section .blog-infographic--facade-offer .offer-doc__footer p {
  color: #405462;
}

.blog-article__section .blog-infographic--facade-offer .offer-doc-section header span {
  color: var(--offer-cream);
}

.blog-article__section .blog-infographic--facade-offer .offer-doc-section div span {
  color: #203445;
}

.blog-article__section .blog-infographic--facade-offer .offer-doc-section div em {
  color: #486171;
}

.facade-scorecard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.facade-scorecard article {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(74px, auto) minmax(0, 1fr);
  gap: 14px 18px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(13, 38, 53, 0.74);
  border: 1px solid var(--facade-line);
}

.facade-scorecard strong {
  justify-self: end;
  white-space: nowrap;
}

.facade-scorecard i {
  display: block;
  width: 100%;
  height: 12px;
  overflow: hidden;
  background: rgba(251, 244, 232, 0.14);
}

.facade-scorecard i::before {
  display: block;
  width: var(--score);
  height: 100%;
  background: linear-gradient(90deg, var(--facade-green), var(--facade-wood));
  content: "";
}

.facade-scorecard p {
  grid-column: 1 / -1;
}

.facade-decision-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.facade-decision-grid article {
  grid-column: span 2;
  min-width: 0;
  min-height: 0;
  padding: 22px;
  border-top: 5px solid var(--facade-wood);
}

.facade-decision-grid article:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.facade-decision-grid article:nth-child(2n) {
  border-top-color: var(--facade-green);
}

.facade-decision-grid span,
.facade-decision-grid strong,
.facade-decision-grid p,
.facade-decision-grid em {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.facade-decision-grid em {
  color: rgba(251, 244, 232, 0.7);
  font-family: var(--caption);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.07em;
  line-height: 1.24;
  text-transform: uppercase;
}

@media (min-width: 761px) {
  .blog-article__section .blog-infographic--facade-layers .blog-infographic__head,
  .blog-article__section .blog-infographic--facade-detailmap .blog-infographic__head,
  .blog-article__section .blog-infographic--facade-offer .blog-infographic__head,
  .blog-article__section .blog-infographic--facade-score .blog-infographic__head,
  .blog-article__section .blog-infographic--facade-decision .blog-infographic__head {
    grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  }

  .blog-article__section .blog-infographic--facade-layers .blog-infographic__label,
  .blog-article__section .blog-infographic--facade-detailmap .blog-infographic__label,
  .blog-article__section .blog-infographic--facade-offer .blog-infographic__label,
  .blog-article__section .blog-infographic--facade-score .blog-infographic__label,
  .blog-article__section .blog-infographic--facade-decision .blog-infographic__label {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .blog-article__section .blog-infographic--facade-layers .blog-infographic__title,
  .blog-article__section .blog-infographic--facade-detailmap .blog-infographic__title,
  .blog-article__section .blog-infographic--facade-offer .blog-infographic__title,
  .blog-article__section .blog-infographic--facade-score .blog-infographic__title,
  .blog-article__section .blog-infographic--facade-decision .blog-infographic__title,
  .blog-article__section .blog-infographic--facade-layers .blog-infographic__note,
  .blog-article__section .blog-infographic--facade-detailmap .blog-infographic__note,
  .blog-article__section .blog-infographic--facade-offer .blog-infographic__note,
  .blog-article__section .blog-infographic--facade-score .blog-infographic__note,
  .blog-article__section .blog-infographic--facade-decision .blog-infographic__note {
    grid-column: 2;
    max-width: 720px;
  }
}

@media (max-width: 980px) {
  .facade-layer-system,
  .facade-detail-map,
  .facade-offer-sections {
    grid-template-columns: 1fr;
  }

  .facade-offer-doc .offer-doc__meta,
  .facade-offer-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .facade-decision-grid article,
  .facade-decision-grid article:nth-last-child(-n + 2) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic--facade-layers,
  .blog-article__section .blog-infographic--facade-detailmap,
  .blog-article__section .blog-infographic--facade-offer,
  .blog-article__section .blog-infographic--facade-score,
  .blog-article__section .blog-infographic--facade-decision {
    padding: 28px clamp(18px, 5.6vw, 28px);
  }

  .blog-article__section .blog-infographic--facade-layers .blog-infographic__title,
  .blog-article__section .blog-infographic--facade-detailmap .blog-infographic__title,
  .blog-article__section .blog-infographic--facade-offer .blog-infographic__title,
  .blog-article__section .blog-infographic--facade-score .blog-infographic__title,
  .blog-article__section .blog-infographic--facade-decision .blog-infographic__title {
    font-size: clamp(1.3rem, 6.2vw, 1.62rem);
  }

  .facade-layer-wall,
  .facade-offer-doc .offer-doc__meta,
  .facade-offer-proof,
  .facade-scorecard article,
  .facade-decision-grid {
    grid-template-columns: 1fr;
  }

  .facade-layer-wall article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .facade-offer-doc .offer-doc-section header,
  .facade-offer-doc .offer-doc-section div,
  .facade-offer-doc .offer-doc__footer {
    grid-template-columns: 1fr;
  }

  .facade-offer-doc .offer-doc-section header em,
  .facade-offer-doc .offer-doc-section div strong,
  .facade-offer-doc .offer-doc-section div em,
  .facade-offer-doc .offer-doc__footer strong {
    justify-self: start;
    text-align: left;
  }

  .facade-layer-wall article,
  .facade-decision-grid article {
    min-height: 0;
  }

  .facade-detail-elevation {
    display: grid;
    gap: 8px;
    min-height: 0;
    padding: 16px;
    box-shadow: none;
  }

  .facade-detail-elevation::before,
  .facade-detail-elevation::after {
    display: none;
  }

  .facade-detail-window,
  .facade-detail-door {
    display: none;
  }

  .facade-detail-pin {
    position: static;
    width: auto;
    box-shadow: none;
  }

  .facade-detail-tag {
    position: static;
    max-width: none;
  }

  .facade-scorecard strong {
    justify-self: start;
  }
}

.article-hva-koster-det-a-pusse-opp-kjokken .blog-article-hero__media img {
  object-position: center 54%;
}

.blog-answer-panel--kitchen-price {
  --answer-blue: #173452;
  --answer-blue-deep: #0c2735;
  --answer-gold: #d79a3f;
}

.blog-answer-panel--kitchen-price .blog-answer-panel__grid strong {
  font-size: clamp(1.26rem, 1.58vw, 1.68rem);
  letter-spacing: 0;
}

.kitchen-price-trade-strip article:nth-child(odd) {
  background: rgba(143, 162, 138, 0.16);
}

.blog-answer-panel--kitchen-price .kitchen-price-trade-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.blog-answer-panel--kitchen-price .kitchen-price-trade-strip article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 5px 13px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
}

.blog-answer-panel--kitchen-price .kitchen-price-trade-strip .kitchen-icon {
  grid-row: 1 / span 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #082034;
  background: #dfeede;
  border: 1px solid rgba(250, 246, 237, 0.3);
}

.blog-answer-panel--kitchen-price .kitchen-price-trade-strip article:nth-child(3n) .kitchen-icon,
.blog-answer-panel--kitchen-price .kitchen-price-trade-strip article:nth-child(4n) .kitchen-icon {
  background: #fff1cf;
}

.blog-answer-panel--kitchen-price .kitchen-price-trade-strip .kitchen-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-answer-panel--kitchen-price .kitchen-price-trade-strip span:not(.kitchen-icon) {
  padding: 0;
  border: 0;
  overflow-wrap: normal;
}

.blog-answer-panel--kitchen-price .kitchen-price-trade-strip strong {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.16;
  white-space: normal;
  overflow-wrap: break-word;
}

.blog-article__section .blog-infographic--kitchen-price,
.blog-article__section .blog-infographic--kitchen-seven,
.blog-article__section .blog-infographic--kitchen-equation,
.blog-article__section .blog-infographic--kitchen-decision,
.blog-article__section .blog-infographic--kitchen-risk,
.blog-article__section .blog-infographic--kitchen-offer {
  --kitchen-ink: #0f2634;
  --kitchen-blue: #173452;
  --kitchen-deep: #0c2735;
  --kitchen-panel: #213f5d;
  --kitchen-paper: #fbf6ed;
  --kitchen-muted: rgba(251, 246, 237, 0.78);
  --kitchen-line: rgba(251, 246, 237, 0.22);
  --kitchen-gold: #d79a3f;
  --kitchen-sage: #96a98b;
  --kitchen-clay: #be7553;
  max-width: 1010px;
  color: var(--kitchen-paper);
  background: var(--kitchen-deep);
}

.blog-article__section .blog-infographic--kitchen-price .blog-infographic__head,
.blog-article__section .blog-infographic--kitchen-seven .blog-infographic__head,
.blog-article__section .blog-infographic--kitchen-equation .blog-infographic__head,
.blog-article__section .blog-infographic--kitchen-decision .blog-infographic__head,
.blog-article__section .blog-infographic--kitchen-risk .blog-infographic__head,
.blog-article__section .blog-infographic--kitchen-offer .blog-infographic__head {
  align-items: start;
}

.blog-article__section .blog-infographic--kitchen-price .blog-infographic__label,
.blog-article__section .blog-infographic--kitchen-seven .blog-infographic__label,
.blog-article__section .blog-infographic--kitchen-equation .blog-infographic__label,
.blog-article__section .blog-infographic--kitchen-decision .blog-infographic__label,
.blog-article__section .blog-infographic--kitchen-risk .blog-infographic__label,
.blog-article__section .blog-infographic--kitchen-offer .blog-infographic__label {
  color: #efc77d;
}

.blog-article__section .blog-infographic--kitchen-price .blog-infographic__label::after,
.blog-article__section .blog-infographic--kitchen-seven .blog-infographic__label::after,
.blog-article__section .blog-infographic--kitchen-equation .blog-infographic__label::after,
.blog-article__section .blog-infographic--kitchen-decision .blog-infographic__label::after,
.blog-article__section .blog-infographic--kitchen-risk .blog-infographic__label::after,
.blog-article__section .blog-infographic--kitchen-offer .blog-infographic__label::after {
  background: var(--kitchen-gold);
}

.blog-article__section .blog-infographic--kitchen-price .blog-infographic__title,
.blog-article__section .blog-infographic--kitchen-seven .blog-infographic__title,
.blog-article__section .blog-infographic--kitchen-equation .blog-infographic__title,
.blog-article__section .blog-infographic--kitchen-decision .blog-infographic__title,
.blog-article__section .blog-infographic--kitchen-risk .blog-infographic__title,
.blog-article__section .blog-infographic--kitchen-offer .blog-infographic__title {
  color: var(--kitchen-paper);
}

.blog-article__section .blog-infographic--kitchen-price .blog-infographic__note,
.blog-article__section .blog-infographic--kitchen-seven .blog-infographic__note,
.blog-article__section .blog-infographic--kitchen-equation .blog-infographic__note,
.blog-article__section .blog-infographic--kitchen-decision .blog-infographic__note,
.blog-article__section .blog-infographic--kitchen-risk .blog-infographic__note,
.blog-article__section .blog-infographic--kitchen-offer .blog-infographic__note {
  color: var(--kitchen-muted);
}

.kitchen-price-map,
.kitchen-seven-posts,
.kitchen-equation,
.kitchen-decision-grid,
.kitchen-risk-board,
.kitchen-offer-compare {
  position: relative;
  z-index: 1;
}

.kitchen-price-map {
  display: grid;
  gap: 12px;
}

.kitchen-price-map article {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(138px, max-content);
  grid-template-areas:
    "icon title price"
    "step body body";
  gap: 10px 16px;
  align-items: center;
  min-width: 0;
  min-height: 96px;
  padding: 18px clamp(16px, 2.2vw, 24px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(150, 169, 139, 0.24) 0 var(--w), transparent var(--w)),
    rgba(251, 246, 237, 0.07);
  border: 1px solid var(--kitchen-line);
}

.kitchen-price-map article:nth-child(3),
.kitchen-price-map article:nth-child(4) {
  background:
    linear-gradient(90deg, rgba(215, 154, 63, 0.22) 0 var(--w), transparent var(--w)),
    rgba(251, 246, 237, 0.07);
}

.kitchen-price-map article:nth-child(5) {
  background:
    linear-gradient(90deg, rgba(190, 117, 83, 0.24) 0 var(--w), transparent var(--w)),
    rgba(251, 246, 237, 0.07);
}

.blog-article__section .blog-infographic--strong .kitchen-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #082034;
  background: #dfeede;
  border: 1px solid rgba(251, 246, 237, 0.36);
}

.kitchen-price-map .kitchen-icon {
  grid-area: icon;
}

.blog-article__section .blog-infographic--strong article:nth-child(3n) .kitchen-icon,
.blog-article__section .blog-infographic--strong article:nth-child(4n) .kitchen-icon {
  background: #fff1cf;
}

.kitchen-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kitchen-price-map .kitchen-step,
.kitchen-seven-posts .kitchen-step,
.kitchen-risk-board .kitchen-step {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--kitchen-ink) !important;
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: var(--kitchen-paper);
}

.kitchen-price-map .kitchen-step {
  grid-area: step;
  width: 42px;
  height: 28px;
}

.kitchen-price-map strong,
.kitchen-seven-posts strong,
.kitchen-equation strong,
.kitchen-decision-grid strong,
.kitchen-risk-board strong,
.kitchen-offer-compare strong {
  color: var(--kitchen-paper);
  font-family: var(--sans);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 650;
  line-height: 1.18;
}

.kitchen-price-map strong {
  grid-area: title;
  min-width: 0;
  font-size: clamp(1.02rem, 1.28vw, 1.22rem);
  text-wrap: balance;
  overflow-wrap: break-word;
}

.kitchen-price-map em {
  grid-area: price;
  justify-self: end;
  color: #efc77d;
  font-family: var(--sans);
  font-size: clamp(1.28rem, 1.9vw, 1.82rem);
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.kitchen-price-map p,
.kitchen-seven-posts p,
.kitchen-equation p,
.kitchen-decision-grid p,
.kitchen-risk-board p,
.kitchen-offer-compare p {
  margin: 0;
  color: var(--kitchen-muted) !important;
  font-size: 0.92rem !important;
  line-height: 1.48 !important;
  overflow-wrap: break-word;
}

.kitchen-price-map p {
  grid-area: body;
  max-width: 48rem;
}

.kitchen-seven-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kitchen-seven-posts article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 184px;
  padding: 20px;
  background: rgba(251, 246, 237, 0.07);
  border: 1px solid var(--kitchen-line);
  border-top: 4px solid var(--kitchen-sage);
}

.kitchen-seven-posts article .kitchen-icon,
.kitchen-risk-board article .kitchen-icon,
.kitchen-offer-compare article .kitchen-icon {
  margin-bottom: 2px;
}

.kitchen-seven-posts article:nth-child(3),
.kitchen-seven-posts article:nth-child(4),
.kitchen-seven-posts article:nth-child(5) {
  border-top-color: var(--kitchen-gold);
}

.kitchen-seven-posts article:nth-child(6),
.kitchen-seven-posts article:nth-child(7) {
  border-top-color: var(--kitchen-clay);
}

.kitchen-equation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 12px;
}

.kitchen-equation article {
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 220px;
  padding: 24px;
  background: rgba(251, 246, 237, 0.07);
  border: 1px solid var(--kitchen-line);
  border-top: 4px solid var(--kitchen-sage);
}

.kitchen-equation article:nth-of-type(2) {
  border-top-color: var(--kitchen-gold);
}

.kitchen-equation article:nth-of-type(3) {
  border-top-color: var(--kitchen-clay);
}

.kitchen-equation article > span:not(.kitchen-icon) {
  width: fit-content;
  padding: 7px 10px 6px;
  color: var(--kitchen-ink) !important;
  font-family: var(--caption);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--kitchen-paper);
}

.kitchen-equation > b {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: var(--kitchen-paper);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 500;
  background: rgba(251, 246, 237, 0.08);
  border: 1px solid var(--kitchen-line);
}

.kitchen-equation__result {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 16px;
  color: var(--kitchen-ink) !important;
  text-align: center;
  text-transform: uppercase;
  background: var(--kitchen-gold);
}

.kitchen-decision-grid,
.kitchen-offer-compare {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.kitchen-decision-grid article,
.kitchen-offer-compare article {
  display: grid;
  align-content: start;
  gap: 13px;
  min-width: 0;
  min-height: 250px;
  padding: 22px;
  background: rgba(251, 246, 237, 0.07);
  border: 1px solid var(--kitchen-line);
  border-top: 4px solid var(--kitchen-sage);
}

.kitchen-decision-grid article:nth-child(3),
.kitchen-offer-compare article:nth-child(2) {
  border-top-color: var(--kitchen-gold);
}

.kitchen-decision-grid article:nth-child(4),
.kitchen-offer-compare article:nth-child(3) {
  border-top-color: var(--kitchen-clay);
}

.kitchen-decision-grid article > span:not(.kitchen-icon),
.kitchen-offer-compare article > span:not(.kitchen-icon) {
  color: #efc77d !important;
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kitchen-decision-grid em,
.kitchen-offer-compare em {
  align-self: end;
  width: fit-content;
  max-width: 100%;
  padding: 9px 10px 8px;
  color: var(--kitchen-ink);
  font-family: var(--caption);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.28;
  text-transform: uppercase;
  background: var(--kitchen-paper);
}

.kitchen-risk-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.kitchen-risk-board article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 210px;
  padding: 18px 16px;
  background: rgba(251, 246, 237, 0.07);
  border: 1px solid var(--kitchen-line);
}

.kitchen-risk-board article:nth-child(2),
.kitchen-risk-board article:nth-child(4) {
  background: rgba(33, 63, 93, 0.72);
}

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

.kitchen-offer-compare article {
  min-height: 270px;
}

@media (max-width: 1120px) {
  .kitchen-seven-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .blog-answer-panel--kitchen-price .blog-answer-panel__grid--prices,
  .kitchen-decision-grid,
  .kitchen-offer-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kitchen-price-map article {
    grid-template-columns: 42px minmax(0, 1fr) minmax(128px, max-content);
    grid-template-areas:
      "icon title price"
      "step body body";
    align-items: center;
  }

  .kitchen-price-map em,
  .kitchen-price-map p {
    grid-column: auto;
  }

  .kitchen-price-map em {
    grid-area: price;
  }

  .kitchen-price-map p {
    grid-area: body;
  }

  .kitchen-seven-posts,
  .kitchen-risk-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kitchen-equation {
    grid-template-columns: 1fr;
  }

  .kitchen-equation article,
  .kitchen-equation > b {
    min-height: 0;
  }

  .kitchen-equation > b {
    min-height: 44px;
  }
}

@media (max-width: 680px) {
  .blog-answer-panel--kitchen-price .kitchen-price-trade-strip {
    grid-template-columns: 1fr;
  }

  .kitchen-price-map article {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-areas:
      "icon step"
      "title title"
      "price price"
      "body body";
    align-items: start;
  }

  .kitchen-price-map em {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .blog-answer-panel--kitchen-price .blog-answer-panel__grid--prices,
  .kitchen-seven-posts,
  .kitchen-decision-grid,
  .kitchen-risk-board,
  .kitchen-offer-compare {
    grid-template-columns: 1fr;
  }

  .kitchen-price-map article,
  .kitchen-seven-posts article,
  .kitchen-decision-grid article,
  .kitchen-risk-board article,
  .kitchen-offer-compare article {
    min-height: 0;
  }

  .kitchen-price-map em {
    white-space: nowrap;
    overflow-wrap: normal;
  }
}

.article-drenering-og-fukt-i-eldre-bolig .blog-article-hero__media img {
  object-position: center 48%;
}

.blog-answer-panel--drainage {
  --answer-blue: #294239;
  --answer-blue-deep: #172b25;
  --answer-gold: #d6a24e;
  --answer-muted: rgba(250, 246, 237, 0.78);
  background:
    linear-gradient(135deg, rgba(214, 162, 78, 0.11), transparent 38%),
    #172b25;
}

.blog-answer-panel--drainage .blog-answer-panel__grid strong {
  font-size: clamp(1.22rem, 1.55vw, 1.62rem);
  letter-spacing: 0;
}

.drainage-answer-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.drainage-answer-strip article {
  display: grid;
  gap: 9px;
  min-height: 132px;
  padding: 16px;
  background: rgba(250, 246, 237, 0.08);
  border: 1px solid rgba(250, 246, 237, 0.18);
}

.drainage-answer-strip span:not(.drainage-icon) {
  color: #e7c887;
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drainage-answer-strip strong {
  color: var(--answer-paper);
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.18;
}

.blog-article__section .blog-infographic--drainage-price,
.blog-article__section .blog-infographic--drainage-symptoms,
.blog-article__section .blog-infographic--drainage-flow,
.blog-article__section .blog-infographic--drainage-section,
.blog-article__section .blog-infographic--drainage-offer,
.blog-article__section .blog-infographic--drainage-docs {
  --drainage-ink: #10231f;
  --drainage-deep: #172b25;
  --drainage-panel: #294239;
  --drainage-paper: #fbf6ed;
  --drainage-muted: rgba(251, 246, 237, 0.78);
  --drainage-line: rgba(251, 246, 237, 0.2);
  --drainage-gold: #d6a24e;
  --drainage-water: #77bfd1;
  --drainage-clay: #b77755;
  max-width: 1040px;
  color: var(--drainage-paper);
  background:
    radial-gradient(circle at 88% 12%, rgba(119, 191, 209, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(183, 119, 85, 0.14), transparent 42%),
    var(--drainage-deep);
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__head,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__head,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__head,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__head,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__head,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__head {
  align-items: start;
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__label {
  color: #efc77d;
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__label::after {
  background: var(--drainage-gold);
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__title {
  color: var(--drainage-paper);
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__note {
  color: var(--drainage-muted);
}

.drainage-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #10231f;
  background: #dce9d8;
  border: 1px solid rgba(251, 246, 237, 0.32);
}

.blog-infographic--drainage-price article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-symptoms article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-flow article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-offer article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-docs article:nth-child(3n) .drainage-icon {
  background: #f4dfae;
}

.drainage-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drainage-price-stack,
.drainage-symptom-map,
.drainage-flow,
.drainage-offer-grid,
.drainage-docs-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.drainage-price-stack article {
  display: grid;
  grid-template-columns: 42px 34px minmax(0, 1fr) minmax(118px, max-content);
  gap: 10px 14px;
  align-items: center;
  min-height: 92px;
  padding: 18px clamp(16px, 2.2vw, 24px);
  background:
    linear-gradient(90deg, rgba(119, 191, 209, 0.24) 0 var(--w), transparent var(--w)),
    rgba(251, 246, 237, 0.07);
  border: 1px solid var(--drainage-line);
}

.drainage-price-stack article:nth-child(2),
.drainage-price-stack article:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(214, 162, 78, 0.22) 0 var(--w), transparent var(--w)),
    rgba(251, 246, 237, 0.07);
}

.drainage-price-stack article:nth-child(5) {
  background:
    linear-gradient(90deg, rgba(183, 119, 85, 0.24) 0 var(--w), transparent var(--w)),
    rgba(251, 246, 237, 0.07);
}

.drainage-price-stack span,
.drainage-docs-timeline span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--drainage-ink);
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 800;
  background: var(--drainage-paper);
}

.drainage-price-stack strong,
.drainage-symptom-map strong,
.drainage-flow strong,
.drainage-offer-grid strong,
.drainage-docs-timeline strong {
  color: var(--drainage-paper);
  font-family: var(--sans);
  font-size: clamp(0.98rem, 1.08vw, 1.14rem);
  font-weight: 650;
  line-height: 1.18;
}

.drainage-price-stack em {
  justify-self: end;
  color: #efc77d;
  font-family: var(--caption);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.drainage-price-stack p,
.drainage-symptom-map p,
.drainage-flow p,
.drainage-offer-grid p,
.drainage-docs-timeline p {
  margin: 0;
  color: var(--drainage-muted) !important;
  font-size: 0.92rem !important;
  line-height: 1.48 !important;
}

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

.drainage-symptom-map article,
.drainage-offer-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 222px;
  padding: 20px;
  background: rgba(251, 246, 237, 0.075);
  border: 1px solid var(--drainage-line);
}

.drainage-symptom-map span:not(.drainage-icon),
.drainage-offer-grid span {
  width: fit-content;
  padding-bottom: 8px;
  color: #efc77d;
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--drainage-gold);
}

.drainage-symptom-map em {
  color: #d7eced;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.drainage-flow article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 182px;
  padding: 20px;
  background: rgba(251, 246, 237, 0.075);
  border: 1px solid var(--drainage-line);
}

.drainage-flow article::after {
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 2px;
  background: var(--drainage-gold);
  content: "";
}

.drainage-flow article:nth-child(3n)::after,
.drainage-flow article:last-child::after {
  display: none;
}

.drainage-flow span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--drainage-ink);
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 850;
  background: #f4dfae;
}

.drainage-section-diagram {
  overflow: hidden;
  background: rgba(251, 246, 237, 0.07);
  border: 1px solid var(--drainage-line);
}

.drainage-section-diagram svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px;
}

.drainage-section-callouts text {
  fill: #fbf6ed;
  font-family: var(--caption);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  paint-order: stroke;
  stroke: rgba(23, 43, 37, 0.84);
  stroke-width: 5px;
  stroke-linejoin: round;
}

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

.drainage-docs-timeline article {
  display: grid;
  gap: 11px;
  min-height: 202px;
  padding: 18px;
  background: rgba(251, 246, 237, 0.075);
  border: 1px solid var(--drainage-line);
}

.blog-cluster-links--drainage {
  --answer-blue-deep: #172b25;
  --answer-gold: #d6a24e;
  background:
    linear-gradient(135deg, rgba(119, 191, 209, 0.1), transparent 42%),
    #172b25;
}

.blog-cluster-links--drainage > div p,
.blog-cluster-links--drainage a span {
  color: #efc77d;
}

.blog-cluster-links--drainage h2 {
  color: #fbf6ed;
}

/* Keep the drainage article in the same light editorial palette. */
.blog-answer-panel--drainage {
  --answer-paper: #173452;
  --answer-muted: rgba(22, 20, 17, 0.72);
  --answer-line: rgba(23, 52, 82, 0.18);
  --answer-gold: #b37a44;
  color: var(--blog-ink);
  background: #e9e2d5;
  border-color: rgba(23, 52, 82, 0.22);
}

.blog-answer-panel--drainage .blog-answer-panel__head p,
.blog-answer-panel--drainage .blog-answer-panel__grid span,
.drainage-answer-strip span:not(.drainage-icon) {
  color: #8a5b2b;
}

.blog-answer-panel--drainage .blog-answer-panel__head p::after {
  background: #b37a44;
}

.blog-answer-panel--drainage .blog-answer-panel__head h2,
.blog-answer-panel--drainage .blog-answer-panel__grid strong,
.blog-answer-panel--drainage .blog-answer-panel__trust strong,
.drainage-answer-strip strong {
  color: #173452;
}

.blog-answer-panel--drainage .blog-answer-panel__head span,
.blog-answer-panel--drainage .blog-answer-panel__grid p,
.blog-answer-panel--drainage .blog-answer-panel__trust p {
  color: rgba(22, 20, 17, 0.72);
}

.blog-answer-panel--drainage .blog-answer-panel__grid article,
.blog-answer-panel--drainage .blog-answer-panel__grid article:nth-child(2),
.blog-answer-panel--drainage .blog-answer-panel__trust,
.drainage-answer-strip article {
  background: #fbf7ef;
  border-color: rgba(23, 52, 82, 0.16);
}

.blog-answer-panel--drainage .blog-answer-panel__trust a {
  color: #173452;
  border-color: rgba(23, 52, 82, 0.22);
}

.blog-answer-panel--drainage .blog-answer-panel__trust a:hover,
.blog-answer-panel--drainage .blog-answer-panel__trust a:focus-visible {
  color: #fffaf0;
  background: #173452;
  border-color: #173452;
}

.blog-answer-panel--drainage .drainage-icon {
  color: #173452;
  background: #fffaf0;
  border-color: rgba(23, 52, 82, 0.18);
}

.blog-article__section .blog-infographic--drainage-price,
.blog-article__section .blog-infographic--drainage-symptoms,
.blog-article__section .blog-infographic--drainage-flow,
.blog-article__section .blog-infographic--drainage-section,
.blog-article__section .blog-infographic--drainage-offer,
.blog-article__section .blog-infographic--drainage-docs {
  --drainage-ink: #173452;
  --drainage-deep: #173452;
  --drainage-panel: #fbf7ef;
  --drainage-paper: #fffaf0;
  --drainage-muted: rgba(22, 20, 17, 0.7);
  --drainage-line: rgba(23, 52, 82, 0.16);
  --drainage-gold: #b37a44;
  color: var(--blog-ink);
  background: #e9e2d5;
  border-color: rgba(23, 52, 82, 0.22);
}

.blog-article__section .blog-infographic--drainage-price::before,
.blog-article__section .blog-infographic--drainage-symptoms::before,
.blog-article__section .blog-infographic--drainage-flow::before,
.blog-article__section .blog-infographic--drainage-section::before,
.blog-article__section .blog-infographic--drainage-offer::before,
.blog-article__section .blog-infographic--drainage-docs::before {
  display: none;
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__label,
.drainage-price-stack em,
.drainage-symptom-map span:not(.drainage-icon),
.drainage-offer-grid span {
  color: #8a5b2b;
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__label::after,
.drainage-symptom-map span:not(.drainage-icon),
.drainage-offer-grid span {
  border-color: #b37a44;
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__title,
.drainage-price-stack strong,
.drainage-symptom-map strong,
.drainage-flow strong,
.drainage-offer-grid strong,
.drainage-docs-timeline strong,
.drainage-symptom-map em {
  color: #173452;
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__note,
.drainage-price-stack p,
.drainage-symptom-map p,
.drainage-flow p,
.drainage-offer-grid p,
.drainage-docs-timeline p {
  color: rgba(22, 20, 17, 0.7) !important;
}

.blog-article__section .blog-infographic--drainage-price .drainage-icon,
.blog-article__section .blog-infographic--drainage-symptoms .drainage-icon,
.blog-article__section .blog-infographic--drainage-flow .drainage-icon,
.blog-article__section .blog-infographic--drainage-offer .drainage-icon,
.blog-article__section .blog-infographic--drainage-docs .drainage-icon {
  color: #173452;
  background: #fffaf0;
  border-color: rgba(23, 52, 82, 0.18);
}

.blog-infographic--drainage-price article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-symptoms article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-flow article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-offer article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-docs article:nth-child(3n) .drainage-icon {
  background: #f7f0e6;
}

.drainage-price-stack article,
.drainage-price-stack article:nth-child(2),
.drainage-price-stack article:nth-child(3),
.drainage-price-stack article:nth-child(5),
.drainage-symptom-map article,
.drainage-flow article,
.drainage-offer-grid article,
.drainage-docs-timeline article {
  background:
    linear-gradient(90deg, rgba(179, 122, 68, 0.1) 0 var(--w, 0%), transparent var(--w, 0%)),
    #fbf7ef;
  border-color: rgba(23, 52, 82, 0.16);
}

.drainage-price-stack span,
.drainage-flow span,
.drainage-docs-timeline span {
  color: #fffaf0;
  background: #173452;
}

.drainage-flow article::after {
  background: #b37a44;
}

.drainage-section-diagram {
  background: #fbf7ef;
  border-color: rgba(23, 52, 82, 0.16);
}

.drainage-section-callouts text {
  fill: #173452;
  stroke: rgba(251, 247, 239, 0.94);
}

.blog-cluster-links--drainage {
  --cluster-blue: #173452;
  --cluster-paper: #fffaf0;
  --cluster-surface: #fbf7ef;
  --cluster-muted: rgba(18, 47, 75, 0.7);
  --cluster-line: rgba(18, 47, 75, 0.16);
  --cluster-gold: #173452;
  --answer-gold: #173452;
  color: #173452;
  background: var(--cluster-surface);
  border-color: var(--cluster-line);
}

.blog-cluster-links--drainage > div p,
.blog-cluster-links--drainage h2,
.blog-cluster-links--drainage strong {
  color: #173452;
}

.blog-cluster-links--drainage > div p::after,
.blog-cluster-links--drainage a::before {
  background: #173452;
}

.blog-cluster-links--drainage a {
  color: #173452;
  background: #fffaf0;
  border-color: rgba(18, 47, 75, 0.16);
}

.blog-cluster-links--drainage a span {
  color: #8a5b2b;
}

@media (max-width: 980px) {
  .drainage-answer-strip,
  .drainage-docs-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .drainage-symptom-map,
  .drainage-flow,
  .drainage-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drainage-flow article:nth-child(3n)::after {
    display: block;
  }

  .drainage-flow article:nth-child(2n)::after,
  .drainage-flow article:last-child::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .blog-answer-panel--drainage .blog-answer-panel__grid--prices,
  .drainage-answer-strip,
  .drainage-symptom-map,
  .drainage-flow,
  .drainage-offer-grid,
  .drainage-docs-timeline {
    grid-template-columns: 1fr;
  }

  .drainage-price-stack article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .drainage-price-stack em {
    justify-self: start;
    white-space: normal;
  }

  .drainage-flow article::after {
    display: none !important;
  }

  .drainage-section-diagram {
    overflow-x: auto;
  }

  .drainage-section-diagram svg {
    width: 760px;
    max-width: none;
  }
}

/* Compact drainage graphics: same information, less vertical scrolling. */
.blog-answer-panel--drainage {
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(22px, 3vw, 34px);
}

.blog-answer-panel--drainage .blog-answer-panel__head {
  grid-template-columns: minmax(112px, 0.18fr) minmax(0, 0.82fr);
  gap: 12px clamp(18px, 2.4vw, 30px);
}

.blog-answer-panel--drainage .blog-answer-panel__head h2 {
  max-width: 760px;
  font-size: clamp(1.55rem, 2.35vw, 2.45rem);
  line-height: 1.02;
}

.blog-answer-panel--drainage .blog-answer-panel__head span {
  max-width: 720px;
  font-size: 0.94rem;
  line-height: 1.42;
}

.blog-answer-panel--drainage .blog-answer-panel__grid {
  gap: 10px;
}

.blog-answer-panel--drainage .blog-answer-panel__grid article,
.blog-answer-panel--drainage .blog-answer-panel__trust {
  gap: 8px;
  min-height: 0;
  padding: 14px;
}

.blog-answer-panel--drainage .blog-answer-panel__grid span {
  padding-bottom: 6px;
  font-size: 0.58rem;
  line-height: 1.12;
}

.blog-answer-panel--drainage .blog-answer-panel__grid strong {
  font-size: clamp(1.08rem, 1.25vw, 1.34rem);
  line-height: 1.08;
}

.blog-answer-panel--drainage .blog-answer-panel__grid p,
.blog-answer-panel--drainage .blog-answer-panel__trust p {
  font-size: 0.84rem;
  line-height: 1.36;
}

.drainage-answer-strip {
  gap: 8px;
}

.drainage-answer-strip article {
  gap: 6px;
  min-height: 0;
  padding: 11px;
}

.drainage-answer-strip .drainage-icon {
  width: 30px;
  height: 30px;
}

.drainage-answer-strip .drainage-icon svg {
  width: 17px;
  height: 17px;
}

.drainage-answer-strip span:not(.drainage-icon) {
  font-size: 0.55rem;
  line-height: 1.08;
}

.drainage-answer-strip strong {
  font-size: 0.78rem;
  line-height: 1.12;
}

.blog-article__section .blog-infographic--drainage-price,
.blog-article__section .blog-infographic--drainage-symptoms,
.blog-article__section .blog-infographic--drainage-flow,
.blog-article__section .blog-infographic--drainage-section,
.blog-article__section .blog-infographic--drainage-offer,
.blog-article__section .blog-infographic--drainage-docs {
  gap: 15px;
  padding: clamp(18px, 2.4vw, 28px);
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__head,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__head,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__head,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__head,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__head,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__head {
  display: grid;
  grid-template-columns: minmax(108px, 0.18fr) minmax(0, 0.82fr);
  gap: 6px clamp(16px, 2.4vw, 28px);
  max-width: none;
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__label {
  grid-row: 1 / span 2;
  font-size: 0.6rem;
  line-height: 1.18;
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__title {
  max-width: none;
  font-size: clamp(1.02rem, 1.22vw, 1.26rem);
  line-height: 1.12;
}

.blog-article__section .blog-infographic--drainage-price .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__note {
  max-width: 720px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.drainage-price-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.drainage-price-stack article {
  grid-template-columns: 30px minmax(0, 1fr) minmax(70px, auto);
  gap: 5px 10px;
  align-items: start;
  min-height: 0;
  padding: 11px 12px;
}

.drainage-price-stack article > span:not(.drainage-icon) {
  display: none;
}

.drainage-price-stack .drainage-icon,
.drainage-symptom-map .drainage-icon,
.drainage-offer-grid .drainage-icon,
.drainage-docs-timeline .drainage-icon {
  width: 30px;
  height: 30px;
}

.drainage-price-stack .drainage-icon {
  grid-row: 1 / span 2;
}

.drainage-price-stack .drainage-icon svg,
.drainage-symptom-map .drainage-icon svg,
.drainage-offer-grid .drainage-icon svg,
.drainage-docs-timeline .drainage-icon svg {
  width: 17px;
  height: 17px;
}

.drainage-price-stack strong {
  font-size: 0.9rem;
  line-height: 1.12;
}

.drainage-price-stack em {
  justify-self: end;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 88px;
  font-size: 0.52rem;
  line-height: 1.14;
  text-align: right;
  white-space: normal;
}

.drainage-price-stack p {
  grid-column: 2;
}

.drainage-symptom-map,
.drainage-flow,
.drainage-offer-grid {
  gap: 8px;
}

.drainage-symptom-map article,
.drainage-flow article,
.drainage-offer-grid article,
.drainage-docs-timeline article {
  gap: 7px;
  min-height: 0;
  padding: 12px;
}

.drainage-symptom-map strong,
.drainage-flow strong,
.drainage-offer-grid strong,
.drainage-docs-timeline strong {
  font-size: 0.86rem;
  line-height: 1.12;
}

.drainage-symptom-map p,
.drainage-flow p,
.drainage-offer-grid p,
.drainage-docs-timeline p,
.drainage-price-stack p {
  font-size: 0.78rem !important;
  line-height: 1.28 !important;
}

.drainage-symptom-map span:not(.drainage-icon),
.drainage-offer-grid span {
  padding-bottom: 5px;
  font-size: 0.54rem;
  line-height: 1.1;
}

.drainage-symptom-map em {
  font-size: 0.54rem;
  line-height: 1.14;
}

.drainage-flow span {
  width: 28px;
  height: 28px;
  font-size: 0.6rem;
}

.drainage-docs-timeline {
  gap: 8px;
}

.drainage-docs-timeline span {
  width: 28px;
  height: 28px;
  font-size: 0.56rem;
}

.drainage-section-diagram svg {
  min-height: 0;
  max-height: 330px;
}

.drainage-section-callouts text {
  font-size: 16px;
  stroke-width: 4px;
}

.blog-cluster-links--drainage {
  gap: 18px;
  padding: clamp(20px, 3vw, 32px);
}

.blog-cluster-links--drainage h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.blog-cluster-links--drainage nav {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
}

.blog-cluster-links--drainage a {
  min-height: 112px;
  padding: 15px;
}

.blog-cluster-links--drainage strong {
  font-size: 0.9rem;
  line-height: 1.16;
}

@media (max-width: 980px) {
  .drainage-price-stack,
  .blog-cluster-links--drainage nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-answer-panel--drainage .blog-answer-panel__head,
  .blog-article__section .blog-infographic--drainage-price .blog-infographic__head,
  .blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__head,
  .blog-article__section .blog-infographic--drainage-flow .blog-infographic__head,
  .blog-article__section .blog-infographic--drainage-section .blog-infographic__head,
  .blog-article__section .blog-infographic--drainage-offer .blog-infographic__head,
  .blog-article__section .blog-infographic--drainage-docs .blog-infographic__head {
    grid-template-columns: 1fr;
  }

  .blog-article__section .blog-infographic--drainage-price .blog-infographic__label,
  .blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__label,
  .blog-article__section .blog-infographic--drainage-flow .blog-infographic__label,
  .blog-article__section .blog-infographic--drainage-section .blog-infographic__label,
  .blog-article__section .blog-infographic--drainage-offer .blog-infographic__label,
  .blog-article__section .blog-infographic--drainage-docs .blog-infographic__label {
    grid-row: auto;
  }

  .drainage-price-stack,
  .blog-cluster-links--drainage nav {
    grid-template-columns: 1fr;
  }
}

/* Requested drainage palette: match the compact dark-blue kitchen panels. */
.blog-answer-panel--drainage,
.blog-article__section .blog-infographic--drainage-price,
.blog-article__section .blog-infographic--drainage-symptoms,
.blog-article__section .blog-infographic--drainage-flow,
.blog-article__section .blog-infographic--drainage-section,
.blog-article__section .blog-infographic--drainage-offer,
.blog-article__section .blog-infographic--drainage-docs,
.blog-cluster-links--drainage {
  --drainage-blue-bg: #0b3140;
  --drainage-blue-card: #183f5b;
  --drainage-blue-card-2: #1f4b68;
  --drainage-paper: #fffaf0;
  --drainage-muted: rgba(255, 250, 240, 0.76);
  --drainage-gold: #d9a03f;
  --drainage-line: rgba(255, 250, 240, 0.2);
  color: var(--drainage-paper);
  background: var(--drainage-blue-bg);
  border-color: rgba(255, 250, 240, 0.18);
}

.blog-answer-panel--drainage .blog-answer-panel__head p,
.blog-answer-panel--drainage .blog-answer-panel__grid span,
.drainage-answer-strip span:not(.drainage-icon),
.blog-article__section .blog-infographic--drainage-price .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__label,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__label,
.drainage-price-stack em,
.drainage-symptom-map span:not(.drainage-icon),
.drainage-offer-grid span,
.blog-cluster-links--drainage > div p,
.blog-cluster-links--drainage a span {
  color: var(--drainage-gold);
}

.blog-answer-panel--drainage .blog-answer-panel__head p::after,
.blog-article__section .blog-infographic--drainage-price .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__label::after,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__label::after,
.blog-cluster-links--drainage > div p::after,
.blog-cluster-links--drainage a::before,
.drainage-flow article::after {
  background: var(--drainage-gold);
}

.drainage-symptom-map span:not(.drainage-icon),
.drainage-offer-grid span {
  border-color: var(--drainage-gold);
}

.blog-answer-panel--drainage .blog-answer-panel__head h2,
.blog-answer-panel--drainage .blog-answer-panel__grid strong,
.blog-answer-panel--drainage .blog-answer-panel__trust strong,
.drainage-answer-strip strong,
.blog-article__section .blog-infographic--drainage-price .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__title,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__title,
.drainage-price-stack strong,
.drainage-symptom-map strong,
.drainage-flow strong,
.drainage-offer-grid strong,
.drainage-docs-timeline strong,
.drainage-symptom-map em,
.blog-cluster-links--drainage h2,
.blog-cluster-links--drainage strong {
  color: var(--drainage-paper);
}

.blog-answer-panel--drainage .blog-answer-panel__head span,
.blog-answer-panel--drainage .blog-answer-panel__grid p,
.blog-answer-panel--drainage .blog-answer-panel__trust p,
.blog-article__section .blog-infographic--drainage-price .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-symptoms .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-flow .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-section .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-offer .blog-infographic__note,
.blog-article__section .blog-infographic--drainage-docs .blog-infographic__note,
.drainage-price-stack p,
.drainage-symptom-map p,
.drainage-flow p,
.drainage-offer-grid p,
.drainage-docs-timeline p {
  color: var(--drainage-muted) !important;
}

.blog-answer-panel--drainage .blog-answer-panel__grid article,
.blog-answer-panel--drainage .blog-answer-panel__trust,
.drainage-answer-strip article,
.drainage-price-stack article,
.drainage-price-stack article:nth-child(2),
.drainage-price-stack article:nth-child(3),
.drainage-price-stack article:nth-child(5),
.drainage-symptom-map article,
.drainage-flow article,
.drainage-offer-grid article,
.drainage-docs-timeline article,
.blog-cluster-links--drainage a {
  background: var(--drainage-blue-card);
  border-color: var(--drainage-line);
}

.blog-answer-panel--drainage .blog-answer-panel__grid article:nth-child(2),
.drainage-price-stack article:nth-child(2n),
.drainage-symptom-map article:nth-child(2n),
.drainage-flow article:nth-child(2n),
.drainage-offer-grid article:nth-child(2n),
.drainage-docs-timeline article:nth-child(2n) {
  background: var(--drainage-blue-card-2);
}

.blog-answer-panel--drainage .drainage-icon,
.blog-article__section .blog-infographic--drainage-price .drainage-icon,
.blog-article__section .blog-infographic--drainage-symptoms .drainage-icon,
.blog-article__section .blog-infographic--drainage-flow .drainage-icon,
.blog-article__section .blog-infographic--drainage-offer .drainage-icon,
.blog-article__section .blog-infographic--drainage-docs .drainage-icon,
.blog-infographic--drainage-price article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-symptoms article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-flow article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-offer article:nth-child(3n) .drainage-icon,
.blog-infographic--drainage-docs article:nth-child(3n) .drainage-icon {
  color: var(--drainage-blue-bg);
  background: var(--drainage-paper);
  border-color: rgba(255, 250, 240, 0.28);
}

.drainage-price-stack span,
.drainage-flow span,
.drainage-docs-timeline span {
  color: var(--drainage-blue-bg);
  background: var(--drainage-paper);
}

.drainage-section-diagram {
  background: #12394d;
  border-color: var(--drainage-line);
}

.drainage-section-callouts text {
  fill: var(--drainage-paper);
  stroke: rgba(11, 49, 64, 0.86);
}

.blog-answer-panel--drainage .blog-answer-panel__trust a {
  color: var(--drainage-paper);
  border-color: var(--drainage-line);
}

.blog-answer-panel--drainage .blog-answer-panel__trust a:hover,
.blog-answer-panel--drainage .blog-answer-panel__trust a:focus-visible,
.blog-cluster-links--drainage a:hover,
.blog-cluster-links--drainage a:focus-visible {
  background: #245978;
  border-color: rgba(255, 250, 240, 0.34);
}

/* Replace the placeholder-looking number boxes with integrated step labels. */
.drainage-flow article {
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
}

.drainage-flow article > span {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: block;
  width: auto;
  height: auto;
  padding-top: 2px;
  color: var(--drainage-gold);
  font-family: var(--caption);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  background: transparent;
}

.drainage-flow article > span::before {
  content: "0";
}

.drainage-flow article > strong,
.drainage-flow article > p {
  grid-column: 2;
}

.drainage-docs-timeline article {
  position: relative;
  grid-template-columns: 1fr;
  align-items: start;
  padding-top: 48px;
}

.drainage-docs-timeline .drainage-icon {
  position: absolute;
  top: 12px;
  left: 12px;
}

.drainage-docs-timeline article > span:not(.drainage-icon) {
  position: absolute;
  top: 18px;
  left: 52px;
  display: block;
  width: auto;
  height: auto;
  color: var(--drainage-gold);
  font-family: var(--caption);
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1;
  background: transparent;
}

.drainage-docs-timeline article > strong,
.drainage-docs-timeline article > p {
  grid-column: 1;
}

.blog-article__section .blog-infographic[class*="blog-infographic--handover-"] {
  --handover-ink: #16372f;
  --handover-muted: rgba(22, 55, 47, 0.72);
  --handover-paper: #fffaf1;
  --handover-panel: #f1e6d5;
  --handover-card: #fffdf7;
  --handover-line: rgba(22, 55, 47, 0.16);
  --handover-gold: #c28842;
  --handover-rust: #9d563f;
  color: var(--handover-ink);
  background:
    linear-gradient(135deg, rgba(194, 136, 66, 0.16), rgba(22, 55, 47, 0.06)),
    var(--handover-panel);
  border-color: rgba(22, 55, 47, 0.18);
  gap: 16px;
  padding: clamp(18px, 2.5vw, 30px);
}

.blog-article__section .blog-infographic[class*="blog-infographic--handover-"]::before {
  display: none;
}

.blog-article__section .blog-infographic[class*="blog-infographic--handover-"] .blog-infographic__head {
  display: grid;
  grid-template-columns: minmax(112px, 0.18fr) minmax(0, 0.82fr);
  gap: 6px clamp(16px, 2.4vw, 28px);
  max-width: none;
}

.blog-article__section .blog-infographic[class*="blog-infographic--handover-"] .blog-infographic__label {
  grid-row: 1 / span 2;
  color: var(--handover-rust);
  font-size: 0.6rem;
  line-height: 1.18;
}

.blog-article__section .blog-infographic[class*="blog-infographic--handover-"] .blog-infographic__label::after {
  background: var(--handover-rust);
}

.blog-article__section .blog-infographic[class*="blog-infographic--handover-"] .blog-infographic__title {
  max-width: none;
  color: var(--handover-ink);
  font-size: clamp(1.05rem, 1.35vw, 1.34rem);
  line-height: 1.12;
}

.blog-article__section .blog-infographic[class*="blog-infographic--handover-"] .blog-infographic__note {
  max-width: 760px;
  color: var(--handover-muted) !important;
  font-size: 0.86rem;
  line-height: 1.38;
}

.handover-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--handover-paper);
  background: var(--handover-ink);
  border: 1px solid rgba(22, 55, 47, 0.18);
  border-radius: 50%;
  flex: 0 0 auto;
}

.handover-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.handover-gate-grid,
.handover-folder-map,
.handover-inspection-board,
.handover-room-matrix,
.handover-payment-flow,
.handover-compare-grid {
  display: grid;
  gap: 9px;
}

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

.handover-folder-map,
.handover-room-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.handover-inspection-board,
.handover-payment-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.handover-gate-grid article,
.handover-folder-map article,
.handover-inspection-board article,
.handover-room-matrix article,
.handover-payment-flow article,
.handover-compare-grid article {
  display: grid;
  gap: 7px;
  min-height: 0;
  padding: 13px;
  background: var(--handover-card);
  border: 1px solid var(--handover-line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(42, 33, 24, 0.06);
}

.handover-gate-grid article,
.handover-inspection-board article {
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
}

.handover-gate-grid .handover-icon,
.handover-inspection-board .handover-icon {
  grid-row: 1 / span 3;
}

.handover-gate-grid span:not(.handover-icon),
.handover-inspection-board span:not(.handover-icon),
.handover-payment-flow span,
.handover-folder-map span,
.handover-room-matrix span,
.handover-compare-grid span {
  color: var(--handover-rust);
  font-family: var(--caption);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.12;
  text-transform: uppercase;
}

.handover-gate-grid strong,
.handover-folder-map strong,
.handover-inspection-board strong,
.handover-room-matrix strong,
.handover-payment-flow strong,
.handover-compare-grid strong {
  color: var(--handover-ink);
  font-size: 0.9rem;
  line-height: 1.12;
}

.handover-gate-grid p,
.handover-folder-map p,
.handover-inspection-board p,
.handover-room-matrix p,
.handover-payment-flow p,
.handover-compare-grid p {
  color: var(--handover-muted) !important;
  font-size: 0.78rem !important;
  line-height: 1.3 !important;
}

.handover-folder-map article:nth-child(3n + 1),
.handover-room-matrix article:nth-child(3n + 1) {
  border-left: 4px solid var(--handover-gold);
}

.handover-folder-map article:nth-child(3n + 2),
.handover-room-matrix article:nth-child(3n + 2) {
  border-left: 4px solid var(--handover-rust);
}

.handover-folder-map article:nth-child(3n),
.handover-room-matrix article:nth-child(3n) {
  border-left: 4px solid var(--handover-ink);
}

.handover-payment-flow {
  counter-reset: handover-flow;
}

.handover-payment-flow article {
  position: relative;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  min-height: 142px;
}

.handover-payment-flow article::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -13px;
  width: 17px;
  height: 2px;
  background: var(--handover-rust);
}

.handover-payment-flow article:nth-child(4n)::after,
.handover-payment-flow article:last-child::after {
  display: none;
}

.handover-payment-flow span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--handover-paper);
  background: var(--handover-ink);
  border-radius: 50%;
}

.handover-payment-flow article[data-state="hold"] span {
  background: var(--handover-rust);
}

.handover-payment-flow article[data-state="pay"] span {
  background: var(--handover-gold);
}

.handover-score-board {
  display: grid;
  gap: 8px;
}

.handover-score-board div {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr) minmax(70px, auto);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--handover-card);
  border: 1px solid var(--handover-line);
  border-radius: 8px;
}

.handover-score-board strong {
  color: var(--handover-ink);
  font-size: 0.84rem;
  line-height: 1.12;
}

.handover-score-board span {
  display: block;
  height: 9px;
  overflow: hidden;
  background: rgba(22, 55, 47, 0.12);
  border-radius: 999px;
}

.handover-score-board i {
  display: block;
  width: var(--score);
  height: 100%;
  background: linear-gradient(90deg, var(--handover-rust), var(--handover-gold));
  border-radius: inherit;
}

.handover-score-board em {
  color: var(--handover-rust);
  font-family: var(--caption);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.handover-compare-grid article {
  min-height: 150px;
  padding: 16px;
}

.handover-compare-grid .is-weak {
  background: #f8eee8;
  border-color: rgba(157, 86, 63, 0.28);
}

.handover-compare-grid .is-strong {
  background: #edf4ec;
  border-color: rgba(22, 55, 47, 0.22);
}

.handover-compare-grid .is-strong span {
  color: var(--handover-ink);
}

@media (max-width: 980px) {
  .handover-gate-grid,
  .handover-folder-map,
  .handover-room-matrix,
  .handover-inspection-board,
  .handover-payment-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .handover-payment-flow article:nth-child(4n)::after {
    display: block;
  }

  .handover-payment-flow article:nth-child(2n)::after,
  .handover-payment-flow article:last-child::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic[class*="blog-infographic--handover-"] .blog-infographic__head {
    grid-template-columns: 1fr;
  }

  .blog-article__section .blog-infographic[class*="blog-infographic--handover-"] .blog-infographic__label {
    grid-row: auto;
  }

  .handover-gate-grid,
  .handover-folder-map,
  .handover-room-matrix,
  .handover-inspection-board,
  .handover-payment-flow,
  .handover-compare-grid {
    grid-template-columns: 1fr;
  }

  .handover-payment-flow article {
    min-height: 0;
  }

  .handover-payment-flow article::after {
    display: none !important;
  }

  .handover-score-board div {
    grid-template-columns: 1fr;
  }

  .handover-score-board em {
    text-align: left;
  }
}

.blog-article__section .blog-infographic--nybygg-flagship,
.blog-cluster-links--nybygg-flagship {
  --nybygg-bg: #fff8ec;
  --nybygg-card: #fffdf7;
  --nybygg-card-2: #f3e7d5;
  --nybygg-paper: #0b3140;
  --nybygg-ink: #0b3140;
  --nybygg-muted: rgba(11, 49, 64, 0.72);
  --nybygg-line: rgba(11, 49, 64, 0.14);
  --nybygg-gold: #b9792d;
  --nybygg-clay: #bb6f4b;
  --nybygg-sage: #718a6e;
  color: var(--nybygg-ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.97), rgba(239, 225, 204, 0.97)),
    #fff8ec;
  border-color: rgba(11, 49, 64, 0.16);
  overflow: hidden;
}

.blog-article__section .blog-infographic--nybygg-flagship::before {
  background:
    linear-gradient(90deg, rgba(11, 49, 64, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 49, 64, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.5;
}

.blog-article__section .blog-infographic--nybygg-flagship *,
.blog-cluster-links--nybygg-flagship * {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.blog-article__section .blog-infographic--nybygg-flagship .blog-infographic__label,
.blog-cluster-links--nybygg-flagship > div p,
.blog-cluster-links--nybygg-flagship a span {
  color: var(--nybygg-gold);
}

.blog-article__section .blog-infographic--nybygg-flagship .blog-infographic__label::after,
.blog-cluster-links--nybygg-flagship > div p::after,
.blog-cluster-links--nybygg-flagship a::before {
  background: var(--nybygg-gold);
}

.blog-article__section .blog-infographic--nybygg-flagship .blog-infographic__title,
.blog-article__section .blog-infographic--nybygg-flagship strong,
.blog-cluster-links--nybygg-flagship h2,
.blog-cluster-links--nybygg-flagship strong {
  color: var(--nybygg-ink);
}

.blog-article__section .blog-infographic--nybygg-flagship .blog-infographic__note,
.blog-article__section .blog-infographic--nybygg-flagship p,
.blog-cluster-links--nybygg-flagship a {
  color: var(--nybygg-muted);
}

.nybygg-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--nybygg-bg);
  background: var(--nybygg-paper);
  border-radius: 50%;
}

.nybygg-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nybygg-price-stack,
.nybygg-scope-compare,
.nybygg-driver-map,
.nybygg-roadmap,
.nybygg-roadmap-steps,
.nybygg-permit-map,
.nybygg-enterprise-grid,
.nybygg-offer-matrix,
.nybygg-finance-ladder,
.nybygg-trap-radar,
.nybygg-stop-gates {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

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

.nybygg-scope-compare {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nybygg-driver-map,
.nybygg-offer-matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nybygg-roadmap,
.nybygg-trap-radar {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.nybygg-permit-map,
.nybygg-finance-ladder,
.nybygg-stop-gates {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nybygg-price-stack article,
.nybygg-scope-compare article,
.nybygg-driver-map article,
.nybygg-roadmap article,
.nybygg-roadmap-steps article,
.nybygg-permit-map article,
.nybygg-enterprise-grid article,
.nybygg-offer-matrix article,
.nybygg-finance-ladder article,
.nybygg-trap-radar article,
.nybygg-stop-gates article,
.blog-cluster-links--nybygg-flagship a {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: clamp(18px, 2.1vw, 26px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 52%),
    var(--nybygg-card);
  border: 1px solid rgba(11, 49, 64, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(45, 34, 20, 0.075);
}

.nybygg-price-stack article:nth-child(2n),
.nybygg-driver-map article:nth-child(2n),
.nybygg-roadmap article:nth-child(2n),
.nybygg-roadmap-steps article:nth-child(2n),
.nybygg-permit-map article:nth-child(2n),
.nybygg-enterprise-grid article:nth-child(2n),
.nybygg-offer-matrix article:nth-child(2n),
.nybygg-finance-ladder article:nth-child(2n),
.nybygg-trap-radar article:nth-child(2n),
.nybygg-stop-gates article:nth-child(2n),
.blog-cluster-links--nybygg-flagship a:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 52%),
    var(--nybygg-card-2);
}

.nybygg-price-stack article {
  min-height: 270px;
  border-top: 2px solid var(--nybygg-gold);
}

.nybygg-price-stack article::after {
  content: "";
  display: block;
  width: var(--w);
  height: 6px;
  margin-top: auto;
  background: linear-gradient(90deg, var(--nybygg-gold), var(--nybygg-clay));
  border-radius: 2px;
}

.nybygg-price-stack span,
.nybygg-roadmap span,
.nybygg-roadmap-steps span,
.nybygg-finance-ladder span {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-width: 32px;
  min-height: 32px;
  padding: 0 10px;
  color: #fff8ec;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  background: var(--nybygg-ink);
  border: 1px solid rgba(11, 49, 64, 0.18);
  border-radius: 999px;
}

.blog-article__section .blog-infographic--nybygg-flagship .nybygg-icon {
  display: none;
}

.nybygg-price-stack em,
.nybygg-enterprise-grid em,
.nybygg-driver-map em {
  color: var(--nybygg-gold);
  font-style: normal;
  font-weight: 850;
}

.nybygg-price-layers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--nybygg-line);
}

.nybygg-price-layers span,
.nybygg-scope-compare article > span,
.nybygg-permit-map span,
.nybygg-enterprise-grid span,
.nybygg-offer-matrix span,
.nybygg-trap-radar span,
.nybygg-stop-gates span {
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  color: #fff8ec;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  background: var(--nybygg-ink);
  border: 1px solid rgba(11, 49, 64, 0.18);
  border-radius: 999px;
}

.nybygg-scope-compare article {
  min-height: 330px;
}

.nybygg-scope-compare__lean {
  border-top: 4px solid var(--nybygg-clay) !important;
}

.nybygg-scope-compare__full {
  border-top: 4px solid var(--nybygg-sage) !important;
}

.nybygg-scope-compare ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.nybygg-scope-compare li {
  padding: 10px 12px;
  color: var(--nybygg-ink);
  background: rgba(11, 49, 64, 0.08);
  border: 1px solid rgba(11, 49, 64, 0.12);
}

.nybygg-driver-map article i {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: auto;
  background: rgba(11, 49, 64, 0.08);
  border: 1px solid rgba(11, 49, 64, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.nybygg-driver-map article i::before {
  content: "";
  display: block;
  width: var(--score);
  height: 100%;
  background: linear-gradient(90deg, var(--nybygg-sage), var(--nybygg-gold), var(--nybygg-clay));
}

.nybygg-roadmap article {
  position: relative;
  min-height: 250px;
}

.nybygg-roadmap-steps article {
  position: relative;
  min-height: 188px;
  border-top: 4px solid var(--nybygg-gold);
}

.nybygg-roadmap-steps article:nth-child(3n + 2) {
  border-top-color: var(--nybygg-sage);
}

.nybygg-roadmap-steps article:nth-child(3n) {
  border-top-color: var(--nybygg-clay);
}

.nybygg-roadmap article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 13px;
  height: 2px;
  background: var(--nybygg-gold);
}

.nybygg-permit-map article,
.nybygg-finance-ladder article,
.nybygg-stop-gates article {
  min-height: 245px;
}

.nybygg-offer-matrix article {
  min-height: 190px;
}

.nybygg-enterprise-grid article {
  min-height: 275px;
}

.nybygg-trap-radar article {
  min-height: 260px;
  border-top: 4px solid var(--nybygg-clay);
}

.nybygg-stop-gates article {
  border-left: 4px solid var(--nybygg-clay);
}

.blog-cluster-links--nybygg-flagship {
  width: min(1040px, 100%);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(238, 226, 207, 0.98)),
    #fff8ec;
  border-color: rgba(11, 49, 64, 0.16);
}

.blog-cluster-links--nybygg-flagship nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.blog-cluster-links--nybygg-flagship h2 {
  max-width: 980px;
  font-size: clamp(1.9rem, 3.8vw, 3.45rem);
  line-height: 1.03;
}

.blog-cluster-links--nybygg-flagship a {
  min-height: 142px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.blog-cluster-links--nybygg-flagship a:hover,
.blog-cluster-links--nybygg-flagship a:focus-visible {
  color: var(--nybygg-muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 52%),
    #fffdf7;
  border-color: rgba(11, 49, 64, 0.28);
  box-shadow: 0 24px 54px rgba(45, 34, 20, 0.14);
  outline: 0;
  transform: translateY(-4px);
}

.blog-cluster-links--nybygg-flagship a:hover::before,
.blog-cluster-links--nybygg-flagship a:focus-visible::before {
  width: 58px;
}

@media (max-width: 1100px) {
  .nybygg-price-stack,
  .nybygg-enterprise-grid,
  .nybygg-roadmap,
  .nybygg-roadmap-steps,
  .nybygg-trap-radar,
  .nybygg-permit-map,
  .nybygg-finance-ladder,
  .nybygg-stop-gates,
  .blog-cluster-links--nybygg-flagship nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nybygg-roadmap article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .blog-article__section .blog-infographic--nybygg-flagship {
    inline-size: min(100%, calc(100vw - 32px));
    margin-inline: auto;
    padding: 24px 18px;
  }

  .blog-article__section .blog-infographic--nybygg-flagship .blog-infographic__head {
    grid-template-columns: 1fr;
  }

  .nybygg-price-stack,
  .nybygg-scope-compare,
  .nybygg-driver-map,
  .nybygg-roadmap,
  .nybygg-roadmap-steps,
  .nybygg-permit-map,
  .nybygg-enterprise-grid,
  .nybygg-offer-matrix,
  .nybygg-finance-ladder,
  .nybygg-trap-radar,
  .nybygg-stop-gates,
  .blog-cluster-links--nybygg-flagship nav {
    grid-template-columns: 1fr;
  }

  .nybygg-price-stack article,
  .nybygg-scope-compare article,
  .nybygg-roadmap article,
  .nybygg-roadmap-steps article,
  .nybygg-permit-map article,
  .nybygg-enterprise-grid article,
  .nybygg-trap-radar article,
  .nybygg-stop-gates article {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .blog-article__section .blog-infographic--nybygg-flagship {
    inline-size: min(100%, calc(100vw - 24px));
    padding: 22px 14px;
  }

  .nybygg-price-stack article,
  .nybygg-scope-compare article,
  .nybygg-driver-map article,
  .nybygg-roadmap article,
  .nybygg-roadmap-steps article,
  .nybygg-permit-map article,
  .nybygg-enterprise-grid article,
  .nybygg-offer-matrix article,
  .nybygg-finance-ladder article,
  .nybygg-trap-radar article,
  .nybygg-stop-gates article,
  .blog-cluster-links--nybygg-flagship a {
    padding: 16px;
  }
}

.article-flermannsbolig-hva-koster-det .blog-article__section .blog-infographic--nybygg-flagship,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship {
  --nybygg-bg: #fff8ec;
  --nybygg-card: #fffdf7;
  --nybygg-card-2: #f3e7d5;
  --nybygg-paper: #0b3140;
  --nybygg-ink: #0b3140;
  --nybygg-muted: rgba(11, 49, 64, 0.72);
  --nybygg-line: rgba(11, 49, 64, 0.14);
  --nybygg-gold: #b9792d;
  --nybygg-clay: #bb6f4b;
  --nybygg-sage: #718a6e;
  color: var(--nybygg-ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(239, 225, 204, 0.96)),
    #fff8ec;
  border-color: rgba(11, 49, 64, 0.16);
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price {
  color: #0b3140;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(239, 225, 204, 0.98)),
    #fff8ec;
  border-color: rgba(11, 49, 64, 0.16);
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__head p,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__trust strong {
  color: #b9792d;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__head h2,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid strong {
  color: #0b3140;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__head span,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid p,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__trust p {
  color: rgba(11, 49, 64, 0.72);
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid article,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__trust {
  background: #fffdf7;
  border-color: rgba(11, 49, 64, 0.14);
  box-shadow: 0 18px 42px rgba(45, 34, 20, 0.075);
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid article span {
  color: #b9792d;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__trust a {
  color: #0b3140;
  background: rgba(11, 49, 64, 0.06);
  border-color: rgba(11, 49, 64, 0.14);
}

.article-flermannsbolig-hva-koster-det .blog-article__section .blog-infographic--nybygg-flagship::before {
  background:
    linear-gradient(90deg, rgba(11, 49, 64, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 49, 64, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.5;
}

.article-flermannsbolig-hva-koster-det .blog-article__section .blog-infographic--nybygg-flagship *,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship * {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.article-flermannsbolig-hva-koster-det .blog-article__section .blog-infographic--nybygg-flagship .blog-infographic__title,
.article-flermannsbolig-hva-koster-det .blog-article__section .blog-infographic--nybygg-flagship strong,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship h2,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship strong {
  color: var(--nybygg-ink);
}

.article-flermannsbolig-hva-koster-det .blog-article__section .blog-infographic--nybygg-flagship .blog-infographic__note,
.article-flermannsbolig-hva-koster-det .blog-article__section .blog-infographic--nybygg-flagship p,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a {
  color: var(--nybygg-muted);
}

.article-flermannsbolig-hva-koster-det .nybygg-price-stack article,
.article-flermannsbolig-hva-koster-det .nybygg-scope-compare article,
.article-flermannsbolig-hva-koster-det .nybygg-driver-map article,
.article-flermannsbolig-hva-koster-det .nybygg-roadmap article,
.article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps article,
.article-flermannsbolig-hva-koster-det .nybygg-permit-map article,
.article-flermannsbolig-hva-koster-det .nybygg-enterprise-grid article,
.article-flermannsbolig-hva-koster-det .nybygg-offer-matrix article,
.article-flermannsbolig-hva-koster-det .nybygg-finance-ladder article,
.article-flermannsbolig-hva-koster-det .nybygg-trap-radar article,
.article-flermannsbolig-hva-koster-det .nybygg-stop-gates article,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 52%),
    var(--nybygg-card);
  border-color: rgba(11, 49, 64, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(45, 34, 20, 0.075);
}

.article-flermannsbolig-hva-koster-det .nybygg-price-stack article:nth-child(2n),
.article-flermannsbolig-hva-koster-det .nybygg-driver-map article:nth-child(2n),
.article-flermannsbolig-hva-koster-det .nybygg-roadmap article:nth-child(2n),
.article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps article:nth-child(2n),
.article-flermannsbolig-hva-koster-det .nybygg-permit-map article:nth-child(2n),
.article-flermannsbolig-hva-koster-det .nybygg-enterprise-grid article:nth-child(2n),
.article-flermannsbolig-hva-koster-det .nybygg-offer-matrix article:nth-child(2n),
.article-flermannsbolig-hva-koster-det .nybygg-finance-ladder article:nth-child(2n),
.article-flermannsbolig-hva-koster-det .nybygg-trap-radar article:nth-child(2n),
.article-flermannsbolig-hva-koster-det .nybygg-stop-gates article:nth-child(2n),
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 52%),
    var(--nybygg-card-2);
}

.article-flermannsbolig-hva-koster-det .nybygg-price-stack span,
.article-flermannsbolig-hva-koster-det .nybygg-roadmap span,
.article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps span,
.article-flermannsbolig-hva-koster-det .nybygg-finance-ladder span,
.article-flermannsbolig-hva-koster-det .nybygg-price-layers span,
.article-flermannsbolig-hva-koster-det .nybygg-scope-compare article > span,
.article-flermannsbolig-hva-koster-det .nybygg-permit-map span,
.article-flermannsbolig-hva-koster-det .nybygg-enterprise-grid span,
.article-flermannsbolig-hva-koster-det .nybygg-offer-matrix span,
.article-flermannsbolig-hva-koster-det .nybygg-trap-radar span,
.article-flermannsbolig-hva-koster-det .nybygg-stop-gates span {
  color: #fff8ec;
  background: var(--nybygg-ink);
  border-color: rgba(11, 49, 64, 0.18);
  border-radius: 999px;
}

.article-flermannsbolig-hva-koster-det .nybygg-price-stack em,
.article-flermannsbolig-hva-koster-det .nybygg-enterprise-grid em,
.article-flermannsbolig-hva-koster-det .nybygg-driver-map em,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship > div p,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a span,
.article-flermannsbolig-hva-koster-det .blog-article__section .blog-infographic--nybygg-flagship .blog-infographic__label {
  color: var(--nybygg-gold);
}

.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship > div p::after,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a::before,
.article-flermannsbolig-hva-koster-det .blog-article__section .blog-infographic--nybygg-flagship .blog-infographic__label::after {
  background: linear-gradient(90deg, var(--nybygg-gold), var(--nybygg-sage));
}

.article-flermannsbolig-hva-koster-det .nybygg-driver-map article i,
.article-flermannsbolig-hva-koster-det .nybygg-scope-compare li {
  background: rgba(11, 49, 64, 0.08);
  border-color: rgba(11, 49, 64, 0.12);
}

.article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 188px;
  padding: clamp(18px, 2.1vw, 26px);
  border-top: 4px solid var(--nybygg-gold);
}

.article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps span {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-width: 32px;
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
}

.article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps article:nth-child(3n + 2) {
  border-top-color: var(--nybygg-sage);
}

.article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps article:nth-child(3n) {
  border-top-color: var(--nybygg-clay);
}

.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship {
  width: min(1040px, 100%);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(238, 226, 207, 0.98)),
    #fff8ec;
}

.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship h2 {
  max-width: 980px;
  font-size: clamp(1.9rem, 3.8vw, 3.45rem);
  line-height: 1.03;
}

.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a {
  min-height: 142px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a:hover,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a:focus-visible {
  color: var(--nybygg-muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 52%),
    #fffdf7;
  border-color: rgba(11, 49, 64, 0.28);
  box-shadow: 0 24px 54px rgba(45, 34, 20, 0.14);
  transform: translateY(-4px);
}

.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a:hover::before,
.article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a:focus-visible::before {
  width: 58px;
}

@media (max-width: 1100px) {
  .article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps,
  .article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps,
  .article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship nav {
    grid-template-columns: 1fr;
  }

  .article-flermannsbolig-hva-koster-det .nybygg-roadmap-steps article,
  .article-flermannsbolig-hva-koster-det .blog-cluster-links--nybygg-flagship a {
    min-height: 0;
  }
}

/* Scoped final layer for the 2026 price-guide articles only. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) {
  --pg-bg: #0b2f3b;
  --pg-ink: #f8f3e8;
  --pg-muted: rgba(248, 243, 232, 0.78);
  --pg-line: rgba(248, 243, 232, 0.22);
  --pg-accent: #dce7cf;
  --pg-soft: #ecf2e8;
  --pg-card: #173f5d;
  --pg-card-alt: #1f444b;
}

:is(.article-bygge-moderne-hus-hva-koster-det, .article-bygge-funkishus-hva-koster-det) {
  --pg-accent: #d8e6e1;
  --pg-soft: #eef5ef;
  --pg-card: #193b58;
  --pg-card-alt: #1e4655;
}

.article-bygge-tomannsbolig-hva-koster-det {
  --pg-accent: #e6dfc6;
  --pg-soft: #f1ead8;
  --pg-card: #193b53;
  --pg-card-alt: #284540;
}

:is(.article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) {
  --pg-accent: #d5e7e3;
  --pg-soft: #ecf5f2;
  --pg-card: #173d59;
  --pg-card-alt: #20464c;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation {
  left: auto !important;
  width: 100% !important;
  max-width: 920px !important;
  margin: clamp(30px, 4vw, 48px) auto clamp(18px, 3vw, 28px) !important;
  padding: clamp(28px, 4vw, 46px) !important;
  color: var(--pg-ink) !important;
  background:
    radial-gradient(circle at 88% 10%, rgba(216, 230, 225, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(17, 58, 72, 0.98), rgba(8, 37, 48, 0.98)),
    var(--pg-bg) !important;
  border: 1px solid rgba(248, 243, 232, 0.18) !important;
  border-radius: 6px !important;
  box-shadow: 0 26px 62px rgba(5, 22, 30, 0.22) !important;
  transform: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__label,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation em {
  color: var(--pg-accent) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__label::after {
  background: var(--pg-accent) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__title,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation strong {
  color: var(--pg-ink) !important;
  opacity: 1 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__note,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation p {
  color: var(--pg-muted) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .nybygg-icon {
  display: inline-grid !important;
  place-items: center !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  color: #082735 !important;
  background: var(--pg-soft) !important;
  border: 1px solid rgba(248, 243, 232, 0.38) !important;
  border-radius: 6px !important;
  opacity: 1 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-budget-stack,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-model-grid,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-tech-matrix,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-family-timeline,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-ladder {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 14px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-budget-row,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-budget-stack > article:not(.generation-budget-row),
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-model-grid article,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-tech-matrix article,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-family-timeline article,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-ladder article {
  background: var(--pg-card) !important;
  border: 1px solid var(--pg-line) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-budget-row:nth-child(2n),
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-budget-stack > article:not(.generation-budget-row):nth-child(2n),
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-model-grid article:nth-child(2n),
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-tech-matrix article:nth-child(2n),
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-family-timeline article:nth-child(2n) {
  background: var(--pg-card-alt) !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation {
  max-width: 860px !important;
  padding: clamp(26px, 3.6vw, 38px) !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation .blog-infographic__head {
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  max-width: 720px !important;
  margin-bottom: clamp(22px, 3vw, 34px) !important;
  padding-bottom: clamp(18px, 2.2vw, 26px) !important;
  align-items: start !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation .blog-infographic__title {
  max-width: 720px !important;
  font-size: clamp(1.36rem, 2vw, 1.82rem) !important;
  line-height: 1.1 !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation .blog-infographic__note {
  max-width: 66ch !important;
  font-size: 0.98rem !important;
  line-height: 1.58 !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation .nybygg-icon {
  display: none !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) {
  background:
    linear-gradient(90deg, rgba(248, 243, 232, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 243, 232, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #0a3543, #092d3a) !important;
  background-size: 48px 48px, 48px 48px, auto !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-model-grid,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-tech-matrix,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-offer-matrix,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-family-timeline,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-ladder {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
  gap: 10px !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-budget-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-budget-row,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-budget-stack > article:not(.generation-budget-row),
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-model-grid article,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-tech-matrix article,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-offer-matrix article,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-family-timeline article,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-ladder article {
  min-height: 0 !important;
  padding: clamp(18px, 2.2vw, 22px) !important;
  background: rgba(248, 243, 232, 0.065) !important;
  border: 1px solid rgba(248, 243, 232, 0.18) !important;
  border-left: 3px solid var(--pg-accent) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-budget-row:nth-child(2n),
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-budget-stack > article:not(.generation-budget-row):nth-child(2n),
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-model-grid article:nth-child(2n),
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-tech-matrix article:nth-child(2n),
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-offer-matrix article:nth-child(2n),
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-family-timeline article:nth-child(2n),
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-ladder article:nth-child(2n) {
  background: rgba(248, 243, 232, 0.085) !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-ladder article:not(:last-child)::after {
  display: none !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) article > span:not(.nybygg-icon):first-child,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-ladder article span,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-model-grid article span,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-tech-matrix article span,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-family-timeline article span {
  display: inline-grid !important;
  place-items: center !important;
  width: max-content !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 0 12px !important;
  padding: 7px 10px !important;
  color: #092d3a !important;
  background: var(--pg-accent) !important;
  border-radius: 999px !important;
  font-size: 0.66rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-offer-matrix article > span {
  width: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  height: 14px !important;
  padding: 0 !important;
  border-radius: 50% !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) article strong {
  color: var(--pg-ink) !important;
  font-size: clamp(1rem, 1.12vw, 1.14rem) !important;
  line-height: 1.18 !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) article p,
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) article em {
  color: var(--pg-muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

.blog-cluster-links--tomanns-compact {
  width: min(860px, 100%);
  gap: 18px;
  margin-bottom: clamp(42px, 5vw, 64px);
  padding: clamp(22px, 3vw, 32px);
  background: #fffaf0;
  border-color: rgba(11, 49, 64, 0.16);
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] {
  --nybygg-premium-blue: #173452;
  --nybygg-premium-blue-deep: #0d253a;
  --nybygg-premium-blue-card: #213f5d;
  --nybygg-premium-blue-card-alt: #183755;
  --nybygg-premium-paper: #faf6ed;
  --nybygg-premium-muted: rgba(250, 246, 237, 0.78);
  --nybygg-premium-line: rgba(250, 246, 237, 0.2);
  --nybygg-premium-accent: #d59a3d;
  width: 100%;
  max-width: 920px;
  margin: clamp(34px, 4vw, 52px) auto clamp(22px, 3vw, 34px);
  padding: clamp(28px, 4vw, 46px);
  color: var(--nybygg-premium-paper);
  background:
    linear-gradient(180deg, rgba(23, 52, 82, 0.98), rgba(13, 37, 58, 0.98)),
    var(--nybygg-premium-blue);
  border: 1px solid rgba(250, 246, 237, 0.18);
  border-radius: 6px;
  box-shadow: 0 26px 62px rgba(9, 24, 38, 0.22);
  overflow: hidden;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"]::before {
  background:
    linear-gradient(90deg, rgba(250, 246, 237, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 246, 237, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.54;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] * {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__head {
  display: block;
  max-width: 760px;
  margin: 0 0 clamp(24px, 3vw, 36px);
  padding: 0 0 clamp(18px, 2.4vw, 26px);
  border-bottom: 1px solid var(--nybygg-premium-line);
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__label {
  display: inline-block;
  color: var(--nybygg-premium-accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__label::after {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 14px;
  background: var(--nybygg-premium-accent);
  content: "";
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__title {
  max-width: 720px;
  margin-top: 20px;
  color: var(--nybygg-premium-paper);
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  font-weight: 520;
  line-height: 1.08;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__note,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] p,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] em {
  color: var(--nybygg-premium-muted);
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-infographic__note {
  max-width: 66ch;
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.58;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .nybygg-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  color: var(--nybygg-premium-blue);
  background: var(--nybygg-premium-paper);
  border: 1px solid rgba(250, 246, 237, 0.38);
  border-radius: 6px;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .nybygg-icon svg {
  width: 23px;
  height: 23px;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-price-stack,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-scope-compare,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-driver-map,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap-steps,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-permit-map,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-enterprise-grid,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-offer-matrix,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-finance-ladder,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-trap-radar,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-stop-gates,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-site-check,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-risk-map,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-contract-grid,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-permit-flow,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-layer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-price-stack article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-scope-compare article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-driver-map article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap-steps article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-permit-map article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-enterprise-grid article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-offer-matrix article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-finance-ladder article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-trap-radar article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-stop-gates article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-site-check article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-risk-map article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-contract-grid article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-permit-flow article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-layer div {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: clamp(18px, 2.2vw, 24px);
  color: var(--nybygg-premium-paper);
  background: rgba(33, 63, 93, 0.82);
  border: 1px solid var(--nybygg-premium-line);
  border-left: 3px solid var(--nybygg-premium-accent);
  border-radius: 6px;
  box-shadow: none;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-price-stack article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-scope-compare article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-driver-map article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap-steps article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-permit-map article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-enterprise-grid article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-offer-matrix article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-finance-ladder article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-trap-radar article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-stop-gates article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-site-check article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-risk-map article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-contract-grid article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-permit-flow article:nth-child(2n),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-layer div:nth-child(2n) {
  background: rgba(24, 55, 85, 0.9);
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] article strong,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] .blog-info-layer strong {
  color: var(--nybygg-premium-paper);
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  line-height: 1.18;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-price-stack article > span:not(.nybygg-icon),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-scope-compare article > span:not(.nybygg-icon),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap article > span:not(.nybygg-icon),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap-steps article > span:not(.nybygg-icon),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-permit-map article > span:not(.nybygg-icon),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-enterprise-grid article > span:not(.nybygg-icon),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-offer-matrix article > span,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-finance-ladder article > span,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-trap-radar article > span:not(.nybygg-icon),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-stop-gates article > span:not(.nybygg-icon),
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-site-check article > span,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-risk-map article > span,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-contract-grid article > span,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-permit-flow article > span,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-layer div > span {
  display: inline-grid;
  place-items: center;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 7px 10px;
  color: var(--nybygg-premium-blue-deep);
  background: var(--nybygg-premium-paper);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-price-stack em,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-driver-map em,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-enterprise-grid em,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-site-check em,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-risk-map em,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-permit-flow em {
  grid-column: auto;
  align-content: start;
  margin: 0;
  color: var(--nybygg-premium-accent);
  font-style: normal;
  font-weight: 850;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-price-stack article::after,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-driver-map article i::before,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-risk-map article i::before {
  background: linear-gradient(90deg, var(--nybygg-premium-paper), var(--nybygg-premium-accent));
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-driver-map article i,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-risk-map article i {
  background: rgba(250, 246, 237, 0.14);
  border: 1px solid rgba(250, 246, 237, 0.18);
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-price-layers {
  border-top: 1px solid var(--nybygg-premium-line);
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-price-layers span {
  color: var(--nybygg-premium-blue-deep);
  background: var(--nybygg-premium-paper);
  border: 0;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-scope-compare ul {
  gap: 8px;
  margin-top: auto;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-scope-compare li {
  color: var(--nybygg-premium-muted);
  background: rgba(250, 246, 237, 0.08);
  border: 1px solid rgba(250, 246, 237, 0.16);
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap article:not(:last-child)::after,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-permit-flow article:not(:last-child)::after {
  display: none;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-site-check__labels {
  display: none;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-site-result {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: clamp(18px, 2.2vw, 24px);
  color: var(--nybygg-premium-paper);
  background: rgba(250, 246, 237, 0.08);
  border: 1px solid var(--nybygg-premium-line);
  border-radius: 6px;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-site-result strong {
  color: var(--nybygg-premium-paper);
}

@media (max-width: 760px) {
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"] {
    width: min(100%, calc(100vw - 32px));
    padding: 24px 18px;
  }

  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-price-stack,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-scope-compare,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-driver-map,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-roadmap-steps,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-permit-map,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-enterprise-grid,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-offer-matrix,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-finance-ladder,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-trap-radar,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .nybygg-stop-gates,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-site-check,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-risk-map,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-contract-grid,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-permit-flow,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-info-layer {
    grid-template-columns: 1fr;
  }
}

.blog-cluster-links--tomanns-compact > div {
  gap: 10px;
  max-width: 680px;
}

.blog-cluster-links--tomanns-compact h2 {
  max-width: 620px;
  font-size: clamp(1.42rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.blog-cluster-links--tomanns-compact nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 10px;
  max-width: 100%;
}

.blog-cluster-links--tomanns-compact a {
  min-height: 0;
  gap: 7px;
  padding: 16px 18px;
  background: #ffffff;
  border-left: 3px solid rgba(194, 124, 42, 0.82);
  border-radius: 0;
}

.blog-cluster-links--tomanns-compact a::before {
  display: none;
}

.blog-cluster-links--tomanns-compact a:hover,
.blog-cluster-links--tomanns-compact a:focus-visible {
  background: #fffdf8;
  border-color: rgba(11, 49, 64, 0.18);
  border-left-color: #0b3140;
  box-shadow: none;
  transform: none;
}

.blog-cluster-links--tomanns-compact a span {
  color: #b2681f;
  font-size: 0.62rem;
}

.blog-cluster-links--tomanns-compact strong {
  color: #0b3140;
  font-size: 0.98rem;
  line-height: 1.28;
}

@media (max-width: 760px) {
  .article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) .generation-budget-stack,
  .blog-cluster-links--tomanns-compact nav {
    grid-template-columns: 1fr !important;
  }
}

/* Restore the generasjonsbolig infographic reference treatment. */
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation {
  --generation-ink: #f7f0e2;
  --generation-paper: #fff8ec;
  --generation-blue: #183f5b;
  --generation-teal: #0b3140;
  --generation-gold: #d9a03f;
  --generation-sage: #9fb297;
  --generation-clay: #c47a58;
  --generation-line: rgba(247, 240, 226, 0.2);
  left: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  color: var(--generation-ink) !important;
  background:
    linear-gradient(135deg, rgba(11, 49, 64, 0.98), rgba(24, 63, 91, 0.98)),
    #0b3140 !important;
  border-color: rgba(217, 160, 63, 0.42) !important;
  transform: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__title,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation strong {
  color: var(--generation-ink) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__note,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation p,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation li {
  color: rgba(247, 240, 226, 0.78) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .nybygg-icon {
  display: none !important;
}

/* Final guard: generasjonsbolig follows the same scoped icon and width rules. */
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation {
  --generation-gold: var(--pg-accent) !important;
  max-width: 920px !important;
  margin: clamp(30px, 4vw, 48px) auto clamp(18px, 3vw, 28px) !important;
  border-color: rgba(248, 243, 232, 0.18) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__label,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation em {
  color: var(--pg-accent) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__label::after {
  background: var(--pg-accent) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .nybygg-icon {
  display: inline-grid !important;
  place-items: center !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  color: #082735 !important;
  background: var(--pg-soft) !important;
  border: 1px solid rgba(248, 243, 232, 0.38) !important;
  border-radius: 6px !important;
  opacity: 1 !important;
}

/* Cool accent guard for the owned 2026 price-guide visuals only. */
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) {
  --pg-accent: #c7e5e1 !important;
  --pg-soft: #edf7f4 !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation {
  --generation-gold: #c7e5e1 !important;
  --generation-sage: #9fc9bd !important;
  --generation-clay: #9fb7cc !important;
  --nybygg-gold: #c7e5e1 !important;
  --answer-gold: #c7e5e1 !important;
  max-width: 920px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.blog-infographic__label, em) {
  color: #c7e5e1 !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__label::after,
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-score-band i,
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-offer-matrix article > span.is-yellow {
  background: #c7e5e1 !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-offer-matrix article > span.is-red {
  background: #9fb7cc !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-article-photo {
  --photo-brass: #c7e5e1 !important;
  --photo-sage: #9fc9bd !important;
  max-width: 920px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-article-photo__copy span {
  color: #d9f0ec !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-article-photo__copy span::after,
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-article-photo__copy small::before {
  background: #c7e5e1 !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship {
  --nybygg-bg: #0b2f3b !important;
  --nybygg-card: #173f5d !important;
  --nybygg-card-2: #1f464f !important;
  --nybygg-paper: #edf7f4 !important;
  --nybygg-ink: #f8f3e8 !important;
  --nybygg-muted: rgba(248, 243, 232, 0.78) !important;
  --nybygg-line: rgba(248, 243, 232, 0.2) !important;
  --nybygg-gold: #c7e5e1 !important;
  --nybygg-clay: #9fb7cc !important;
  --nybygg-sage: #9fc9bd !important;
  width: 100% !important;
  max-width: 920px !important;
  margin-inline: auto !important;
  padding: clamp(28px, 4vw, 46px) !important;
  color: var(--nybygg-ink) !important;
  background:
    radial-gradient(circle at 88% 10%, rgba(199, 229, 225, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(17, 58, 72, 0.98), rgba(8, 37, 48, 0.98)),
    var(--nybygg-bg) !important;
  border: 1px solid var(--nybygg-line) !important;
  border-radius: 6px !important;
  box-shadow: 0 26px 62px rgba(5, 22, 30, 0.22) !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div p,
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a span {
  color: #c7e5e1 !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div p::after {
  background: #c7e5e1 !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship h2 {
  max-width: 16ch !important;
  color: var(--nybygg-ink) !important;
  font-size: clamp(2rem, 4.2vw, 3.65rem) !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship nav {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  max-width: none !important;
  gap: 14px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a {
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  align-content: start !important;
  column-gap: 14px !important;
  row-gap: 6px !important;
  min-height: 148px !important;
  color: var(--nybygg-muted) !important;
  background: var(--nybygg-card) !important;
  border: 1px solid var(--nybygg-line) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:nth-child(2n) {
  background: var(--nybygg-card-2) !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a::before {
  grid-row: 1 / span 2 !important;
  width: 52px !important;
  height: 52px !important;
  margin: 0 !important;
  background-color: #edf7f4 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23082735' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M9 17h6'/%3E%3C/svg%3E") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 28px 28px !important;
  border-radius: 6px !important;
  content: "" !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a strong {
  color: var(--nybygg-ink) !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:hover,
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:focus-visible {
  color: var(--nybygg-muted) !important;
  background: #214f5b !important;
  border-color: rgba(199, 229, 225, 0.48) !important;
  box-shadow: 0 18px 44px rgba(5, 22, 30, 0.2) !important;
  transform: translateY(-3px) !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__head {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  max-width: 720px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__title {
  max-width: 28ch !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__note {
  max-width: 62ch !important;
}

/* Final generasjonsbolig ladder/card guard: readable, dark, wrapped cards. */
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)) !important;
  gap: 14px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline) article {
  min-height: 0 !important;
  color: #f8f3e8 !important;
  background: #173f5d !important;
  border: 1px solid rgba(248, 243, 232, 0.22) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline) article:nth-child(2n) {
  background: #1f464f !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article {
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  grid-template-areas:
    "icon step"
    "icon title"
    "icon body"
    "icon tag" !important;
  align-content: start !important;
  column-gap: 14px !important;
  row-gap: 6px !important;
  padding: 22px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article:not(:last-child)::after {
  content: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article .nybygg-icon {
  grid-area: icon !important;
  align-self: start !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article > span:not(.nybygg-icon) {
  grid-area: step !important;
  display: inline-grid !important;
  place-items: center !important;
  width: max-content !important;
  min-width: 36px !important;
  height: auto !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 5px 10px !important;
  color: #082735 !important;
  background: #c7e5e1 !important;
  border-radius: 999px !important;
  font-size: 0.76rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article strong {
  grid-area: title !important;
  margin: 0 !important;
  color: #f8f3e8 !important;
  font-size: clamp(1.08rem, 1.3vw, 1.24rem) !important;
  line-height: 1.16 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article p {
  grid-area: body !important;
  margin: 4px 0 0 !important;
  color: rgba(248, 243, 232, 0.78) !important;
  font-size: 0.94rem !important;
  line-height: 1.5 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article em {
  grid-area: tag !important;
  margin-top: 10px !important;
  padding-top: 10px !important;
  color: #c7e5e1 !important;
  border-top: 1px solid rgba(248, 243, 232, 0.18) !important;
  font-size: 0.78rem !important;
  line-height: 1.35 !important;
}

/* Generasjonsbolig final QA guard: no injected icons, no pale text, no skinny cards. */
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation {
  max-width: 860px !important;
  padding: clamp(26px, 3.8vw, 42px) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .nybygg-icon {
  display: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__head {
  grid-template-columns: 1fr !important;
  max-width: 760px !important;
  gap: 10px !important;
  margin-bottom: clamp(22px, 3vw, 34px) !important;
  padding-bottom: clamp(18px, 2.4vw, 28px) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__title {
  max-width: 34ch !important;
  color: #f8f3e8 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__note {
  max-width: 66ch !important;
  color: rgba(248, 243, 232, 0.82) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list) {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)) !important;
  gap: 12px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-stack-compare {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)) !important;
  gap: 14px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-plan {
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr) !important;
  gap: 16px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list) article,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-stack-compare article,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-plan article {
  min-height: 0 !important;
  padding: clamp(18px, 2.3vw, 24px) !important;
  color: #f8f3e8 !important;
  background: rgba(248, 243, 232, 0.08) !important;
  border: 1px solid rgba(248, 243, 232, 0.2) !important;
  border-left: 3px solid #c7e5e1 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list) article:nth-child(2n),
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-plan article:nth-child(2n) {
  background: rgba(248, 243, 232, 0.105) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article {
  grid-template-columns: 1fr !important;
  grid-template-areas: none !important;
  gap: 8px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article > * {
  grid-area: auto !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article:not(:last-child)::after {
  display: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline) article > span:not(.nybygg-icon),
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-score-list span {
  display: inline-grid !important;
  place-items: center !important;
  width: max-content !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 0 10px !important;
  padding: 7px 10px !important;
  color: #082735 !important;
  background: #c7e5e1 !important;
  border-radius: 999px !important;
  font-size: 0.68rem !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare, .generation-zone-plan) strong {
  color: #f8f3e8 !important;
  font-size: clamp(1rem, 1.18vw, 1.16rem) !important;
  line-height: 1.18 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare, .generation-zone-plan) p,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline) em {
  color: rgba(248, 243, 232, 0.78) !important;
  font-size: 0.9rem !important;
  line-height: 1.48 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-stack-compare article > div {
  margin: 16px 0 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-map {
  background:
    linear-gradient(90deg, transparent 49%, rgba(248, 243, 232, 0.16) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(248, 243, 232, 0.12) 49% 51%, transparent 51%),
    rgba(248, 243, 232, 0.08) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-map span {
  color: #082735 !important;
  background: #fff8ec !important;
}

@media (max-width: 760px) {
  .article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-plan,
  .article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-stack-compare {
    grid-template-columns: 1fr !important;
  }
}

/* Final guard: blue palette, readable cards, normal article width. */
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation {
  --nybygg-premium-blue: #173452;
  --nybygg-premium-blue-deep: #0d253a;
  --nybygg-premium-paper: #faf6ed;
  --nybygg-premium-muted: rgba(250, 246, 237, 0.8);
  --nybygg-premium-line: rgba(250, 246, 237, 0.2);
  --nybygg-premium-accent: #d59a3d;
  left: auto !important;
  width: 100% !important;
  max-width: 920px !important;
  margin: clamp(34px, 4vw, 52px) auto clamp(22px, 3vw, 34px) !important;
  padding: clamp(28px, 4vw, 46px) !important;
  color: var(--nybygg-premium-paper) !important;
  background:
    linear-gradient(90deg, rgba(250, 246, 237, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 246, 237, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #173452, #0d253a) !important;
  background-size: 40px 40px, 40px 40px, auto !important;
  border: 1px solid rgba(250, 246, 237, 0.18) !important;
  border-radius: 6px !important;
  box-shadow: 0 26px 62px rgba(9, 24, 38, 0.22) !important;
  transform: none !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation .blog-infographic__head {
  display: block !important;
  grid-template-columns: 1fr !important;
  max-width: 760px !important;
  margin: 0 0 clamp(24px, 3vw, 36px) !important;
  padding: 0 0 clamp(18px, 2.4vw, 26px) !important;
  border-bottom: 1px solid var(--nybygg-premium-line) !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation .blog-infographic__label {
  color: var(--nybygg-premium-accent) !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.12em !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation .blog-infographic__label::after {
  width: 72px !important;
  max-width: 72px !important;
  height: 2px !important;
  margin-top: 14px !important;
  background: var(--nybygg-premium-accent) !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation .blog-infographic__title {
  max-width: 720px !important;
  margin-top: 20px !important;
  color: var(--nybygg-premium-paper) !important;
  font-size: clamp(1.55rem, 2.35vw, 2.25rem) !important;
  font-weight: 520 !important;
  line-height: 1.08 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation .blog-infographic__note {
  max-width: 66ch !important;
  margin-top: 14px !important;
  color: var(--nybygg-premium-muted) !important;
  font-size: 1rem !important;
  line-height: 1.58 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation .nybygg-icon {
  display: inline-grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  margin: 0 0 2px !important;
  color: var(--nybygg-premium-blue) !important;
  background: var(--nybygg-premium-paper) !important;
  border: 1px solid rgba(250, 246, 237, 0.38) !important;
  border-radius: 6px !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation :is(.generation-budget-stack, .generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)) !important;
  gap: 14px !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article:not(.generation-budget-row), .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article) {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: start !important;
  gap: 12px !important;
  min-height: 0 !important;
  padding: clamp(18px, 2.2vw, 24px) !important;
  color: var(--nybygg-premium-paper) !important;
  background: rgba(33, 63, 93, 0.82) !important;
  border: 1px solid var(--nybygg-premium-line) !important;
  border-left: 3px solid var(--nybygg-premium-accent) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article:not(.generation-budget-row), .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article):nth-child(2n) {
  background: rgba(24, 55, 85, 0.9) !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article:not(.generation-budget-row), .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article) > * {
  grid-column: auto !important;
  grid-area: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article:not(.generation-budget-row), .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article) > span:not(.nybygg-icon) {
  display: inline-grid !important;
  place-items: center !important;
  width: max-content !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 7px 10px !important;
  color: var(--nybygg-premium-blue-deep) !important;
  background: var(--nybygg-premium-paper) !important;
  border-radius: 999px !important;
  font-size: 0.68rem !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article:not(.generation-budget-row), .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article) strong {
  color: var(--nybygg-premium-paper) !important;
  font-size: clamp(1.02rem, 1.15vw, 1.16rem) !important;
  line-height: 1.18 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article:not(.generation-budget-row), .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article) p {
  max-width: 62ch !important;
  margin: 0 !important;
  color: var(--nybygg-premium-muted) !important;
  font-size: 0.94rem !important;
  line-height: 1.5 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article:not(.generation-budget-row), .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article) em {
  margin: 0 !important;
  padding-top: 10px !important;
  color: var(--nybygg-premium-accent) !important;
  border-top: 1px solid var(--nybygg-premium-line) !important;
  font-size: 0.82rem !important;
  font-style: normal !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article:not(.generation-budget-row)) strong::after {
  display: block !important;
  width: var(--w, 72%) !important;
  height: 6px !important;
  margin-top: 12px !important;
  background: linear-gradient(90deg, var(--nybygg-premium-paper), var(--nybygg-premium-accent)) !important;
  border-radius: 999px !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation .generation-ladder article:not(:last-child)::after {
  display: none !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation .generation-tech-matrix--site__labels {
  display: none !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation .blog-info-site-result {
  margin-top: 14px !important;
  padding: clamp(18px, 2.2vw, 24px) !important;
  color: var(--nybygg-premium-paper) !important;
  background: rgba(250, 246, 237, 0.08) !important;
  border: 1px solid var(--nybygg-premium-line) !important;
  border-radius: 6px !important;
}

@media (max-width: 760px) {
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation {
    width: min(100%, calc(100vw - 32px)) !important;
    padding: 24px 18px !important;
  }

  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation :is(.generation-budget-stack, .generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list) {
    grid-template-columns: 1fr !important;
  }
}

/* Generasjonsbolig v258 guard: keep generated article infographics readable and not skinny. */
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation {
  left: auto !important;
  width: 100% !important;
  max-width: 860px !important;
  margin: clamp(34px, 4vw, 52px) auto clamp(22px, 3vw, 34px) !important;
  padding: clamp(28px, 3.8vw, 42px) !important;
  color: #f8f3e8 !important;
  background:
    linear-gradient(90deg, rgba(248, 243, 232, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 243, 232, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #123d4c, #082f3d) !important;
  background-size: 40px 40px, 40px 40px, auto !important;
  border: 1px solid rgba(248, 243, 232, 0.18) !important;
  border-radius: 6px !important;
  box-shadow: 0 24px 58px rgba(7, 24, 32, 0.22) !important;
  transform: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .nybygg-icon {
  display: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__head {
  display: block !important;
  grid-template-columns: 1fr !important;
  max-width: 760px !important;
  margin: 0 0 clamp(24px, 3vw, 36px) !important;
  padding: 0 0 clamp(18px, 2.4vw, 26px) !important;
  border-bottom: 1px solid rgba(248, 243, 232, 0.18) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__label {
  color: #cfa15f !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.12em !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__label::after {
  width: 72px !important;
  max-width: 72px !important;
  height: 2px !important;
  margin-top: 14px !important;
  background: #cfa15f !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__title {
  max-width: 680px !important;
  margin-top: 20px !important;
  color: #f8f3e8 !important;
  font-size: clamp(1.55rem, 2.25vw, 2.18rem) !important;
  font-weight: 520 !important;
  line-height: 1.08 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .blog-infographic__note {
  max-width: 66ch !important;
  margin-top: 14px !important;
  color: rgba(248, 243, 232, 0.8) !important;
  font-size: 1rem !important;
  line-height: 1.58 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-score-list) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-family-timeline {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-stack-compare {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-plan {
  display: grid !important;
  grid-template-columns: minmax(270px, 0.9fr) minmax(320px, 1.1fr) !important;
  gap: 18px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list) article,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-stack-compare article,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-plan article {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: start !important;
  gap: 10px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: clamp(18px, 2.2vw, 24px) !important;
  color: #f8f3e8 !important;
  background: rgba(248, 243, 232, 0.085) !important;
  border: 1px solid rgba(248, 243, 232, 0.2) !important;
  border-left: 3px solid #c7e5e1 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list) article:nth-child(2n),
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-plan article:nth-child(2n) {
  background: rgba(248, 243, 232, 0.115) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list) article > * {
  grid-column: auto !important;
  grid-area: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article:not(:last-child)::after {
  display: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-family-timeline) article > span:not(.nybygg-icon),
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-score-list span {
  display: inline-grid !important;
  place-items: center !important;
  width: max-content !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 7px 10px !important;
  color: #082735 !important;
  background: #c7e5e1 !important;
  border-radius: 999px !important;
  font-size: 0.68rem !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  white-space: normal !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare, .generation-zone-plan) strong {
  color: #f8f3e8 !important;
  font-size: clamp(1.02rem, 1.15vw, 1.16rem) !important;
  line-height: 1.18 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare, .generation-zone-plan) p {
  max-width: 62ch !important;
  margin: 0 !important;
  color: rgba(248, 243, 232, 0.78) !important;
  font-size: 0.94rem !important;
  line-height: 1.5 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-family-timeline) em {
  margin: 0 !important;
  padding-top: 10px !important;
  color: #cfa15f !important;
  border-top: 1px solid rgba(248, 243, 232, 0.18) !important;
  font-size: 0.82rem !important;
  font-style: normal !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-stack-compare article > div {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 6px !important;
  margin: 16px 0 4px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-stack-compare article > div span {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 8px 10px !important;
  color: #f8f3e8 !important;
  border-radius: 0 !important;
  font-size: 0.76rem !important;
  line-height: 1.2 !important;
  font-weight: 750 !important;
  white-space: normal !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-map {
  min-height: 280px !important;
  background:
    linear-gradient(90deg, transparent 49%, rgba(248, 243, 232, 0.18) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(248, 243, 232, 0.12) 49% 51%, transparent 51%),
    rgba(248, 243, 232, 0.08) !important;
  border-color: rgba(248, 243, 232, 0.22) !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-map span {
  color: #082735 !important;
  background: #fff8ec !important;
  border-color: rgba(8, 39, 53, 0.14) !important;
}

@media (max-width: 760px) {
  .article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation {
    width: min(100%, calc(100vw - 32px)) !important;
    padding: 24px 18px !important;
  }

  .article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation :is(.generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-score-list),
  .article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-family-timeline,
  .article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-stack-compare,
  .article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-zone-plan {
    grid-template-columns: 1fr !important;
  }
}

/* Generated price-guide v260: compact document panels, scoped to owned price articles only. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship {
  display: grid !important;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr) !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 820px !important;
  margin: clamp(24px, 4vw, 38px) auto !important;
  padding: clamp(18px, 2.6vw, 24px) !important;
  color: #fff8ea !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #173452, #102b44) !important;
  background-size: 36px 36px, auto !important;
  border: 1px solid rgba(255, 248, 234, 0.18) !important;
  border-radius: 6px !important;
  box-shadow: 0 18px 42px rgba(5, 22, 30, 0.17) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div {
  min-width: 0 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div p {
  margin: 0 0 12px !important;
  color: #c7e5e1 !important;
  font-size: 0.68rem !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div p::after {
  width: 48px !important;
  height: 2px !important;
  margin-top: 10px !important;
  background: #c7e5e1 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship h2 {
  max-width: 18ch !important;
  margin: 0 !important;
  color: #fff8ea !important;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem) !important;
  line-height: 1.12 !important;
  font-weight: 560 !important;
  letter-spacing: 0 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship nav {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  max-width: none !important;
  align-self: start !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  column-gap: 10px !important;
  row-gap: 4px !important;
  align-content: start !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 11px 12px !important;
  color: rgba(255, 248, 234, 0.78) !important;
  background: rgba(255, 248, 234, 0.07) !important;
  border: 1px solid rgba(255, 248, 234, 0.16) !important;
  border-left: 2px solid #c7e5e1 !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  transform: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:nth-child(2n) {
  background: rgba(199, 229, 225, 0.095) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a::before {
  grid-row: 1 / span 2 !important;
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  background-color: #edf7f4 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23082735' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M9 17h5'/%3E%3C/svg%3E") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 21px 21px !important;
  border: 1px solid rgba(255, 248, 234, 0.36) !important;
  border-radius: 5px !important;
  content: "" !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a span {
  grid-column: 2 !important;
  color: #c7e5e1 !important;
  font-size: 0.58rem !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a strong {
  grid-column: 2 !important;
  color: #fff8ea !important;
  font-size: 0.88rem !important;
  line-height: 1.18 !important;
  font-weight: 720 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:hover,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:focus-visible {
  background: rgba(199, 229, 225, 0.14) !important;
  border-color: rgba(199, 229, 225, 0.42) !important;
  box-shadow: none !important;
  transform: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation {
  max-width: 820px !important;
  margin: clamp(24px, 4vw, 36px) auto clamp(18px, 3vw, 26px) !important;
  padding: clamp(18px, 2.8vw, 26px) !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, #173452, #102b44) !important;
  background-size: 36px 36px, auto !important;
  border-color: rgba(255, 248, 234, 0.18) !important;
  border-radius: 6px !important;
  box-shadow: 0 18px 42px rgba(5, 22, 30, 0.17) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__head {
  display: block !important;
  max-width: 100% !important;
  margin-bottom: 16px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(255, 248, 234, 0.16) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__label {
  color: #c7e5e1 !important;
  font-size: 0.64rem !important;
  letter-spacing: 0.12em !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__label::after {
  width: 48px !important;
  margin-top: 10px !important;
  background: #c7e5e1 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__title {
  max-width: 28ch !important;
  margin-top: 12px !important;
  color: #fff8ea !important;
  font-size: clamp(1.2rem, 1.85vw, 1.62rem) !important;
  line-height: 1.13 !important;
  font-weight: 600 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__note {
  max-width: 68ch !important;
  margin-top: 8px !important;
  color: rgba(255, 248, 234, 0.76) !important;
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-stack, .generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  column-gap: 10px !important;
  row-gap: 5px !important;
  min-height: 0 !important;
  padding: 12px !important;
  background: rgba(255, 248, 234, 0.07) !important;
  border: 1px solid rgba(255, 248, 234, 0.16) !important;
  border-left: 2px solid #c7e5e1 !important;
  border-radius: 5px !important;
  box-shadow: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article):nth-child(2n) {
  background: rgba(199, 229, 225, 0.095) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .nybygg-icon {
  grid-row: 1 / span 2 !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  color: #082735 !important;
  background: #edf7f4 !important;
  border-radius: 5px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .nybygg-icon svg {
  width: 19px !important;
  height: 19px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > span:not(.nybygg-icon),
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-score-band span {
  grid-column: 2 !important;
  width: max-content !important;
  max-width: 100% !important;
  padding: 5px 7px !important;
  color: #c7e5e1 !important;
  background: transparent !important;
  border: 1px solid rgba(199, 229, 225, 0.32) !important;
  border-radius: 999px !important;
  font-size: 0.58rem !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) strong {
  grid-column: 2 !important;
  color: #fff8ea !important;
  font-size: 0.94rem !important;
  line-height: 1.18 !important;
  font-weight: 730 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) p,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) li {
  grid-column: 2 !important;
  max-width: 52ch !important;
  margin: 0 !important;
  color: rgba(255, 248, 234, 0.76) !important;
  font-size: 0.84rem !important;
  line-height: 1.36 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article) em {
  grid-column: 2 !important;
  margin: 2px 0 0 !important;
  padding-top: 6px !important;
  color: #c7e5e1 !important;
  border-top: 1px solid rgba(255, 248, 234, 0.16) !important;
  font-size: 0.72rem !important;
  line-height: 1.25 !important;
  font-style: normal !important;
  font-weight: 820 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation article::after,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation strong::after,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-ladder article:not(:last-child)::after {
  display: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-score-band {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-top: 12px !important;
  padding: 10px !important;
  border: 1px solid rgba(255, 248, 234, 0.14) !important;
}

@media (max-width: 900px) {
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship {
    grid-template-columns: 1fr !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship h2 {
    max-width: 36ch !important;
  }
}

@media (max-width: 720px) {
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship,
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation {
    width: min(100%, calc(100vw - 32px)) !important;
    padding: 18px !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship nav,
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-stack, .generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) {
    grid-template-columns: 1fr !important;
  }
}

/* Generated price-guide v260: make related-guide panels short document sections. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship {
  display: block !important;
  max-width: 820px !important;
  padding: clamp(16px, 2.2vw, 20px) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div {
  display: grid !important;
  grid-template-columns: 145px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: start !important;
  margin-bottom: 12px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 248, 234, 0.15) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div p {
  margin: 3px 0 0 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship h2 {
  max-width: 48ch !important;
  font-size: clamp(1.12rem, 1.55vw, 1.38rem) !important;
  line-height: 1.12 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship nav {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a {
  grid-template-columns: 30px minmax(0, 1fr) !important;
  column-gap: 9px !important;
  row-gap: 3px !important;
  padding: 9px 10px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a::before {
  width: 30px !important;
  height: 30px !important;
  background-size: 18px 18px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a span {
  font-size: 0.53rem !important;
  letter-spacing: 0.1em !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a strong {
  font-size: 0.78rem !important;
  line-height: 1.15 !important;
}

@media (max-width: 960px) {
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div,
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship nav {
    grid-template-columns: 1fr !important;
  }
}

/* Owned article infographic hard reset v259: scoped to generated price-guide articles only. */
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation {
  --owned-info-bg: #082d39;
  --owned-info-bg-2: #103b49;
  --owned-info-card: #143f55;
  --owned-info-card-2: #174a4d;
  --owned-info-ink: #fff8ea;
  --owned-info-muted: rgba(255, 248, 234, 0.82);
  --owned-info-line: rgba(255, 248, 234, 0.18);
  --owned-info-accent: #bfe3de;
  --owned-info-accent-2: #9fc7d6;
  --owned-info-icon: #eef8f4;
  left: auto !important;
  width: 100% !important;
  max-width: 860px !important;
  margin: clamp(32px, 4vw, 50px) auto clamp(22px, 3vw, 34px) !important;
  padding: clamp(24px, 3.4vw, 38px) !important;
  overflow: hidden !important;
  color: var(--owned-info-ink) !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 248, 234, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, var(--owned-info-bg-2), var(--owned-info-bg)) !important;
  background-size: 42px 42px, 42px 42px, auto !important;
  border: 1px solid var(--owned-info-line) !important;
  border-radius: 6px !important;
  box-shadow: 0 22px 54px rgba(6, 24, 32, 0.22) !important;
  transform: none !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation * {
  box-sizing: border-box !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__head {
  display: block !important;
  max-width: 720px !important;
  margin: 0 0 clamp(22px, 3vw, 34px) !important;
  padding: 0 0 clamp(18px, 2.3vw, 26px) !important;
  border-bottom: 1px solid var(--owned-info-line) !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__label {
  color: var(--owned-info-accent) !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.12em !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__label::after {
  width: 72px !important;
  max-width: 72px !important;
  height: 2px !important;
  margin-top: 14px !important;
  background: var(--owned-info-accent) !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__title {
  max-width: 720px !important;
  margin-top: 18px !important;
  color: var(--owned-info-ink) !important;
  font-size: clamp(1.48rem, 2.2vw, 2.05rem) !important;
  font-weight: 560 !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__note {
  max-width: 66ch !important;
  margin-top: 12px !important;
  color: var(--owned-info-muted) !important;
  font-size: 1rem !important;
  line-height: 1.58 !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-stack, .generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-zone-plan {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-zone-plan > div:not(.generation-zone-map) {
  display: grid !important;
  gap: 14px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-zone-plan article) {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: start !important;
  gap: 10px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: clamp(18px, 2.2vw, 24px) !important;
  color: var(--owned-info-ink) !important;
  background: var(--owned-info-card) !important;
  border: 1px solid var(--owned-info-line) !important;
  border-left: 3px solid var(--owned-info-accent) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  transform: none !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-zone-plan article):nth-child(2n) {
  background: var(--owned-info-card-2) !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-zone-plan article) > * {
  grid-column: auto !important;
  grid-area: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .nybygg-icon {
  display: inline-grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  color: var(--owned-info-bg) !important;
  background: var(--owned-info-icon) !important;
  border: 1px solid rgba(255, 248, 234, 0.34) !important;
  border-radius: 6px !important;
  opacity: 1 !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .nybygg-icon svg {
  width: 25px !important;
  height: 25px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article) > span:not(.nybygg-icon),
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-score-band span {
  display: inline-grid !important;
  place-items: center !important;
  width: max-content !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 7px 10px !important;
  color: var(--owned-info-bg) !important;
  background: var(--owned-info-accent) !important;
  border-radius: 999px !important;
  font-size: 0.68rem !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  white-space: normal !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-zone-plan article) strong {
  color: var(--owned-info-ink) !important;
  font-size: clamp(1.02rem, 1.14vw, 1.16rem) !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-zone-plan article) p,
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-zone-plan article) li {
  max-width: 62ch !important;
  margin: 0 !important;
  color: var(--owned-info-muted) !important;
  font-size: 0.94rem !important;
  line-height: 1.5 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article) em {
  margin: 0 !important;
  padding-top: 10px !important;
  color: var(--owned-info-accent) !important;
  border-top: 1px solid var(--owned-info-line) !important;
  font-size: 0.82rem !important;
  font-style: normal !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  overflow-wrap: anywhere !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation article::after,
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation strong::after {
  content: none !important;
  display: none !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation article i {
  display: block !important;
  width: 100% !important;
  height: 4px !important;
  margin: 2px 0 !important;
  background: linear-gradient(90deg, var(--owned-info-accent) var(--score, 72%), rgba(255, 248, 234, 0.16) var(--score, 72%)) !important;
  border-radius: 999px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-score {
  display: grid !important;
  gap: 14px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-score-band {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 118px), 1fr)) !important;
  gap: 8px !important;
  margin-top: 14px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-score-band span {
  width: 100% !important;
  justify-content: center !important;
  border-radius: 6px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-zone-map {
  min-height: 250px !important;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 248, 234, 0.16) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 248, 234, 0.12) 49% 51%, transparent 51%),
    rgba(255, 248, 234, 0.08) !important;
  border: 1px solid var(--owned-info-line) !important;
  border-radius: 6px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-zone-map span {
  color: var(--owned-info-bg) !important;
  background: var(--owned-info-icon) !important;
  border: 1px solid rgba(8, 45, 57, 0.16) !important;
  border-radius: 999px !important;
  font-weight: 850 !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-stack-compare article > div {
  display: grid !important;
  gap: 6px !important;
  margin: 12px 0 2px !important;
}

:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-stack-compare article > div span {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 8px 10px !important;
  color: var(--owned-info-ink) !important;
  background: rgba(255, 248, 234, 0.08) !important;
  border: 1px solid var(--owned-info-line) !important;
  border-radius: 6px !important;
  font-size: 0.78rem !important;
  line-height: 1.25 !important;
  font-weight: 760 !important;
  white-space: normal !important;
}

@media (max-width: 760px) {
  :is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation {
    width: min(100%, calc(100vw - 32px)) !important;
    padding: 22px 18px !important;
  }

  :is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-stack, .generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare, .generation-zone-plan) {
    grid-template-columns: 1fr !important;
  }
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
  grid-template-columns: none !important;
  grid-template-areas: none !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article > * {
  grid-area: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article > span:not(.nybygg-icon) {
  margin-bottom: 2px !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article strong,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article p,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation .generation-ladder article em {
  margin-top: 0 !important;
}

/* Authored article related-guide infographic v262: compact document block only. */
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship {
  --guide-paper: #faf7f0;
  --guide-card: #fffdf8;
  --guide-ink: #142d34;
  --guide-muted: #5d7376;
  --guide-line: #d8d1c6;
  --guide-accent: #496d72;
  --guide-icon-bg: #edf4f1;
  --guide-icon-doc: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23142d34' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v5h5'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M9 17h5'/%3E%3C/svg%3E");
  --guide-icon-house: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23142d34' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11.5 12 4l9 7.5'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E");
  --guide-icon-plan: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23142d34' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16'/%3E%3Cpath d='M4 12h10'/%3E%3Cpath d='M4 19h16'/%3E%3Cpath d='m17 10 2 2 4-4' transform='translate(-3 1)'/%3E%3C/svg%3E");
  --guide-icon-water: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23142d34' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3s6 6.2 6 11a6 6 0 0 1-12 0c0-4.8 6-11 6-11z'/%3E%3Cpath d='M8.5 16.5c1.7 1.8 5.3 1.8 7 0'/%3E%3C/svg%3E");
  --guide-icon-ruler: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23142d34' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20 20 4'/%3E%3Cpath d='m7 17 2 2'/%3E%3Cpath d='m10 14 2 2'/%3E%3Cpath d='m13 11 2 2'/%3E%3Cpath d='m16 8 2 2'/%3E%3C/svg%3E");
  --guide-icon-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23142d34' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3Cpath d='M4 21h16'/%3E%3C/svg%3E");
  width: min(100%, 780px) !important;
  max-width: 780px !important;
  margin: clamp(24px, 3vw, 36px) auto !important;
  padding: clamp(18px, 2.4vw, 26px) !important;
  color: var(--guide-ink) !important;
  background: var(--guide-paper) !important;
  background-image: none !important;
  border: 1px solid var(--guide-line) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship *,
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship *::before,
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship *::after {
  box-sizing: border-box !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  transform: none !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div {
  display: block !important;
  max-width: 680px !important;
  margin: 0 0 14px !important;
  padding: 0 0 13px !important;
  border-bottom: 1px solid var(--guide-line) !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div p {
  display: block !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 0 0 10px !important;
  color: var(--guide-muted) !important;
  font-size: 0.66rem !important;
  font-weight: 780 !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship > div p::after {
  content: "" !important;
  display: block !important;
  width: 44px !important;
  height: 1px !important;
  margin-top: 9px !important;
  background: var(--guide-accent) !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship h2 {
  max-width: 640px !important;
  margin: 0 !important;
  color: var(--guide-ink) !important;
  font-size: clamp(1.42rem, 2.1vw, 1.92rem) !important;
  font-weight: 620 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship nav {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a,
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:nth-child(2n) {
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 11px !important;
  row-gap: 4px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 13px 14px !important;
  color: var(--guide-ink) !important;
  background: var(--guide-card) !important;
  background-image: none !important;
  border: 1px solid var(--guide-line) !important;
  border-left: 3px solid var(--guide-accent) !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:hover,
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:focus-visible {
  color: var(--guide-ink) !important;
  background: #ffffff !important;
  border-color: #bbc9c7 !important;
  border-left-color: #274f57 !important;
  box-shadow: inset 0 0 0 1px rgba(39, 79, 87, 0.08) !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a::before {
  content: "" !important;
  display: block !important;
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  background-color: var(--guide-icon-bg) !important;
  background-image: var(--guide-icon, var(--guide-icon-doc)) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 17px 17px !important;
  border: 1px solid #cbd8d5 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:hover::before,
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a:focus-visible::before {
  background-color: #e7f0ed !important;
  border-color: #b8cac6 !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="nybygg-enebolig"],
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="tilbygg"] {
  --guide-icon: var(--guide-icon-house);
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="soknadsplikt"],
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="handverkertilbud"],
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="bygge-hus-pris"] {
  --guide-icon: var(--guide-icon-plan);
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="drenering"],
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="bad"],
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="kjeller"] {
  --guide-icon: var(--guide-icon-water);
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="moderne-hus"],
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="fasade"],
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="loft"],
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="kjokken"] {
  --guide-icon: var(--guide-icon-ruler);
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a[href*="overlevering"] {
  --guide-icon: var(--guide-icon-check);
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a span {
  display: block !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: var(--guide-muted) !important;
  font-size: 0.58rem !important;
  font-weight: 760 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a strong {
  display: block !important;
  grid-column: 2 !important;
  grid-row: 2 !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  color: var(--guide-ink) !important;
  font-size: clamp(0.92rem, 0.98vw, 1rem) !important;
  font-weight: 640 !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: none !important;
  text-wrap: pretty !important;
}

@media (max-width: 700px) {
  :is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship {
    width: min(100%, calc(100vw - 32px)) !important;
    padding: 18px !important;
  }

  :is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship nav {
    grid-template-columns: 1fr !important;
  }
}

/* Generated price-guide v263: stable body infographic cards only. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation {
  --owned-info-paper: #173452;
  --owned-info-paper-deep: #102b44;
  --owned-info-line: rgba(232, 246, 242, 0.2);
  --owned-info-ink: #fff8ea;
  --owned-info-muted: rgba(255, 248, 234, 0.74);
  --owned-info-soft: #c7e5e1;
  --owned-info-gold: #f1b54c;
  width: min(100%, 780px) !important;
  max-width: 780px !important;
  margin: clamp(24px, 3vw, 34px) auto !important;
  padding: clamp(18px, 2.4vw, 24px) !important;
  color: var(--owned-info-ink) !important;
  background:
    linear-gradient(90deg, rgba(232, 246, 242, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--owned-info-paper), var(--owned-info-paper-deep)) !important;
  background-size: 32px 32px, auto !important;
  border: 1px solid var(--owned-info-line) !important;
  border-radius: 6px !important;
  box-shadow: 0 16px 36px rgba(8, 24, 34, 0.18) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation *,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation *::before,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
  letter-spacing: 0 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__head {
  display: block !important;
  max-width: 100% !important;
  margin: 0 0 14px !important;
  padding: 0 0 13px !important;
  border-bottom: 1px solid rgba(255, 248, 234, 0.16) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__label {
  color: var(--owned-info-soft) !important;
  font-size: 0.62rem !important;
  font-weight: 780 !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__label::after {
  width: 46px !important;
  height: 2px !important;
  margin-top: 9px !important;
  background: var(--owned-info-soft) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__title {
  max-width: 42ch !important;
  margin: 10px 0 0 !important;
  color: var(--owned-info-ink) !important;
  font-size: clamp(1.24rem, 1.95vw, 1.72rem) !important;
  font-weight: 690 !important;
  line-height: 1.08 !important;
  text-wrap: balance !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__note {
  max-width: 70ch !important;
  margin: 8px 0 0 !important;
  color: var(--owned-info-muted) !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-stack, .generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 225px), 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-auto-flow: row !important;
  align-content: start !important;
  align-items: start !important;
  gap: 6px !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 13px 14px !important;
  color: var(--owned-info-ink) !important;
  background: rgba(255, 248, 234, 0.07) !important;
  border: 1px solid rgba(255, 248, 234, 0.16) !important;
  border-left: 3px solid var(--owned-info-gold) !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  overflow: visible !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article):has(.nybygg-icon) {
  grid-template-columns: 36px minmax(0, 1fr) !important;
  column-gap: 11px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > * {
  grid-column: 1 !important;
  grid-row: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  transform: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article):has(.nybygg-icon) > :is(span:not(.nybygg-icon), strong, p, ul, ol, em, i, div) {
  grid-column: 2 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > div {
  display: grid !important;
  gap: 4px !important;
  width: 100% !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .nybygg-icon {
  grid-column: 1 !important;
  grid-row: 1 / span 3 !important;
  display: grid !important;
  place-items: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  color: #102b44 !important;
  background: #edf7f4 !important;
  border: 1px solid rgba(237, 247, 244, 0.86) !important;
  border-radius: 5px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .nybygg-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 1.8 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > span:not(.nybygg-icon) {
  justify-self: start !important;
  width: auto !important;
  max-width: 100% !important;
  padding: 5px 7px !important;
  color: #102b44 !important;
  background: #fff8ea !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-size: 0.58rem !important;
  line-height: 1 !important;
  font-weight: 860 !important;
  text-transform: uppercase !important;
  white-space: normal !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > strong,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > div > strong {
  display: block !important;
  width: 100% !important;
  color: var(--owned-info-ink) !important;
  font-size: 0.98rem !important;
  line-height: 1.18 !important;
  font-weight: 760 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > p,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > div > p {
  display: block !important;
  width: 100% !important;
  color: var(--owned-info-muted) !important;
  font-size: 0.84rem !important;
  line-height: 1.38 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > ul,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > ol {
  display: grid !important;
  gap: 5px !important;
  width: 100% !important;
  padding: 0 !important;
  color: var(--owned-info-muted) !important;
  list-style: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) li {
  display: grid !important;
  grid-template-columns: 6px minmax(0, 1fr) !important;
  gap: 8px !important;
  align-items: start !important;
  max-width: none !important;
  color: var(--owned-info-muted) !important;
  font-size: 0.8rem !important;
  line-height: 1.32 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) li::before {
  content: "" !important;
  width: 5px !important;
  height: 5px !important;
  margin-top: 0.48em !important;
  background: var(--owned-info-soft) !important;
  border-radius: 1px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article) > em {
  display: block !important;
  width: 100% !important;
  margin-top: 2px !important;
  padding-top: 6px !important;
  color: var(--owned-info-soft) !important;
  border-top: 1px solid rgba(255, 248, 234, 0.15) !important;
  font-size: 0.74rem !important;
  line-height: 1.24 !important;
  font-style: normal !important;
  font-weight: 820 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article) > i {
  display: block !important;
  width: min(var(--score, var(--w, 58%)), 132px) !important;
  height: 4px !important;
  margin: 2px 0 1px !important;
  background: linear-gradient(90deg, var(--owned-info-gold), #ffe0a0) !important;
  border-radius: 999px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-stack-compare article > div {
  display: flex !important;
  align-items: stretch !important;
  gap: 2px !important;
  min-height: 34px !important;
  overflow: hidden !important;
  border-radius: 4px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-stack-compare article > div span {
  display: grid !important;
  flex: var(--w, 1) 1 0 !important;
  place-items: center !important;
  min-width: 0 !important;
  padding: 6px 5px !important;
  color: #102b44 !important;
  background: var(--owned-info-soft) !important;
  font-size: 0.6rem !important;
  line-height: 1.05 !important;
  font-weight: 820 !important;
  text-align: center !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation article::after,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation strong::after,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-ladder article:not(:last-child)::after {
  display: none !important;
  content: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-score-band,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-info-site-result {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin: 12px 0 0 !important;
  padding: 10px !important;
  color: var(--owned-info-muted) !important;
  background: rgba(255, 248, 234, 0.06) !important;
  border: 1px solid rgba(255, 248, 234, 0.14) !important;
  border-radius: 5px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-score-band span {
  width: auto !important;
  max-width: 100% !important;
  padding: 5px 8px !important;
  color: #102b44 !important;
  background: #edf7f4 !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-size: 0.66rem !important;
  line-height: 1.1 !important;
  font-weight: 760 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-info-site-result strong,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-info-site-result p {
  width: 100% !important;
  margin: 0 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .generation-tech-matrix--site__labels {
  display: none !important;
}

@media (max-width: 720px) {
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation {
    width: min(100%, calc(100vw - 32px)) !important;
    padding: 18px !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-stack, .generation-ladder, .generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) {
    grid-template-columns: 1fr !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) {
    padding: 13px !important;
  }
}

/* Generated price-guide v264: keep long Norwegian card text inside cards. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > strong,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > div > strong {
  max-width: 100% !important;
  font-size: clamp(0.9rem, 0.95vw, 0.98rem) !important;
  line-height: 1.16 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  hyphens: auto !important;
  text-wrap: pretty !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > span:not(.nybygg-icon) {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  white-space: normal !important;
  hyphens: auto !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > p,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > div > p,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) li,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article) > em {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  hyphens: auto !important;
}

/* Nybygg price infographic v265: cleaner price cards without forced icons. */
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 8px !important;
  min-height: 0 !important;
  padding: 16px !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack .nybygg-icon {
  display: none !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > * {
  grid-column: 1 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > span:not(.nybygg-icon) {
  justify-self: start !important;
  padding: 5px 8px !important;
  color: #102b44 !important;
  background: #fff8ea !important;
  border-radius: 999px !important;
  font-size: 0.6rem !important;
  font-weight: 860 !important;
  line-height: 1 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > strong {
  margin-top: 2px !important;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem) !important;
  line-height: 1.16 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > i {
  width: min(var(--w, 58%), 150px) !important;
  margin: 0 0 2px !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > em {
  color: var(--owned-info-gold) !important;
}

@media (max-width: 760px) {
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack {
    grid-template-columns: 1fr !important;
  }
}

/* Tomannsbolig v268: subdued grid and balanced economy model. */
.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation {
  background:
    linear-gradient(90deg, rgba(232, 246, 242, 0.007) 1px, transparent 1px),
    linear-gradient(0deg, rgba(232, 246, 242, 0.005) 1px, transparent 1px),
    linear-gradient(180deg, #0e3441, #082b37) !important;
  background-size: 88px 88px, 88px 88px, auto !important;
  border-color: rgba(232, 246, 242, 0.14) !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) {
  background: rgba(255, 248, 234, 0.055) !important;
  border-color: rgba(232, 246, 242, 0.15) !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: eierskap og økonomimodell for tomannsbolig"] {
  padding-bottom: clamp(20px, 2.4vw, 26px) !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: eierskap og økonomimodell for tomannsbolig"] .generation-model-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: eierskap og økonomimodell for tomannsbolig"] .generation-model-grid article {
  min-height: 0 !important;
  padding: 18px 20px !important;
}

/* Funkishus v267: repair look-vs-technical infographic list layout and quiet grid. */
.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] {
  background:
    linear-gradient(90deg, rgba(232, 246, 242, 0.014) 1px, transparent 1px),
    linear-gradient(0deg, rgba(232, 246, 242, 0.01) 1px, transparent 1px),
    linear-gradient(180deg, #143653, #0d2e43) !important;
  background-size: 72px 72px, 72px 72px, auto !important;
  border-color: rgba(232, 246, 242, 0.15) !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .blog-infographic__head {
  border-bottom-color: rgba(232, 246, 242, 0.13) !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid article {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  align-content: start !important;
  align-items: start !important;
  column-gap: 12px !important;
  row-gap: 7px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 16px !important;
  background: rgba(255, 248, 234, 0.055) !important;
  border-color: rgba(232, 246, 242, 0.14) !important;
  border-left-color: rgba(241, 181, 76, 0.9) !important;
  overflow: hidden !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid article:nth-child(2) {
  background: rgba(34, 101, 94, 0.42) !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid article > * {
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid .nybygg-icon {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  background: #edf7f4 !important;
  border-color: rgba(237, 247, 244, 0.8) !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid article > span:not(.nybygg-icon) {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  width: auto !important;
  padding: 5px 8px !important;
  color: #123047 !important;
  background: #fff8ea !important;
  border-radius: 999px !important;
  font-size: 0.57rem !important;
  line-height: 1 !important;
  font-weight: 860 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid article > strong {
  grid-column: 2 !important;
  grid-row: 2 !important;
  color: #fff8ea !important;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem) !important;
  line-height: 1.16 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid article > p {
  grid-column: 1 / -1 !important;
  color: rgba(255, 248, 234, 0.78) !important;
  font-size: 0.86rem !important;
  line-height: 1.42 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid article > ul {
  grid-column: 1 / -1 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 7px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 3px !important;
  padding: 10px 0 0 !important;
  color: rgba(255, 248, 234, 0.78) !important;
  border-top: 1px solid rgba(232, 246, 242, 0.14) !important;
  list-style: none !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid article > ul li {
  display: inline-flex !important;
  flex: 0 1 auto !important;
  align-items: center !important;
  width: auto !important;
  max-width: 100% !important;
  gap: 6px !important;
  padding: 6px 8px !important;
  color: rgba(255, 248, 234, 0.82) !important;
  background: rgba(237, 247, 244, 0.09) !important;
  border: 1px solid rgba(232, 246, 242, 0.13) !important;
  border-radius: 999px !important;
  font-size: 0.75rem !important;
  line-height: 1.15 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid article > ul li::before {
  content: "" !important;
  flex: 0 0 auto !important;
  width: 5px !important;
  height: 5px !important;
  margin: 0 !important;
  background: #c7e5e1 !important;
  border-radius: 1px !important;
}

@media (max-width: 720px) {
  .article-bygge-funkishus-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: funkis-look mot teknisk funkisprosjekt"] .generation-model-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .article-bygge-tomannsbolig-hva-koster-det .blog-article__section .blog-infographic--generation[aria-label="Infografikk: eierskap og økonomimodell for tomannsbolig"] .generation-model-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Authored article infographic backgrounds v269: matte architectural paper, no grid overload. */
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation,
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation[aria-label] {
  background:
    radial-gradient(circle at 14px 20px, rgba(255, 248, 234, 0.035) 0 1px, transparent 1.35px),
    radial-gradient(circle at 62px 46px, rgba(6, 22, 33, 0.16) 0 1.2px, transparent 1.55px),
    #16364d !important;
  background-size: 104px 104px, 148px 148px, auto !important;
  background-repeat: repeat !important;
  background-blend-mode: normal !important;
}

/* Generated price-guide v272: matte blue paper surface and stable card lists. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section :is(.blog-infographic--generation, .blog-infographic--generation[aria-label], .blog-infographic--generation:not(.blog-infographic--generation-price), .blog-infographic[class*="blog-infographic--nybygg-"]) {
  background-color: #15364d !important;
  background-image:
    radial-gradient(ellipse at 14% 0%, rgba(255, 248, 234, 0.04), transparent 42%),
    radial-gradient(ellipse at 88% 118%, rgba(6, 18, 28, 0.2), transparent 48%),
    linear-gradient(180deg, rgba(255, 248, 234, 0.018), rgba(6, 18, 28, 0.028)) !important;
  background-size: auto !important;
  background-repeat: no-repeat !important;
  background-blend-mode: normal !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"]::before {
  background:
    radial-gradient(ellipse at 14% 0%, rgba(255, 248, 234, 0.035), transparent 42%),
    radial-gradient(ellipse at 88% 118%, rgba(6, 18, 28, 0.16), transparent 48%) !important;
  background-size: auto !important;
  opacity: 0.42 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article):has(.nybygg-icon) > :is(ul, ol) {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 100% !important;
  justify-self: stretch !important;
  margin-top: 4px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-budget-row, .generation-budget-stack > article, .generation-ladder article, .generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) li {
  width: 100% !important;
  min-width: 0 !important;
  justify-self: stretch !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.article-bygge-hus-pris-2026 .blog-article__section .blog-infographic--generation-models .generation-model-grid article:has(.nybygg-icon) {
  display: block !important;
  min-height: 0 !important;
}

.article-bygge-hus-pris-2026 .blog-article__section .blog-infographic--generation-models .generation-model-grid article:has(.nybygg-icon) .nybygg-icon,
.article-bygge-hus-pris-2026 .blog-article__section .blog-infographic--generation-models .generation-model-grid article:has(.nybygg-icon) > span:not(.nybygg-icon) {
  display: inline-grid !important;
  vertical-align: top !important;
  margin: 0 8px 12px 0 !important;
}

.article-bygge-hus-pris-2026 .blog-article__section .blog-infographic--generation-models .generation-model-grid article:has(.nybygg-icon) > :is(strong, p, ul, ol) {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  grid-column: auto !important;
}

.article-bygge-hus-pris-2026 .blog-article__section .blog-infographic--generation-models .generation-model-grid article:has(.nybygg-icon) > :is(ul, ol) {
  margin-top: 12px !important;
}

.article-bygge-hus-pris-2026 .blog-article__section .blog-infographic--generation-models .generation-model-grid article:has(.nybygg-icon) li {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start !important;
  gap: 8px !important;
}

.article-bygge-hus-pris-2026 .blog-article__section .blog-infographic--generation-models .generation-model-grid article:has(.nybygg-icon) li::before {
  flex: 0 0 5px !important;
}

/* Authored article infographic backgrounds v271: quiet blue paper grain, no visible grid. */
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation,
:is(.article-generasjonsbolig-pris-regler-og-planlegging, .article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation[aria-label] {
  --authored-info-paper-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23fff8ea' fill-opacity='.018'%3E%3Ccircle cx='18' cy='22' r='.7'/%3E%3Ccircle cx='64' cy='13' r='.5'/%3E%3Ccircle cx='128' cy='28' r='.6'/%3E%3Ccircle cx='153' cy='67' r='.45'/%3E%3Ccircle cx='41' cy='78' r='.55'/%3E%3Ccircle cx='92' cy='91' r='.7'/%3E%3Ccircle cx='166' cy='112' r='.55'/%3E%3Ccircle cx='24' cy='136' r='.45'/%3E%3Ccircle cx='71' cy='151' r='.65'/%3E%3Ccircle cx='135' cy='158' r='.5'/%3E%3C/g%3E%3Cg fill='%23061623' fill-opacity='.038'%3E%3Ccircle cx='31' cy='42' r='.6'/%3E%3Ccircle cx='104' cy='36' r='.45'/%3E%3Ccircle cx='144' cy='15' r='.5'/%3E%3Ccircle cx='12' cy='96' r='.5'/%3E%3Ccircle cx='118' cy='118' r='.65'/%3E%3Ccircle cx='57' cy='123' r='.45'/%3E%3Ccircle cx='160' cy='151' r='.55'/%3E%3C/g%3E%3C/svg%3E");
  background-image: var(--authored-info-paper-grain) !important;
  background-repeat: repeat !important;
  background-size: 180px 180px !important;
  background-position: 0 0 !important;
  background-blend-mode: normal !important;
}

.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation,
.article-generasjonsbolig-pris-regler-og-planlegging .blog-article__section .blog-infographic--generation[aria-label] {
  background-color: #16364d !important;
}

:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation,
:is(.article-bygge-funkishus-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation[aria-label] {
  background-color: #15364d !important;
}

/* Generated price-guide v273: final scoped polish for owned article infographics. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section :is(.blog-infographic--generation, .blog-infographic--generation[aria-label], .blog-infographic--generation:not(.blog-infographic--generation-price), .blog-infographic[class*="blog-infographic--nybygg-"]) {
  background-color: #15364d !important;
  background-image:
    radial-gradient(ellipse at 12% -8%, rgba(255, 248, 234, 0.035), transparent 44%),
    radial-gradient(ellipse at 96% 118%, rgba(4, 16, 26, 0.24), transparent 52%),
    linear-gradient(180deg, rgba(255, 248, 234, 0.015), rgba(4, 16, 26, 0.035)) !important;
  background-size: auto !important;
  background-repeat: no-repeat !important;
  background-blend-mode: normal !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic[class*="blog-infographic--nybygg-"]::before {
  background:
    radial-gradient(ellipse at 16% 0%, rgba(255, 248, 234, 0.024), transparent 44%),
    radial-gradient(ellipse at 92% 115%, rgba(4, 16, 26, 0.18), transparent 50%) !important;
  background-size: auto !important;
  background-repeat: no-repeat !important;
  opacity: 0.32 !important;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price {
  max-width: 780px !important;
  padding: clamp(22px, 3.5vw, 34px) !important;
  color: #fff8ea !important;
  background-color: #15364d !important;
  background-image:
    radial-gradient(ellipse at 12% -10%, rgba(255, 248, 234, 0.038), transparent 42%),
    radial-gradient(ellipse at 96% 118%, rgba(4, 16, 26, 0.24), transparent 52%),
    linear-gradient(180deg, rgba(255, 248, 234, 0.012), rgba(4, 16, 26, 0.035)) !important;
  background-repeat: no-repeat !important;
  border-color: rgba(255, 248, 234, 0.16) !important;
  box-shadow: 0 22px 52px rgba(5, 22, 30, 0.18) !important;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__head,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__head {
  max-width: 620px !important;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__head p,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__head p,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid article span,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid article span {
  color: #c7e5e1 !important;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__head h2,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__head h2,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid strong,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid strong,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__trust strong,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__trust strong {
  color: #fff8ea !important;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__head span,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__head span,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid p,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid p,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__trust p,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__trust p {
  color: rgba(255, 248, 234, 0.82) !important;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid article,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid article,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__trust,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__trust {
  min-width: 0 !important;
  background: rgba(255, 248, 234, 0.07) !important;
  border-color: rgba(199, 229, 225, 0.22) !important;
  box-shadow: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid strong,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid strong {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem) !important;
  line-height: 1.05 !important;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid p,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid p {
  font-size: 0.92rem !important;
  line-height: 1.38 !important;
}

.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__trust a,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__trust a {
  color: #082735 !important;
  background: #edf7f4 !important;
  border-color: rgba(237, 247, 244, 0.35) !important;
}

@media (max-width: 900px) {
  .article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid,
  .article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid,
  .article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid {
    grid-template-columns: 1fr !important;
  }
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship h2 {
  max-width: 36ch !important;
  font-size: clamp(1.08rem, 1.42vw, 1.3rem) !important;
  line-height: 1.13 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-cluster-links--nybygg-flagship a strong {
  font-size: 0.76rem !important;
  line-height: 1.18 !important;
}

/* Generated price-guide v274: responsive no-bleed card layout for owned infographics. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section :is(.blog-infographic--generation, .blog-infographic--generation[aria-label]) {
  box-sizing: border-box !important;
  max-width: min(100%, 820px) !important;
  overflow: hidden !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation * {
  box-sizing: border-box !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare, .generation-budget-stack, .generation-ladder) {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article, .generation-ladder article) {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article):has(.nybygg-icon) {
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 10px !important;
  row-gap: 8px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article):has(.nybygg-icon) > .nybygg-icon {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article):has(.nybygg-icon) > span:not(.nybygg-icon) {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  justify-self: start !important;
  max-width: 100% !important;
  margin: 0 !important;
  white-space: normal !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article):has(.nybygg-icon) > :is(strong, p, ul, ol, em, i, div) {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  justify-self: stretch !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article) :is(strong, p, li, em, span, div) {
  max-width: 100% !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: auto !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article) > :is(ul, ol) {
  display: grid !important;
  gap: 7px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  justify-self: stretch !important;
  list-style: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article) li {
  display: flex !important;
  width: 100% !important;
  min-width: 0 !important;
  align-items: flex-start !important;
  gap: 8px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article) li::before {
  flex: 0 0 5px !important;
}

@media (max-width: 760px) {
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section :is(.blog-infographic--generation, .blog-infographic--generation[aria-label]) {
    width: min(100%, calc(100vw - 28px)) !important;
    padding: 16px !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation .blog-infographic__title {
    font-size: clamp(1.24rem, 6vw, 1.7rem) !important;
    line-height: 1.08 !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article) {
    padding: 14px !important;
  }
}

@media (max-width: 420px) {
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section :is(.blog-infographic--generation, .blog-infographic--generation[aria-label]) {
    width: min(100%, calc(100vw - 20px)) !important;
    padding: 14px !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article):has(.nybygg-icon) {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    column-gap: 8px !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article, .generation-budget-stack > article):has(.nybygg-icon) > .nybygg-icon {
    width: 31px !important;
    height: 31px !important;
  }
}

/* Generated price-guide v275: remove artificial left gutters and prevent narrow copy columns. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation {
  background:
    linear-gradient(90deg, rgba(232, 246, 242, 0.006) 1px, transparent 1px),
    linear-gradient(0deg, rgba(232, 246, 242, 0.004) 1px, transparent 1px),
    radial-gradient(ellipse at 18% 0%, rgba(255, 248, 234, 0.025), transparent 42%),
    linear-gradient(180deg, #143653, #0d3047) !important;
  background-size: 112px 112px, 112px 112px, auto, auto !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-budget-stack > article):has(.nybygg-icon) {
  grid-template-columns: min-content min-content minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 10px !important;
  row-gap: 10px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-budget-stack > article):has(.nybygg-icon) > .nybygg-icon {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 34px !important;
  height: 34px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-budget-stack > article):has(.nybygg-icon) > span:not(.nybygg-icon) {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  width: auto !important;
  max-width: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-budget-stack > article):has(.nybygg-icon) > :is(strong, p, ul, ol, em, i, div) {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 9px !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack .nybygg-icon {
  display: none !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > :is(span, strong, p, i, em) {
  grid-column: 1 !important;
  width: 100% !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > span:not(.nybygg-icon) {
  width: fit-content !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > p {
  max-width: 24ch !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-stack-compare article > div {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)) !important;
  gap: 2px !important;
  overflow: visible !important;
  min-height: 0 !important;
  border-radius: 10px !important;
  background: rgba(255, 248, 234, 0.08) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .generation-stack-compare article > div span {
  min-width: 0 !important;
  width: auto !important;
  flex: initial !important;
  padding: 8px 7px !important;
  border-right: 0 !important;
  border-radius: 8px !important;
  font-size: 0.58rem !important;
  line-height: 1.1 !important;
  white-space: normal !important;
  overflow: hidden !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid,
.article-bygge-tomannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
  gap: 12px !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid article,
.article-bygge-tomannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid article,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid article,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid article {
  min-width: 0 !important;
  overflow: hidden !important;
}

.article-bygge-tomannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid p,
.article-bygge-tomannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid p,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--multi-home-price .blog-answer-panel__grid p,
.article-flermannsbolig-hva-koster-det .blog-answer-panel--bath-price .blog-answer-panel__grid p {
  max-width: 28ch !important;
  overflow-wrap: break-word !important;
}

.article-loft-til-rom-hva-ma-avklares-for-du-bygger .loft-roof-stack,
.article-vaskerom-og-teknisk-rom-sma-rom-med-store-krav .blog-info-laundry-blueprint,
.article-vaskerom-og-teknisk-rom-sma-rom-med-store-krav .blog-info-laundry-water-map,
.article-badstue-spa-og-velvarerom-hjemme .wellness-compass,
.article-prosjektledelse-i-renovering-en-kontaktperson-er-ikke-nok .reno-compass,
.article-prosjektledelse-i-renovering-en-kontaktperson-er-ikke-nok .reno-budget,
.article-handverkertilbud-slik-sammenligner-du-pris-og-innhold .offer-payment-line {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
}

.article-vaskerom-og-teknisk-rom-sma-rom-med-store-krav .blog-info-laundry-blueprint article,
.article-vaskerom-og-teknisk-rom-sma-rom-med-store-krav .blog-info-laundry-water-map article,
.article-badstue-spa-og-velvarerom-hjemme .wellness-compass article,
.article-prosjektledelse-i-renovering-en-kontaktperson-er-ikke-nok .reno-compass article,
.article-handverkertilbud-slik-sammenligner-du-pris-og-innhold .offer-payment-line article,
.article-loft-til-rom-hva-ma-avklares-for-du-bygger .loft-roof-stack article {
  min-width: 0 !important;
  min-height: 0 !important;
}

.article-vaskerom-og-teknisk-rom-sma-rom-med-store-krav .blog-info-laundry-blueprint p,
.article-vaskerom-og-teknisk-rom-sma-rom-med-store-krav .blog-info-laundry-water-map p,
.article-badstue-spa-og-velvarerom-hjemme .wellness-compass p,
.article-prosjektledelse-i-renovering-en-kontaktperson-er-ikke-nok .reno-compass p,
.article-handverkertilbud-slik-sammenligner-du-pris-og-innhold .offer-payment-line p,
.article-loft-til-rom-hva-ma-avklares-for-du-bygger .loft-roof-stack p {
  max-width: 28ch !important;
  overflow-wrap: break-word !important;
}

@media (max-width: 760px) {
  .article-drenering-og-fukt-i-eldre-bolig .drainage-section-diagram {
    overflow: hidden !important;
  }

  .article-drenering-og-fukt-i-eldre-bolig .drainage-section-diagram svg {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
  }

  .article-drenering-og-fukt-i-eldre-bolig .drainage-section-callouts text {
    font-size: 19px !important;
    stroke-width: 5px !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-budget-stack > article):has(.nybygg-icon) {
    grid-template-columns: min-content min-content minmax(0, 1fr) !important;
  }
}

/* Generated price-guide v276: premium price cards without inherited narrow columns. */
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price {
  background:
    linear-gradient(90deg, rgba(232, 246, 242, 0.012) 1px, transparent 1px),
    linear-gradient(0deg, rgba(232, 246, 242, 0.008) 1px, transparent 1px),
    radial-gradient(ellipse at 18% 0%, rgba(255, 248, 234, 0.04), transparent 44%),
    linear-gradient(180deg, #143653 0%, #10334d 54%, #0d3047 100%) !important;
  background-size: 128px 128px, 128px 128px, auto, auto !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: stretch !important;
  width: 100% !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article,
.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article:not(.generation-budget-row):has(.nybygg-icon) {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: 100% !important;
  min-height: 320px !important;
  padding: 22px 18px 20px !important;
  overflow: hidden !important;
  color: #fff8ea !important;
  background:
    linear-gradient(145deg, rgba(255, 248, 234, 0.075), rgba(255, 248, 234, 0.035) 48%, rgba(9, 39, 58, 0.12)),
    rgba(255, 248, 234, 0.025) !important;
  border: 1px solid rgba(199, 229, 225, 0.22) !important;
  border-left: 3px solid #d99f3f !important;
  border-radius: 7px !important;
  box-shadow: inset 0 1px 0 rgba(255, 248, 234, 0.08) !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article::before {
  content: "" !important;
  position: absolute !important;
  top: 14px !important;
  right: 16px !important;
  width: 58px !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(217, 159, 63, 0), rgba(217, 159, 63, 0.85)) !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 16px 16px auto !important;
  width: 34px !important;
  height: 34px !important;
  border-right: 1px solid rgba(199, 229, 225, 0.18) !important;
  border-bottom: 1px solid rgba(199, 229, 225, 0.18) !important;
  opacity: 0.75 !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack .nybygg-icon {
  display: none !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > span:not(.nybygg-icon) {
  display: inline-grid !important;
  place-items: center !important;
  width: 36px !important;
  height: 26px !important;
  min-height: 0 !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  color: #0b3048 !important;
  background: #fff8ea !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-size: 0.68rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > strong {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff8ea !important;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > strong::after {
  content: "" !important;
  display: block !important;
  width: min(var(--w), 100%) !important;
  height: 5px !important;
  margin: 16px 0 0 !important;
  background: linear-gradient(90deg, #fff8ea, #d99f3f) !important;
  border-radius: 999px !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > p {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 16px 0 0 !important;
  padding: 0 !important;
  color: rgba(255, 248, 234, 0.84) !important;
  font-size: 0.95rem !important;
  line-height: 1.42 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

.article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > em {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: auto 0 0 !important;
  padding: 16px 0 0 !important;
  color: #d99f3f !important;
  border-top: 1px solid rgba(199, 229, 225, 0.18) !important;
  font-size: 0.78rem !important;
  line-height: 1.14 !important;
  font-style: normal !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  text-align: left !important;
  text-transform: uppercase !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

@media (max-width: 820px) {
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack {
    grid-template-columns: 1fr !important;
  }

  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article,
  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article:not(.generation-budget-row):has(.nybygg-icon) {
    min-height: 0 !important;
    padding: 18px !important;
  }

  .article-nybygg-enebolig-fra-tomt-til-ferdigattest .blog-article__section .blog-infographic--generation-price .generation-budget-stack > article > strong {
    font-size: clamp(1.06rem, 5vw, 1.26rem) !important;
  }
}

/* Generated price-guide v277: restore full-width composition in non-price infographics. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  align-content: start !important;
  align-items: start !important;
  column-gap: 12px !important;
  row-gap: 10px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 22px !important;
  overflow: hidden !important;
  background:
    linear-gradient(145deg, rgba(255, 248, 234, 0.082), rgba(255, 248, 234, 0.034) 52%, rgba(9, 39, 58, 0.10)),
    rgba(255, 248, 234, 0.026) !important;
  border: 1px solid rgba(199, 229, 225, 0.22) !important;
  border-left: 3px solid #d99f3f !important;
  border-radius: 7px !important;
  box-shadow: inset 0 1px 0 rgba(255, 248, 234, 0.08) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article):nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(199, 229, 225, 0.09), rgba(255, 248, 234, 0.036) 54%, rgba(9, 39, 58, 0.10)),
    rgba(255, 248, 234, 0.026) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article)::before {
  content: "" !important;
  position: absolute !important;
  top: 16px !important;
  right: 18px !important;
  width: 54px !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(217, 159, 63, 0), rgba(217, 159, 63, 0.82)) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > .nybygg-icon {
  grid-column: 1 !important;
  grid-row: 1 !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  color: #082735 !important;
  background: #edf7f4 !important;
  border: 1px solid rgba(237, 247, 244, 0.58) !important;
  border-radius: 6px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > .nybygg-icon svg {
  width: 20px !important;
  height: 20px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > span:not(.nybygg-icon) {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  justify-self: start !important;
  display: inline-grid !important;
  place-items: center !important;
  width: auto !important;
  max-width: 100% !important;
  min-height: 25px !important;
  margin: 0 !important;
  padding: 6px 10px !important;
  color: #082735 !important;
  background: #fff8ea !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-size: 0.62rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > :is(strong, p, ul, ol, em, i, div) {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  justify-self: stretch !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > strong {
  margin-top: 10px !important;
  color: #fff8ea !important;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem) !important;
  line-height: 1.1 !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > strong::after {
  content: "" !important;
  display: block !important;
  width: 44px !important;
  height: 3px !important;
  margin-top: 12px !important;
  background: linear-gradient(90deg, #fff8ea, #d99f3f) !important;
  border-radius: 999px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > p,
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) li {
  color: rgba(255, 248, 234, 0.82) !important;
  font-size: 0.95rem !important;
  line-height: 1.42 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > :is(ul, ol) {
  display: grid !important;
  gap: 7px !important;
  margin-top: 2px !important;
  padding: 12px 0 0 !important;
  border-top: 1px solid rgba(199, 229, 225, 0.18) !important;
  list-style: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  width: 100% !important;
  margin: 0 !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) li::before {
  content: "" !important;
  flex: 0 0 5px !important;
  width: 5px !important;
  height: 5px !important;
  margin-top: 0.58em !important;
  background: #c7e5e1 !important;
  border-radius: 50% !important;
}

@media (max-width: 860px) {
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 420px) {
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) {
    padding: 18px !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid article, .generation-tech-matrix article, .generation-offer-matrix article, .generation-family-timeline article, .generation-score-list article, .generation-stack-compare article) > span:not(.nybygg-icon) {
    max-width: 100% !important;
    font-size: 0.58rem !important;
  }
}

/* Generated price-guide v278: final precedence guard against old icon-column rules. */
body:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > :is(strong, p, ul, ol, em, i, div) {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  justify-self: stretch !important;
}

body:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > strong {
  margin-top: 12px !important;
  font-size: clamp(1.1rem, 1.5vw, 1.32rem) !important;
  line-height: 1.1 !important;
}

body:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > p {
  margin-top: 0 !important;
}

body:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > :is(ul, ol) {
  margin-top: 2px !important;
}

/* Generated price-guide v279: remove the inherited narrow card grid completely. */
:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > .nybygg-icon {
  position: absolute !important;
  top: 22px !important;
  left: 22px !important;
  flex: 0 0 auto !important;
  display: inline-grid !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > span:not(.nybygg-icon) {
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  margin: 0 0 20px 52px !important;
  max-width: calc(100% - 52px) !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > :is(strong, p, ul, ol, em, i, div) {
  flex: 0 0 auto !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  transform: none !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > strong {
  margin-top: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > p {
  margin-top: 12px !important;
}

:is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > :is(ul, ol) {
  display: grid !important;
  width: 100% !important;
}

@media (max-width: 420px) {
  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > .nybygg-icon {
    top: 18px !important;
    left: 18px !important;
  }

  :is(.article-nybygg-enebolig-fra-tomt-til-ferdigattest, .article-bygge-hus-pris-2026, .article-bygge-moderne-hus-hva-koster-det, .article-elementhus-hva-koster-det, .article-bygge-funkishus-hva-koster-det, .article-bygge-tomannsbolig-hva-koster-det, .article-flermannsbolig-hva-koster-det, .article-bygge-pa-huset-hva-koster-det) .blog-article__section .blog-infographic--generation:not(.blog-infographic--generation-price) :is(.generation-model-grid, .generation-tech-matrix, .generation-offer-matrix, .generation-family-timeline, .generation-score-list, .generation-stack-compare) > article > span:not(.nybygg-icon) {
    margin-left: 48px !important;
    max-width: calc(100% - 48px) !important;
  }
}

/* Heritage renovation article v280. */
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage {
  --heritage-ink: #fff8ec;
  --heritage-muted: rgba(255, 248, 236, 0.76);
  --heritage-line: rgba(220, 238, 234, 0.18);
  --heritage-panel: rgba(255, 248, 236, 0.07);
  --heritage-panel-strong: rgba(255, 248, 236, 0.11);
  --heritage-blue: #143c50;
  --heritage-blue-deep: #0a2c3d;
  --heritage-gold: #d99f3f;
  --heritage-paper: #f6ecd9;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: clamp(32px, 5vw, 56px) 0;
  padding: clamp(24px, 4vw, 44px);
  color: var(--heritage-ink);
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 248, 236, 0.07), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(217, 159, 63, 0.10), transparent 30%),
    linear-gradient(135deg, var(--heritage-blue), var(--heritage-blue-deep));
  border: 1px solid rgba(220, 238, 234, 0.22);
  border-radius: 7px;
  box-shadow: 0 28px 70px rgba(6, 29, 40, 0.18);
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage::before,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 248, 236, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 236, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 8% 92%, rgba(255, 248, 236, 0.08), transparent 26%);
  background-size: 96px 96px, 96px 96px, auto;
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage *,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__head {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  column-gap: clamp(24px, 5vw, 70px);
  row-gap: 12px;
  align-items: start;
  max-width: 100%;
  margin: 0 0 clamp(22px, 3vw, 34px);
  padding-bottom: clamp(18px, 2.4vw, 26px);
  border-bottom: 1px solid var(--heritage-line);
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__label,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage > div p,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage a span {
  color: #cdece7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__label::after,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage > div p::after {
  width: 52px;
  background: linear-gradient(90deg, #cdece7, var(--heritage-gold));
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__label {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__title,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage h2 {
  grid-column: 2;
  grid-row: 1;
  max-width: 820px;
  color: var(--heritage-ink);
  font-size: clamp(1.8rem, 3.1vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__note,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage p,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage a {
  color: var(--heritage-muted);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.48;
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__note {
  grid-column: 2;
  grid-row: 2;
  max-width: 760px;
}

.heritage-price-spectrum,
.heritage-status-map,
.heritage-check-grid,
.heritage-risk-layers,
.heritage-offer-map,
.heritage-stop-gates,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage nav {
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
}

.heritage-check-grid,
.heritage-stop-gates,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.heritage-price-spectrum,
.heritage-status-map,
.heritage-offer-map,
.heritage-risk-layers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.heritage-price-spectrum article:nth-child(3),
.heritage-status-map article:nth-child(3),
.heritage-offer-map article:nth-child(3) {
  grid-column: 1 / -1;
}

.heritage-price-spectrum article,
.heritage-status-map article,
.heritage-check-grid article,
.heritage-risk-layers article,
.heritage-offer-map article,
.heritage-stop-gates article,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage a {
  position: relative;
  min-width: 0;
  padding: clamp(18px, 2.3vw, 26px);
  background:
    linear-gradient(145deg, var(--heritage-panel-strong), var(--heritage-panel)),
    linear-gradient(180deg, rgba(255, 248, 236, 0.05), transparent);
  border: 1px solid rgba(220, 238, 234, 0.20);
  border-left: 3px solid var(--heritage-gold);
  border-radius: 6px;
}

.heritage-price-spectrum article::after,
.heritage-check-grid article::after,
.heritage-offer-map article::after,
.heritage-stop-gates article::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--heritage-paper), var(--heritage-gold));
  border-radius: 999px;
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .nybygg-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin: 0 10px 16px 0;
  color: #0b3140;
  background: var(--heritage-paper);
  border: 1px solid rgba(255, 248, 236, 0.58);
  border-radius: 5px;
  vertical-align: middle;
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .nybygg-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.heritage-price-spectrum article > span,
.heritage-check-grid article > span,
.heritage-stop-gates article > span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  color: #0b3140;
  background: var(--heritage-paper);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.heritage-status-map article > span,
.heritage-risk-layers article > span,
.heritage-offer-map article > span,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage a span {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 7px 11px;
  color: #0b3140;
  background: var(--heritage-paper);
  border-radius: 999px;
  line-height: 1;
}

.heritage-price-spectrum strong,
.heritage-status-map strong,
.heritage-check-grid strong,
.heritage-risk-layers strong,
.heritage-offer-map strong,
.heritage-stop-gates strong,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage strong {
  display: block;
  max-width: 100%;
  margin: 0 0 10px;
  color: var(--heritage-ink);
  font-size: clamp(1.06rem, 1.55vw, 1.34rem);
  font-weight: 820;
  line-height: 1.13;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.heritage-price-spectrum em {
  display: block;
  margin: 0 0 12px;
  color: var(--heritage-gold);
  font-style: normal;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  font-weight: 850;
  line-height: 1.05;
}

.heritage-driver-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(16px, 2vw, 22px);
  padding: 14px;
  background: rgba(255, 248, 236, 0.06);
  border: 1px solid rgba(220, 238, 234, 0.18);
  border-radius: 6px;
}

.heritage-driver-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  color: #0b3140;
  background: var(--heritage-paper);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.heritage-risk-layers article:nth-child(2),
.heritage-risk-layers article:nth-child(4),
.heritage-check-grid article:nth-child(2n),
.heritage-stop-gates article:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(205, 236, 231, 0.10), rgba(255, 248, 236, 0.055)),
    linear-gradient(180deg, rgba(255, 248, 236, 0.04), transparent);
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.8fr);
  align-items: start;
  gap: clamp(20px, 3vw, 36px);
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage > div {
  position: sticky;
  top: 96px;
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage a {
  display: block;
  text-decoration: none;
}

.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage a:hover,
.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217, 159, 63, 0.52);
}

@media (max-width: 980px) {
  .heritage-price-spectrum,
  .heritage-status-map,
  .heritage-risk-layers,
  .heritage-offer-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage {
    grid-template-columns: 1fr;
  }

  .article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage > div {
    position: static;
  }
}

@media (max-width: 640px) {
  .article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage,
  .article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage {
    padding: 22px;
  }

  .article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__head {
    grid-template-columns: 1fr;
  }

  .article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__label,
  .article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__title,
  .article-pusse-opp-verneverdig-hus-hva-koster-det .blog-article__section .blog-infographic--heritage .blog-infographic__note {
    grid-column: 1;
    grid-row: auto;
  }

  .heritage-price-spectrum,
  .heritage-status-map,
  .heritage-check-grid,
  .heritage-risk-layers,
  .heritage-offer-map,
  .heritage-stop-gates,
  .article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage nav {
    grid-template-columns: 1fr;
  }

  .heritage-price-spectrum article,
  .heritage-status-map article,
  .heritage-check-grid article,
  .heritage-risk-layers article,
  .heritage-offer-map article,
  .heritage-stop-gates article,
  .article-pusse-opp-verneverdig-hus-hva-koster-det .blog-cluster-links--heritage a {
    padding: 18px;
  }
}

/* Hytte price guide v280: scoped premium document infographics. */
body.article-bygge-hytte-hva-koster-det .blog-infographic--hytte {
  --hytte-blue: #12364a;
  --hytte-blue-deep: #0b2938;
  --hytte-teal: #184f50;
  --hytte-paper: #fbf6ea;
  --hytte-paper-soft: #f2eadb;
  --hytte-line: rgba(251, 246, 234, 0.18);
  --hytte-ink: #082735;
  --hytte-muted: rgba(251, 246, 234, 0.76);
  position: relative;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  max-width: 980px;
  margin: 34px 0 10px;
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  color: var(--hytte-paper);
  background-color: var(--hytte-blue);
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 .032'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' fill='%23fbf6ea'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  border: 1px solid rgba(251, 246, 234, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 48px rgba(8, 39, 53, 0.18);
}

body.article-bygge-hytte-hva-koster-det .blog-infographic--hytte *,
body.article-bygge-hytte-hva-koster-det .blog-infographic--hytte *::before,
body.article-bygge-hytte-hva-koster-det .blog-infographic--hytte *::after {
  box-sizing: border-box;
  min-width: 0;
}

body.article-bygge-hytte-hva-koster-det .hytte-infographic__head {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

body.article-bygge-hytte-hva-koster-det .hytte-infographic__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #c7e5e1;
  font-family: var(--caption);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

body.article-bygge-hytte-hva-koster-det .hytte-infographic__label::after {
  content: "";
  display: block;
  width: 76px;
  height: 1px;
  background: rgba(199, 229, 225, 0.72);
}

body.article-bygge-hytte-hva-koster-det .hytte-infographic__head h3 {
  max-width: 780px;
  margin: 0;
  color: var(--hytte-paper);
  font-family: var(--sans);
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.06;
}

body.article-bygge-hytte-hva-koster-det .hytte-infographic__head p:not(.hytte-infographic__label) {
  max-width: 620px;
  margin: 0;
  color: var(--hytte-muted);
  font-size: 1rem;
  line-height: 1.55;
}

body.article-bygge-hytte-hva-koster-det .hytte-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--hytte-ink);
  background: var(--hytte-paper);
  border: 1px solid rgba(251, 246, 234, 0.62);
  border-radius: 6px;
}

body.article-bygge-hytte-hva-koster-det .hytte-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid article,
body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 184px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(251, 246, 234, 0.18);
  border-radius: 7px;
}

body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid article:nth-child(2n),
body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid article:nth-child(2) {
  background: rgba(24, 79, 80, 0.78);
}

body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid strong,
body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid h4 {
  margin: 0;
  color: var(--hytte-paper);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.14;
}

body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid p,
body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid dd,
body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps p,
body.article-bygge-hytte-hva-koster-det .season-logistics-timeline p,
body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid p {
  margin: 0;
  color: var(--hytte-muted);
  font-size: 0.9rem;
  line-height: 1.42;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid dl div {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(251, 246, 234, 0.15);
}

body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid dt {
  color: #c7e5e1;
  font-family: var(--caption);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  color: var(--hytte-ink);
  background: var(--hytte-paper);
  background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 .035'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23p)' fill='%23082735'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  border: 1px solid rgba(251, 246, 234, 0.52);
  border-radius: 7px;
}

body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet section {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(8, 39, 53, 0.12);
  border-radius: 6px;
}

body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet section:nth-child(2) {
  border-left: 4px solid #184f50;
}

body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet h4,
body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid strong {
  margin: 0;
  color: var(--hytte-ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 780;
}

body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: rgba(8, 39, 53, 0.76);
  font-size: 0.94rem;
  line-height: 1.35;
}

body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #184f50;
  border-radius: 50%;
}

body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper {
  display: grid;
  grid-template-columns: minmax(210px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(16px, 2.6vw, 28px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  color: var(--hytte-ink);
  background: var(--hytte-paper);
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='q'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 .028'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23q)' fill='%23082735'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  border: 1px solid rgba(251, 246, 234, 0.52);
  border-radius: 7px;
}

body.article-bygge-hytte-hva-koster-det .plot-risk-map__cabin {
  display: grid;
  place-items: center;
  min-height: 230px;
  background: #e7efe8;
  border: 1px solid rgba(8, 39, 53, 0.14);
  border-radius: 6px;
}

body.article-bygge-hytte-hva-koster-det .plot-risk-map__cabin svg {
  width: min(76%, 260px);
  height: auto;
  fill: none;
  stroke: #12364a;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper li {
  display: grid;
  gap: 5px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(8, 39, 53, 0.12);
  border-radius: 6px;
}

body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper strong {
  color: var(--hytte-ink);
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper span {
  color: rgba(8, 39, 53, 0.72);
  font-size: 0.9rem;
  line-height: 1.34;
}

body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps,
body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps li,
body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol li {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(251, 246, 234, 0.18);
  border-radius: 7px;
}

body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps span,
body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--hytte-ink);
  background: #c7e5e1;
  border-radius: 999px;
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 850;
}

body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps strong,
body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol strong {
  color: var(--hytte-paper);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.18;
}

body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  color: var(--hytte-ink);
  background: rgba(8, 39, 53, 0.22);
  border: 1px solid rgba(251, 246, 234, 0.34);
  border-radius: 7px;
}

body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  background: var(--hytte-paper);
}

body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid p {
  color: rgba(8, 39, 53, 0.72);
}

@media (max-width: 980px) {
  body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid,
  body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps,
  body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.article-bygge-hytte-hva-koster-det .blog-infographic--hytte {
    margin-right: calc(-1 * var(--page-pad));
    margin-left: calc(-1 * var(--page-pad));
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid,
  body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet,
  body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper {
    grid-template-columns: 1fr;
  }

  body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid,
  body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps,
  body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol,
  body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid {
    grid-template-columns: 1fr;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid article,
  body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid article,
  body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps li,
  body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol li,
  body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid article {
    min-height: 0;
  }
}

/* Hytte guide v281: compact document links and photo/text article plates. */
body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship {
  --hytte-doc-paper: #f7f1e7;
  --hytte-doc-card: #fffdf8;
  --hytte-doc-ink: #0b3140;
  --hytte-doc-muted: rgba(11, 49, 64, 0.72);
  --hytte-doc-line: rgba(11, 49, 64, 0.16);
  --hytte-doc-rule: #1b5061;
  display: block !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 26px 0 30px !important;
  padding: clamp(16px, 2.2vw, 22px) !important;
  color: var(--hytte-doc-ink) !important;
  background-color: var(--hytte-doc-paper) !important;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 .045'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='150' height='150' filter='url(%23p)' fill='%230b3140'/%3E%3C/svg%3E") !important;
  background-size: 150px 150px !important;
  border: 1px solid rgba(11, 49, 64, 0.18) !important;
  border-radius: 2px !important;
  box-shadow: 0 16px 38px rgba(33, 25, 15, 0.08) !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship * {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship > div {
  display: grid !important;
  grid-template-columns: 128px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: start !important;
  margin: 0 0 12px !important;
  padding: 0 0 12px !important;
  border-bottom: 1px solid var(--hytte-doc-line) !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship > div p {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 4px 0 0 !important;
  color: var(--hytte-doc-rule) !important;
  font-size: 0.56rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship > div p::after {
  flex: 1 1 34px !important;
  width: auto !important;
  min-width: 34px !important;
  max-width: 74px !important;
  height: 1px !important;
  background: var(--hytte-doc-rule) !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship h2 {
  max-width: 42ch !important;
  margin: 0 !important;
  color: var(--hytte-doc-ink) !important;
  font-size: clamp(1.1rem, 1.65vw, 1.42rem) !important;
  font-weight: 520 !important;
  line-height: 1.12 !important;
  text-wrap: balance;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship nav {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  max-width: none !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a,
body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a:nth-child(2n) {
  display: grid !important;
  grid-template-columns: 30px minmax(0, 1fr) !important;
  align-content: start !important;
  column-gap: 9px !important;
  row-gap: 4px !important;
  min-height: 96px !important;
  padding: 10px !important;
  color: var(--hytte-doc-muted) !important;
  background: var(--hytte-doc-card) !important;
  border: 1px solid var(--hytte-doc-line) !important;
  border-radius: 2px !important;
  box-shadow: none !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a::before {
  grid-row: 1 / span 2 !important;
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
  background-color: #eef5f2 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 24 24' fill='none' stroke='%230b3140' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v5h4'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M9 17h6'/%3E%3C/svg%3E") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 19px 19px !important;
  border: 1px solid rgba(11, 49, 64, 0.08) !important;
  border-radius: 2px !important;
  content: "" !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 24 24' fill='none' stroke='%230b3140' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2'/%3E%3Cpath d='M8 7h8M8 11h2M12 11h1M15 11h1M8 15h2M12 15h1M15 15h1'/%3E%3C/svg%3E") !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 24 24' fill='none' stroke='%230b3140' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 8 4-8 4-8-4 8-4Z'/%3E%3Cpath d='M4 7v10l8 4 8-4V7'/%3E%3Cpath d='M12 11v10'/%3E%3C/svg%3E") !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 24 24' fill='none' stroke='%230b3140' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11.5 12 5l8 6.5'/%3E%3Cpath d='M6.5 10.5V20h11v-9.5'/%3E%3Cpath d='M9 20v-5h6v5'/%3E%3C/svg%3E") !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a:nth-child(5)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 24 24' fill='none' stroke='%230b3140' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11l2 2 4-5'/%3E%3Cpath d='M20 12v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9'/%3E%3Cpath d='M13 3h7v7'/%3E%3C/svg%3E") !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a:nth-child(6)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 24 24' fill='none' stroke='%230b3140' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 4 7v6c0 5 3.4 7.4 8 8 4.6-.6 8-3 8-8V7z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E") !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a span {
  margin: 0 !important;
  color: var(--hytte-doc-rule) !important;
  font-size: 0.5rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.1 !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a strong {
  margin: 0 !important;
  color: var(--hytte-doc-ink) !important;
  font-size: clamp(0.72rem, 0.95vw, 0.82rem) !important;
  font-weight: 690 !important;
  line-height: 1.18 !important;
}

body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a:hover,
body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a:focus-visible {
  background: #ffffff !important;
  border-color: rgba(11, 49, 64, 0.34) !important;
  box-shadow: 0 10px 24px rgba(33, 25, 15, 0.09) !important;
  transform: translateY(-2px) !important;
}

body.article-bygge-hytte-hva-koster-det .blog-article-photo--hytte {
  --photo-blue: #173452;
  --photo-blue-dark: #102840;
  --photo-brass: #c7e5e1;
  --photo-sage: #c7e5e1;
  max-width: 920px;
  border-color: rgba(16, 40, 64, 0.88);
  box-shadow: 0 18px 42px rgba(13, 35, 49, 0.12);
}

body.article-bygge-hytte-hva-koster-det .blog-article-photo--hytte .blog-article-photo__image {
  min-height: clamp(330px, 38vw, 470px);
}

body.article-bygge-hytte-hva-koster-det .blog-article-photo--hytte .blog-article-photo__image::after {
  content: none;
}

body.article-bygge-hytte-hva-koster-det .blog-article-photo--hytte .blog-article-photo__copy {
  background: #173452;
}

body.article-bygge-hytte-hva-koster-det .blog-article-photo--hytte .blog-article-photo__copy h3 {
  max-width: 14.5ch;
  font-size: clamp(2rem, 3vw, 2.85rem);
}

body.article-bygge-hytte-hva-koster-det .blog-article-photo--hytte .blog-article-photo__copy p {
  max-width: 35ch;
  font-weight: 520;
}

body.article-bygge-hytte-hva-koster-det .blog-article-photo--hytte .blog-article-photo__copy span,
body.article-bygge-hytte-hva-koster-det .blog-article-photo--hytte .blog-article-photo__copy small {
  color: #f7efe0;
}

body.article-bygge-hytte-hva-koster-det .blog-article-photo--hytte .blog-article-photo__copy span::after,
body.article-bygge-hytte-hva-koster-det .blog-article-photo--hytte .blog-article-photo__copy small::before {
  height: 1px;
  background: #c7e5e1;
}

@media (max-width: 860px) {
  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship {
    max-width: none !important;
  }

  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship > div {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

@media (max-width: 560px) {
  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship nav {
    grid-template-columns: 1fr !important;
  }

  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a {
    min-height: 0 !important;
  }
}

/* Hytte guide v282: mobile infographic quality pass. */
@media (max-width: 640px) {
  body.article-bygge-hytte-hva-koster-det .blog-infographic--hytte {
    gap: 16px !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 24px 0 8px !important;
    padding: 18px 14px 20px !important;
    border: 1px solid rgba(251, 246, 234, 0.16) !important;
    border-radius: 6px !important;
    box-shadow: 0 16px 30px rgba(8, 39, 53, 0.16) !important;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-infographic__head {
    gap: 7px !important;
    max-width: none !important;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-infographic__label {
    width: 100%;
    gap: 9px;
    font-size: 0.58rem;
    letter-spacing: 0.11em;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-infographic__label::after {
    flex: 1 1 44px;
    width: auto;
    min-width: 38px;
    max-width: 112px;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-infographic__head h3 {
    max-width: 16ch;
    font-size: clamp(1.35rem, 7vw, 1.78rem);
    line-height: 1.02;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-infographic__head p:not(.hytte-infographic__label) {
    max-width: 34ch;
    font-size: 0.9rem;
    line-height: 1.44;
  }

  body.article-bygge-hytte-hva-koster-det :is(.hytte-budget-stack__grid, .cabin-delivery-matrix__grid, .water-sewer-flow__steps, .season-logistics-timeline > ol, .hytte-offer-document__grid) {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid article,
  body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid article,
  body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps li,
  body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol li,
  body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid article {
    gap: 10px !important;
    min-height: 0 !important;
    padding: 16px !important;
    border-radius: 6px !important;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-icon {
    width: 40px;
    height: 40px;
    border-radius: 5px;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-icon svg {
    width: 21px;
    height: 21px;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid strong,
  body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid h4,
  body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps strong,
  body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol strong,
  body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid strong {
    font-size: 1rem !important;
    line-height: 1.16 !important;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid p,
  body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid dd,
  body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps p,
  body.article-bygge-hytte-hva-koster-det .season-logistics-timeline p,
  body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid p {
    font-size: 0.9rem !important;
    line-height: 1.38 !important;
  }

  body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid dl {
    gap: 8px !important;
  }

  body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid dl div {
    gap: 2px !important;
    padding-top: 8px !important;
  }

  body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid dt {
    font-size: 0.58rem !important;
  }

  body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet,
  body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 10px !important;
    border-radius: 6px !important;
  }

  body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet section {
    gap: 10px !important;
    padding: 14px !important;
  }

  body.article-bygge-hytte-hva-koster-det .ferdighytte-exclusions__sheet li {
    font-size: 0.9rem !important;
    line-height: 1.32 !important;
  }

  body.article-bygge-hytte-hva-koster-det .plot-risk-map__cabin {
    min-height: 145px !important;
  }

  body.article-bygge-hytte-hva-koster-det .plot-risk-map__cabin svg {
    width: min(70%, 190px) !important;
    stroke-width: 6 !important;
  }

  body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper ul {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper li {
    gap: 4px !important;
    padding: 11px 12px !important;
  }

  body.article-bygge-hytte-hva-koster-det .plot-risk-map__paper span {
    font-size: 0.88rem !important;
    line-height: 1.3 !important;
  }

  body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps span,
  body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol span {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.66rem !important;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid {
    gap: 0 !important;
    border-radius: 6px !important;
  }

  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship {
    max-width: 100% !important;
    margin: 20px 0 24px !important;
    padding: 13px !important;
    border-radius: 2px !important;
  }

  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship h2 {
    font-size: 1.08rem !important;
    line-height: 1.12 !important;
  }

  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship > div {
    gap: 6px !important;
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
  }

  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a,
  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a:nth-child(2n) {
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 3px 8px !important;
    padding: 9px !important;
  }

  body.article-bygge-hytte-hva-koster-det .blog-cluster-links--nybygg-flagship a::before {
    width: 28px !important;
    height: 28px !important;
    background-size: 17px 17px !important;
  }
}

@media (max-width: 380px) {
  body.article-bygge-hytte-hva-koster-det .blog-infographic--hytte {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-infographic__head h3 {
    font-size: 1.28rem !important;
  }

  body.article-bygge-hytte-hva-koster-det .hytte-budget-stack__grid article,
  body.article-bygge-hytte-hva-koster-det .cabin-delivery-matrix__grid article,
  body.article-bygge-hytte-hva-koster-det .water-sewer-flow__steps li,
  body.article-bygge-hytte-hva-koster-det .season-logistics-timeline > ol li,
  body.article-bygge-hytte-hva-koster-det .hytte-offer-document__grid article {
    padding: 14px !important;
  }
}

/* Verneverdig guide v283: align infographic quality with hytte article, scoped only here. */
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage {
  --heritage-blue: #12364a;
  --heritage-teal: #184f50;
  --heritage-paper: #fbf6ea;
  --heritage-line: rgba(251, 246, 234, 0.18);
  --heritage-ink: #082735;
  --heritage-muted: rgba(251, 246, 234, 0.76);
  position: relative !important;
  display: grid !important;
  gap: clamp(22px, 3vw, 34px) !important;
  max-width: 980px !important;
  margin: 34px 0 10px !important;
  padding: clamp(24px, 4vw, 44px) !important;
  overflow: hidden !important;
  color: var(--heritage-paper) !important;
  background-color: var(--heritage-blue) !important;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 .032'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' fill='%23fbf6ea'/%3E%3C/svg%3E") !important;
  background-size: 180px 180px !important;
  border: 1px solid rgba(251, 246, 234, 0.16) !important;
  border-radius: 8px !important;
  box-shadow: 0 24px 48px rgba(8, 39, 53, 0.18) !important;
  isolation: isolate !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage::before {
  content: none !important;
  display: none !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage *,
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage *::before,
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
  letter-spacing: 0 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__head {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  max-width: 760px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__label {
  grid-column: auto !important;
  grid-row: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #c7e5e1 !important;
  background: transparent !important;
  border-radius: 0 !important;
  font-family: var(--caption) !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__label::after {
  content: "" !important;
  display: block !important;
  width: 76px !important;
  height: 1px !important;
  background: rgba(199, 229, 225, 0.72) !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__title {
  grid-column: auto !important;
  grid-row: auto !important;
  max-width: 780px !important;
  margin: 0 !important;
  color: var(--heritage-paper) !important;
  font-family: var(--sans) !important;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem) !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  line-height: 1.06 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__note,
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage p {
  grid-column: auto !important;
  grid-row: auto !important;
  max-width: 620px !important;
  margin: 0 !important;
  color: var(--heritage-muted) !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-price-spectrum, .heritage-status-map, .heritage-check-grid, .heritage-risk-layers, .heritage-offer-map, .heritage-stop-gates) {
  display: grid !important;
  gap: 12px !important;
  margin: 0 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-price-spectrum, .heritage-status-map, .heritage-offer-map, .heritage-check-grid) {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-risk-layers, .heritage-stop-gates) {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-price-spectrum, .heritage-status-map, .heritage-offer-map) article:nth-child(3) {
  grid-column: auto !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-price-spectrum, .heritage-status-map, .heritage-check-grid, .heritage-risk-layers, .heritage-offer-map, .heritage-stop-gates) article {
  position: relative !important;
  display: grid !important;
  align-content: start !important;
  gap: 12px !important;
  min-width: 0 !important;
  min-height: 184px !important;
  padding: 18px !important;
  overflow: hidden !important;
  color: var(--heritage-paper) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(251, 246, 234, 0.18) !important;
  border-radius: 7px !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-price-spectrum, .heritage-status-map, .heritage-check-grid, .heritage-risk-layers, .heritage-offer-map, .heritage-stop-gates) article:nth-child(2n) {
  background: rgba(24, 79, 80, 0.78) !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-price-spectrum, .heritage-check-grid, .heritage-offer-map, .heritage-stop-gates) article::after {
  content: none !important;
  display: none !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .nybygg-icon {
  display: inline-grid !important;
  place-items: center !important;
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  color: var(--heritage-ink) !important;
  background: var(--heritage-paper) !important;
  border: 1px solid rgba(251, 246, 234, 0.62) !important;
  border-radius: 6px !important;
  vertical-align: initial !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .nybygg-icon svg {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > span:not(.nybygg-icon) {
  display: inline-grid !important;
  place-items: center !important;
  justify-self: start !important;
  width: max-content !important;
  max-width: 100% !important;
  min-width: 30px !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 7px 11px !important;
  color: var(--heritage-ink) !important;
  background: #c7e5e1 !important;
  border-radius: 999px !important;
  font-family: var(--caption) !important;
  font-size: 0.68rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > strong {
  display: block !important;
  max-width: 100% !important;
  margin: 0 !important;
  color: var(--heritage-paper) !important;
  font-family: var(--sans) !important;
  font-size: clamp(1rem, 1.1vw, 1.14rem) !important;
  font-weight: 750 !important;
  letter-spacing: 0 !important;
  line-height: 1.14 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > em {
  display: block !important;
  margin: 0 !important;
  color: #c7e5e1 !important;
  font-style: normal !important;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.04 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > p {
  max-width: none !important;
  margin: 0 !important;
  color: var(--heritage-muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.42 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .heritage-driver-strip {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 14px !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(251, 246, 234, 0.18) !important;
  border-radius: 7px !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .heritage-driver-strip span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 7px 11px !important;
  color: var(--heritage-ink) !important;
  background: var(--heritage-paper) !important;
  border-radius: 999px !important;
  font-family: var(--caption) !important;
  font-size: 0.68rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

@media (max-width: 980px) {
  body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-price-spectrum, .heritage-status-map, .heritage-check-grid, .heritage-risk-layers, .heritage-offer-map, .heritage-stop-gates) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage {
    gap: 16px !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 24px 0 8px !important;
    padding: 18px 14px 20px !important;
    border: 1px solid rgba(251, 246, 234, 0.16) !important;
    border-radius: 6px !important;
    box-shadow: 0 16px 30px rgba(8, 39, 53, 0.16) !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__head {
    max-width: none !important;
    gap: 7px !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__label {
    width: 100% !important;
    gap: 9px !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.11em !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__label::after {
    flex: 1 1 44px !important;
    width: auto !important;
    min-width: 38px !important;
    max-width: 112px !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__title {
    max-width: 17ch !important;
    font-size: clamp(1.35rem, 7vw, 1.78rem) !important;
    line-height: 1.02 !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__note {
    max-width: 34ch !important;
    font-size: 0.9rem !important;
    line-height: 1.44 !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-price-spectrum, .heritage-status-map, .heritage-check-grid, .heritage-risk-layers, .heritage-offer-map, .heritage-stop-gates) {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-price-spectrum, .heritage-status-map, .heritage-check-grid, .heritage-risk-layers, .heritage-offer-map, .heritage-stop-gates) article {
    gap: 10px !important;
    min-height: 0 !important;
    padding: 16px !important;
    border-radius: 6px !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .nybygg-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 5px !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .nybygg-icon svg {
    width: 21px !important;
    height: 21px !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > strong {
    font-size: 1rem !important;
    line-height: 1.16 !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > p {
    font-size: 0.9rem !important;
    line-height: 1.38 !important;
  }
}

@media (max-width: 380px) {
  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__title {
    font-size: 1.28rem !important;
  }

  body.article-pusse-opp-verneverdig-hus-hva-koster-det :is(.heritage-price-spectrum, .heritage-status-map, .heritage-check-grid, .heritage-risk-layers, .heritage-offer-map, .heritage-stop-gates) article {
    padding: 14px !important;
  }
}

/* Verneverdig guide v284: final contrast pass for infographic icons and chips. */
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .nybygg-icon {
  color: #082735 !important;
  background: #fbf6ea !important;
  opacity: 1 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #082735 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .nybygg-icon svg,
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .nybygg-icon svg *,
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .nybygg-icon path {
  color: #082735 !important;
  stroke: #082735 !important;
  fill: none !important;
  opacity: 1 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #082735 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > span:not(.nybygg-icon),
body.article-pusse-opp-verneverdig-hus-hva-koster-det .heritage-driver-strip span {
  color: #082735 !important;
  opacity: 1 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #082735 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > span:not(.nybygg-icon) {
  background: #c7e5e1 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .heritage-driver-strip span {
  background: #fbf6ea !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > span:not(.nybygg-icon) *,
body.article-pusse-opp-verneverdig-hus-hva-koster-det .heritage-driver-strip span * {
  color: #082735 !important;
  opacity: 1 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #082735 !important;
}

body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > strong,
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > em,
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage article > p,
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__title,
body.article-pusse-opp-verneverdig-hus-hva-koster-det .blog-infographic--heritage .blog-infographic__note {
  opacity: 1 !important;
  text-shadow: none !important;
}

/* MW badge header logo */
.brand--byggsikt {
  gap: clamp(8px, 0.75vw, 12px);
  width: auto;
  max-width: min(31vw, 270px);
  min-width: 0;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand--byggsikt .brand__mark {
  width: clamp(44px, 4.2vw, 60px);
  height: auto;
  aspect-ratio: 1;
  transform: none;
}

.brand--byggsikt .brand__text {
  display: block;
  min-width: 0;
  max-width: 190px;
  overflow: hidden;
  color: currentColor;
  font-family: "Euclid Triangle", var(--sans);
  font-size: clamp(0.68rem, 0.78vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.05;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .brand--byggsikt {
    gap: clamp(7px, 2.2vw, 10px);
    width: auto;
    max-width: calc(100vw - 82px);
  }

  .brand--byggsikt .brand__mark {
    width: clamp(38px, 10.5vw, 48px);
  }

  .brand--byggsikt .brand__text {
    max-width: clamp(134px, 48vw, 192px);
    font-size: clamp(0.78rem, 3.2vw, 0.88rem);
    letter-spacing: 0.045em;
  }
}

@media (min-width: 761px) and (max-width: 860px) {
  .brand--byggsikt {
    gap: 7px;
    max-width: 154px;
  }

  .brand--byggsikt .brand__mark {
    width: 42px;
  }

  .brand--byggsikt .brand__text {
    max-width: 105px;
    font-size: 0.58rem;
    letter-spacing: 0.055em;
  }
}

@media (max-width: 360px) {
  .brand--byggsikt .brand__text {
    max-width: clamp(112px, 43vw, 144px);
    font-size: clamp(0.69rem, 3.1vw, 0.78rem);
    letter-spacing: 0.03em;
  }
}

@media (max-width: 280px) {
  .brand--byggsikt {
    gap: 6px;
  }

  .brand--byggsikt .brand__text {
    max-width: clamp(92px, 39vw, 106px);
    font-size: 0.6rem;
    letter-spacing: 0;
  }
}

/* MW Construction blog variation */
.mw-blog-page {
  --blog-accent: #173452;
  --blog-accent-2: #2f9abd;
  --blog-gold: #d8b35e;
  --blog-panel: var(--paper);
  --blog-card: var(--paper);
}

.mw-blog-page .site-nav a[href="/blog/"] {
  color: currentColor;
}

.mw-blog-index-hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.mw-blog-index-hero::after {
  position: absolute;
  right: clamp(18px, 6vw, 110px);
  bottom: clamp(22px, 5vw, 88px);
  width: clamp(180px, 22vw, 390px);
  height: clamp(180px, 22vw, 390px);
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(23, 52, 82, 0.12) 28% 38%, transparent 38% 100%),
    linear-gradient(45deg, transparent 0 42%, rgba(47, 154, 189, 0.22) 42% 54%, transparent 54% 100%);
  content: "";
}

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

.mw-feature-card {
  border-radius: 0;
}

.mw-article-hero .blog-article-hero__shade {
  background:
    linear-gradient(90deg, rgba(11, 14, 12, 0.72), rgba(13, 22, 26, 0.34) 54%, rgba(8, 9, 7, 0.72)),
    linear-gradient(180deg, rgba(10, 10, 8, 0.5), rgba(10, 10, 8, 0.12) 40%, rgba(10, 10, 8, 0.76));
}

.mw-article-hero .blog-kicker {
  color: rgba(246, 239, 227, 0.78);
}

.mw-article-hero .blog-article-hero__meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 239, 227, 0.34);
}

.mw-infographic {
  margin: clamp(30px, 5vw, 58px) 0;
  padding: clamp(22px, 3.4vw, 36px);
  background: var(--blog-card);
}

.mw-price-stack,
.mw-triangle-grid,
.mw-layer-list,
.mw-zone-map,
.mw-permit-flow,
.mw-moisture-grid,
.mw-check-grid,
.mw-timeline {
  display: grid;
  gap: 1px;
  background: rgba(23, 52, 82, 0.18);
}

.mw-price-stack,
.mw-triangle-grid,
.mw-moisture-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mw-layer-list,
.mw-zone-map,
.mw-check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mw-permit-flow,
.mw-timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mw-timeline {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.mw-price-stack article,
.mw-triangle-grid article,
.mw-layer-list article,
.mw-zone-map article,
.mw-permit-flow article,
.mw-moisture-grid article,
.mw-check-grid article,
.mw-timeline article {
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  background: rgba(250, 246, 237, 0.88);
}

.mw-price-stack span,
.mw-layer-list span,
.mw-permit-flow span,
.mw-timeline span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blog-accent);
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mw-triangle-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blog-accent);
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mw-price-stack strong,
.mw-triangle-grid strong,
.mw-layer-list strong,
.mw-zone-map strong,
.mw-permit-flow strong,
.mw-moisture-grid strong,
.mw-check-grid strong,
.mw-timeline strong {
  display: block;
  color: var(--blog-ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  font-weight: 750;
  line-height: 1.18;
}

.mw-price-stack p,
.mw-triangle-grid p,
.mw-layer-list p,
.mw-zone-map p,
.mw-permit-flow p,
.mw-moisture-grid p,
.mw-check-grid p,
.mw-timeline p {
  margin: 12px 0 0;
  color: var(--blog-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.mw-zone-map article {
  border-top: 4px solid var(--blog-accent);
}

.mw-zone-map article:nth-child(2),
.mw-zone-map article:nth-child(4),
.mw-triangle-grid article:nth-child(2),
.mw-price-stack article:nth-child(2),
.mw-moisture-grid article:nth-child(2) {
  border-top-color: var(--blog-accent-2);
  background: rgba(235, 243, 242, 0.9);
}

.mw-zone-map article:nth-child(3),
.mw-triangle-grid article:nth-child(3),
.mw-price-stack article:nth-child(3),
.mw-moisture-grid article:nth-child(3) {
  border-top-color: var(--blog-gold);
}

.mw-author-strip {
  grid-template-columns: auto minmax(160px, 0.28fr) minmax(0, 1fr) auto;
}

.mw-lead-magnet {
  display: grid;
  gap: 22px;
  margin: clamp(34px, 6vw, 64px) 0;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(23, 52, 82, 0.18);
  border-left: 8px solid var(--blog-accent);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(23, 52, 82, 0.1);
}

.mw-lead-magnet__copy {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.mw-lead-magnet__copy p,
.mw-lead-magnet__action span {
  margin: 0;
  color: var(--blog-accent);
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mw-lead-magnet__copy h2 {
  margin: 0;
  color: var(--blog-ink);
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 300;
  line-height: 0.96;
}

.mw-lead-magnet__copy span {
  color: var(--blog-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.mw-lead-magnet__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mw-lead-magnet__grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(23, 52, 82, 0.14);
  background: rgba(255, 252, 244, 0.82);
}

.mw-lead-magnet__grid strong {
  color: var(--blog-ink);
  font-family: var(--sans);
  font-size: 0.98rem;
}

.mw-lead-magnet__grid p {
  margin: 0;
  color: var(--blog-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.mw-lead-magnet__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 52, 82, 0.16);
}

.mw-lead-magnet__action a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  background: #173452;
  color: #f8efd9;
  font-family: var(--caption);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mw-lead-magnet__action a:hover {
  background: #246f8b;
}

.mw-author-initial {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(23, 52, 82, 0.24);
  background: #173452;
  color: #f8efd9;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}

.mw-author-initial--large {
  width: 112px;
  height: 112px;
  font-size: 3.4rem;
}

.mw-author-profile__card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--blog-rule);
  background: var(--blog-card);
}

.mw-author-profile__card h1 {
  margin: 0;
  color: var(--blog-ink);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 0.94;
}

.mw-author-profile__card span {
  color: var(--blog-muted);
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-article__faq details {
  padding: 18px 0;
  border-top: 1px solid var(--blog-rule);
}

.blog-article__faq details:last-child {
  border-bottom: 1px solid var(--blog-rule);
}

.blog-article__faq summary {
  cursor: pointer;
  color: var(--blog-ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 780;
}

.blog-article__sources ul {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.blog-article__sources li::before {
  content: none;
}

@media (max-width: 1180px) {
  .mw-permit-flow,
  .mw-timeline,
  .mw-lead-magnet__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mw-permit-flow article:last-child,
  .mw-timeline article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .mw-price-stack,
  .mw-triangle-grid,
  .mw-layer-list,
  .mw-zone-map,
  .mw-permit-flow,
  .mw-moisture-grid,
  .mw-check-grid,
  .mw-timeline,
  .mw-lead-magnet__grid {
    grid-template-columns: 1fr;
  }

  .mw-lead-magnet__action {
    align-items: flex-start;
    flex-direction: column;
  }

  .mw-lead-magnet__action a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .mw-permit-flow article:last-child,
  .mw-timeline article:last-child {
    grid-column: auto;
  }

  .mw-author-strip {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .mw-author-strip .mw-author-initial {
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
  }
}

/* Final MW paper/color alignment */
body,
.site-main,
.blog-index-page,
.blog-article-page,
.blog-index-page .site-main,
.blog-article-page .site-main,
.about-page .site-main,
.contact-page .site-main,
.services-page .site-main,
.mw-blog-index-hero,
.mw-keyword-section,
.blog-index-topics,
.blog-related,
.blog-card,
.blog-related-card,
.contact-route__card,
.contact-form--refined,
.service-planning {
  background-color: var(--paper);
}

.contact-page .site-main,
.services-page .site-main,
.about-page .site-main,
.mw-blog-index-hero,
.mw-keyword-section {
  background-image: none;
}

.blog-index-page .site-header,
.contact-page .site-header,
.services-page .site-header,
.about-page .site-header {
  border-bottom-color: var(--line) !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  backdrop-filter: none !important;
}

.blog-index-page .brand__mark-image--dark {
  opacity: 1 !important;
}

.blog-index-page .brand__mark-image--light {
  opacity: 0 !important;
}

.mw-blog-page {
  --blog-panel: var(--paper);
  --blog-card: var(--paper);
}

.service-planning {
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.service-planning__copy p:not(.eyebrow),
.service-planning__steps p {
  color: rgba(23, 23, 19, 0.68);
}

.service-planning__steps,
.service-planning__steps article {
  border-color: var(--line);
}

.service-planning__steps strong {
  color: var(--ink);
}

.service-planning .text-link {
  color: #173452;
}

body.byggsikt-frame-page .blog-related {
  width: calc(100% - (var(--frame-x-inner, 26px) * 2));
  max-width: none;
  margin-right: var(--frame-x-inner, 26px);
  margin-left: var(--frame-x-inner, 26px);
  padding-right: 0;
  padding-left: 0;
}

.blog-related {
  border-top: 1px solid var(--blog-rule);
  border-bottom: 1px solid var(--blog-rule);
}

.blog-related__head {
  margin-right: clamp(42px, 5vw, 96px);
  margin-left: clamp(42px, 5vw, 96px);
  padding-bottom: clamp(22px, 3vw, 42px);
  margin-bottom: 0;
  border-bottom: 1px solid var(--blog-rule);
}

.blog-related__grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 0;
  background: transparent;
  border-left: 1px solid var(--blog-rule);
}

.blog-related-card {
  min-height: 410px;
  border-right: 1px solid var(--blog-rule);
  border-bottom: 1px solid var(--blog-rule);
}

@media (max-width: 1320px) {
  .blog-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  body.byggsikt-frame-page .blog-related {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: clamp(18px, 5vw, 42px);
    padding-left: clamp(18px, 5vw, 42px);
  }

  .blog-related__head {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .blog-related__grid {
    grid-template-columns: 1fr;
  }
}

/* MW page refinements: About, Contact, and Services */
.about-page .site-main,
.contact-page .site-main,
.services-page .site-main {
  overflow: clip;
}

.about-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.68fr);
  align-items: center;
  padding-top: clamp(120px, 9vw, 164px);
  padding-bottom: clamp(58px, 6vw, 104px);
}

.about-hero h1 {
  font-size: clamp(4.8rem, 6.4vw, 7.4rem);
}

.about-hero__image--main {
  aspect-ratio: 4 / 3.55;
}

.about-hero__image--detail {
  width: min(54%, 310px);
  aspect-ratio: 4 / 4.55;
  margin-top: clamp(-82px, -5vw, -48px);
}

.contact-page .site-main,
.services-page .site-main {
  background: var(--paper);
}

.contact-page-hero,
.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: clamp(36px, 6vw, 104px);
  align-items: end;
  padding-top: clamp(122px, 9vw, 172px);
  padding-bottom: clamp(46px, 6vw, 92px);
}

.contact-page-hero__copy,
.services-hero__copy {
  display: grid;
  gap: clamp(20px, 2.2vw, 34px);
  min-width: 0;
}

.contact-page-hero h1,
.services-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(4.3rem, 7.2vw, 9.4rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}

.contact-page-hero__copy > p,
.services-hero__copy > p {
  max-width: 680px;
  margin: 0;
  color: rgba(23, 23, 19, 0.72);
  font-size: clamp(1.04rem, 1.22vw, 1.34rem);
  font-weight: 500;
  line-height: 1.58;
}

.contact-page-hero__actions,
.services-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
}

.contact-action,
.services-hero__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.9rem 1.05rem 0.82rem;
  border: 1px solid rgba(23, 23, 19, 0.22);
  color: #173452;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-action--primary,
.contact-action:hover,
.contact-action:focus-visible,
.services-hero__links a:hover,
.services-hero__links a:focus-visible {
  border-color: #173452;
  background: #173452;
  color: #fff5e6;
  transform: translateY(-1px);
}

.contact-action--primary:hover,
.contact-action--primary:focus-visible {
  background: #0d243b;
}

.contact-page-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px clamp(20px, 3vw, 44px);
  max-width: 760px;
  padding-top: clamp(18px, 2vw, 28px);
  border-top: 1px solid var(--line);
  color: rgba(23, 23, 19, 0.7);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-page-hero__meta a {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  border-bottom: 1px solid currentColor;
}

.contact-page-hero__media {
  position: relative;
  min-height: clamp(520px, 44vw, 720px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 19, 0.14);
  background: var(--paper);
}

.contact-page-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 12, 0.02) 35%, rgba(11, 13, 12, 0.62)),
    linear-gradient(90deg, rgba(11, 13, 12, 0.16), transparent 48%);
  content: "";
  pointer-events: none;
}

.contact-page-hero__media img,
.services-hero__image img,
.service-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page-hero__media img {
  object-position: center;
  filter: saturate(0.94) contrast(0.98) brightness(0.94);
}

.contact-page-hero__media figcaption {
  position: absolute;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.6vw, 38px);
  left: clamp(18px, 2.6vw, 38px);
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 460px;
  color: rgba(250, 246, 237, 0.9);
}

.contact-page-hero__media figcaption span,
.contact-route__card span,
.service-panel span,
.service-planning__steps span {
  color: #d8b35e;
  font-family: var(--caption);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-page-hero__media figcaption strong {
  max-width: 420px;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  font-weight: 760;
  line-height: 1.35;
}

.contact-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: clamp(30px, 4vw, 62px);
  padding-bottom: clamp(30px, 4vw, 62px);
}

.contact-route__card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 230px;
  padding: clamp(24px, 3vw, 42px);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.contact-route__card:first-child {
  border-left: 1px solid var(--line);
}

.contact-route__card strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 2.6vw, 3.1rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.contact-route__card p {
  max-width: 360px;
  margin: 0;
  color: rgba(23, 23, 19, 0.66);
  font-weight: 560;
  line-height: 1.55;
}

.contact-brief--refined {
  padding-top: clamp(58px, 6vw, 98px);
  padding-bottom: clamp(78px, 8vw, 136px);
}

.contact-brief--refined .contact-brief__notes h2 {
  font-size: clamp(2.8rem, 4.2vw, 5.4rem);
}

.contact-form--refined {
  padding: clamp(24px, 3vw, 44px);
  border: 1px solid rgba(23, 23, 19, 0.14);
  background: var(--paper);
}

.contact-form--refined .contact-submit-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: fit-content;
  min-width: 178px;
  min-height: 52px;
  margin-bottom: 0;
  padding: 0.98rem 1.48rem 0.92rem;
  border: 1px solid #173452 !important;
  border-radius: 2px;
  background: #173452 !important;
  color: #fffaf0 !important;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 16px 34px rgba(23, 52, 82, 0.18);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-form--refined .contact-submit-button:hover,
.contact-form--refined .contact-submit-button:focus-visible {
  border-color: #0d243b !important;
  background: #0d243b !important;
  color: #fffaf0 !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(13, 36, 59, 0.2);
}

.services-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.72fr);
  align-items: center;
}

.services-hero__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.38fr);
  gap: clamp(14px, 2vw, 26px);
  align-items: end;
  min-width: 0;
}

.services-hero__image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 19, 0.14);
  background: var(--paper);
}

.services-hero__image--wide {
  aspect-ratio: 4 / 4.45;
}

.services-hero__image--small {
  aspect-ratio: 3 / 4.4;
  transform: translateY(clamp(22px, 4vw, 54px));
}

.services-grid {
  display: grid;
  gap: 0;
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(42px, 6vw, 86px);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(270px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 86px);
  align-items: center;
  padding: clamp(28px, 4vw, 58px) 0;
  border-top: 1px solid var(--line);
}

.service-panel:last-child {
  border-bottom: 1px solid var(--line);
}

.service-panel figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3.15;
  border: 1px solid rgba(23, 23, 19, 0.14);
  background: var(--paper);
}

.service-panel:nth-child(2) figure {
  aspect-ratio: 4 / 4.8;
}

.service-panel div {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
  min-width: 0;
  max-width: 860px;
}

.service-panel h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.4vw, 5.8rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

.service-panel p {
  max-width: 660px;
  margin: 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  font-weight: 520;
  line-height: 1.6;
}

.service-planning {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.service-planning__copy {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  min-width: 0;
}

.service-planning__copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.4rem, 5.8vw, 7rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.94;
  text-wrap: balance;
}

.service-planning__copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(23, 23, 19, 0.68);
  font-size: 1.02rem;
  line-height: 1.62;
}

.service-planning .text-link {
  width: fit-content;
  color: #173452;
}

.service-planning__steps {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-planning__steps article {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.3vw, 28px) 0;
  border-bottom: 1px solid var(--line);
}

.service-planning__steps strong {
  color: var(--ink);
  font-size: clamp(1.24rem, 1.5vw, 1.62rem);
  font-weight: 780;
}

.service-planning__steps p {
  max-width: 520px;
  margin: 0;
  color: rgba(23, 23, 19, 0.68);
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .about-hero,
  .contact-page-hero,
  .services-hero,
  .service-planning {
    grid-template-columns: 1fr;
  }

  .about-hero__media,
  .contact-page-hero__media,
  .services-hero__media {
    width: min(100%, 760px);
  }

  .contact-route {
    grid-template-columns: 1fr;
  }

  .contact-route__card,
  .contact-route__card:first-child {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .contact-route__card + .contact-route__card {
    border-top: 0;
  }

  .service-panel {
    grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .about-hero,
  .contact-page-hero,
  .services-hero {
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 42px;
  }

  .about-hero h1,
  .contact-page-hero h1,
  .services-hero h1 {
    font-size: clamp(3rem, 12.6vw, 4rem);
    line-height: 0.96;
  }

  .about-hero__image--main {
    aspect-ratio: 4 / 3.7;
  }

  .about-hero__image--detail {
    width: min(66%, 236px);
    margin-top: -38px;
    margin-right: 12px;
  }

  .contact-page-hero__copy > p,
  .services-hero__copy > p {
    font-size: 0.98rem;
  }

  .contact-page-hero__actions,
  .services-hero__links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-action,
  .services-hero__links a {
    width: 100%;
  }

  .contact-page-hero__meta {
    grid-template-columns: 1fr;
    gap: 10px;
    letter-spacing: 0.06em;
  }

  .contact-page-hero__media {
    width: 100%;
    min-height: 380px;
  }

  .contact-route__card {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-left: 0;
    background: transparent;
  }

  .contact-route__card:first-child {
    border-left: 0;
  }

  .contact-brief--refined {
    padding-top: 46px;
    padding-bottom: 66px;
  }

  .contact-form--refined {
    padding: 20px 16px;
  }

  .services-hero__media {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .services-hero__image--wide {
    aspect-ratio: 4 / 3.55;
  }

  .services-hero__image--small {
    width: min(68%, 250px);
    aspect-ratio: 3 / 3.7;
    justify-self: end;
    margin-top: -70px;
    transform: none;
  }

  .service-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-panel figure,
  .service-panel:nth-child(2) figure {
    aspect-ratio: 4 / 3.45;
  }

  .service-panel h2 {
    font-size: clamp(2.55rem, 11.4vw, 3.7rem);
    line-height: 0.98;
  }

  .service-planning {
    gap: 30px;
    margin-bottom: 42px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .service-planning__copy h2 {
    font-size: clamp(3rem, 12vw, 4.2rem);
    line-height: 0.96;
  }
}

@media (max-width: 360px) {
  .about-hero h1,
  .contact-page-hero h1,
  .services-hero h1 {
    font-size: 2.75rem;
  }

  .contact-page-hero__media {
    min-height: 340px;
  }

  .service-panel h2,
  .service-planning__copy h2 {
    font-size: 2.55rem;
  }
}

/* Footer responsive brand lockup: crisp logo, no clipped side placement. */
.footer-mark::before {
  background:
    url("assets/brand/mw-logo-light-footer.webp") center / 92% auto no-repeat,
    radial-gradient(circle at 50% 52%, rgba(49, 151, 185, 0.1), rgba(20, 52, 82, 0.05) 46%, rgba(0, 0, 0, 0) 70%);
  mix-blend-mode: normal;
  opacity: 0.9;
}

@media (max-width: 1280px) {
  .footer-card-shell,
  body.byggsikt-frame-page .footer-card-shell {
    --footer-f-clearance: 0px;
    --footer-logo-size: clamp(132px, 17vw, 178px);
    min-height: auto;
  }

  .page-footer .footer-grid,
  body.byggsikt-frame-page .page-footer .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(26px, 4vw, 48px) clamp(22px, 3.2vw, 40px);
    padding-top: clamp(56px, 7vw, 86px);
  }

  .footer-mark,
  body.byggsikt-frame-page .page-footer .footer-mark {
    grid-column: 1 / -1;
    grid-template-columns: var(--footer-logo-size) minmax(0, 520px);
    gap: clamp(24px, 4vw, 42px);
    align-items: center;
    max-width: min(100%, 760px);
    margin-left: 0;
  }

  .footer-mark::before,
  body.byggsikt-frame-page .page-footer .footer-mark::before {
    position: static;
    display: block;
    width: var(--footer-logo-size);
    height: var(--footer-logo-size);
    transform: none;
  }

  .footer-mark strong,
  .footer-mark p {
    grid-column: 2;
  }

  .footer-mark p,
  body.byggsikt-frame-page .page-footer .footer-mark p {
    max-width: 520px;
  }

  .footer-col,
  body.byggsikt-frame-page .page-footer .footer-col {
    min-width: 0;
  }

  .footer-col a,
  body.byggsikt-frame-page .page-footer .footer-col a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 760px) {
  .footer-card-shell,
  body.byggsikt-frame-page .footer-card-shell {
    --footer-logo-size: clamp(136px, 34vw, 184px);
  }

  .page-footer .footer-grid,
  body.byggsikt-frame-page .page-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: clamp(44px, 10vw, 68px);
  }

  .footer-mark,
  body.byggsikt-frame-page .page-footer .footer-mark {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .footer-mark strong,
  .footer-mark p {
    grid-column: 1;
  }

  .footer-mark p,
  body.byggsikt-frame-page .page-footer .footer-mark p {
    max-width: 420px;
  }

  .footer-col {
    gap: 10px;
  }
}
