:root {
  --ink: #171411;
  --graphite: #24211d;
  --graphite-2: #312b25;
  --terracotta: #b76443;
  --terracotta-dark: #8f472e;
  --brass: #b28a5b;
  --sage: #5f6c60;
  --paper: #f6f3ee;
  --paper-2: #ebe7df;
  --line: #d9d2c8;
  --muted: #706960;
  --white: #ffffff;
  --max: 1500px;
  --gutter: 36px;
  --font-display: "Klein Medium", "Klein", "Arial Narrow", Arial, sans-serif;
  --font-text: "Klein Text Light", "Klein Text", "Inter Tight", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
}

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

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

button,
.btn {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 20px var(--gutter);
  color: var(--white);
  background: linear-gradient(180deg, rgba(23, 20, 17, 0.62), rgba(23, 20, 17, 0));
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--ink);
  background: rgba(246, 243, 238, 0.96);
  box-shadow: 0 16px 34px rgba(23, 20, 17, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 184px;
  min-width: 164px;
  aspect-ratio: 1464 / 265;
}

.logo__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 220ms ease;
}

.logo__image--dark {
  opacity: 0;
}

.site-header.is-scrolled .logo__image--light,
.site-header.is-menu-open .logo__image--light {
  opacity: 0;
}

.site-header.is-scrolled .logo__image--dark,
.site-header.is-menu-open .logo__image--dark {
  opacity: 1;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.tool-button,
.menu-toggle {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.tool-button svg,
.menu-toggle svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.45;
}

.menu-toggle {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid currentColor;
  font-size: 12px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 94dvh;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  object-position: center;
  opacity: 1;
  transform: scale(1.02);
  transition: opacity 480ms ease, transform 9000ms ease;
}

.hero-image.is-changing {
  opacity: 0.2;
  transform: scale(1.035);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.82) 0%, rgba(13, 12, 11, 0.56) 38%, rgba(13, 12, 11, 0.18) 68%, rgba(13, 12, 11, 0.38) 100%),
    linear-gradient(180deg, rgba(13, 12, 11, 0.58) 0%, rgba(13, 12, 11, 0.12) 42%, rgba(13, 12, 11, 0.56) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 48px;
  width: 100%;
  max-width: var(--max);
  min-height: 94dvh;
  margin: 0 auto;
  padding: 168px var(--gutter) 110px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--terracotta-dark);
}

.hero h1,
.section h2,
.designer-section h2,
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 64px;
}

.hero-lead {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  font-weight: 300;
  text-wrap: pretty;
}

.hero-actions,
.designer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn svg,
.text-link svg {
  width: 16px;
  height: 16px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-light {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  color: var(--white);
  border-color: var(--graphite);
  background: var(--graphite);
}

.btn-plain {
  color: var(--graphite);
  border-color: var(--line);
  background: transparent;
}

.hero-proof {
  display: grid;
  gap: 22px;
  align-self: center;
}

.hero-proof article {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  row-gap: 3px;
  align-items: start;
}

.hero-proof svg {
  grid-row: span 2;
  width: 25px;
  height: 25px;
  stroke-width: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.hero-proof span {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
}

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 12px;
  transform: translateX(-50%);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 28px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-dots .is-active {
  background: var(--white);
}

.section,
.room-strip,
.designer-section,
.final-cta,
.footer {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: 72px;
}

.section-kicker {
  margin-bottom: 24px;
}

.section-kicker.center {
  text-align: center;
}

.section-kicker h2,
.section-head h2,
.split-head h2 {
  margin: 0;
  font-size: 34px;
}

.section-kicker p,
.section-head p,
.split-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-head,
.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head > div,
.split-head > div {
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--terracotta-dark);
}

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

.space-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.space-card::after,
.solution-card::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 20, 17, 0.05), rgba(23, 20, 17, 0.72));
}

.space-card span,
.space-card svg {
  position: absolute;
  z-index: 1;
}

.space-card span {
  left: 24px;
  bottom: 22px;
  max-width: 260px;
  font-family: var(--font-display);
  font-size: 20px;
}

.space-card svg {
  right: 22px;
  bottom: 23px;
  width: 22px;
}

.room-strip {
  padding-top: 52px;
}

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

.room-icons a {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 76px;
  padding: 12px 6px;
  color: #4f4941;
  font-size: 13px;
  text-align: center;
}

.room-icons svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.25;
}

.room-icon-stairs {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-icons a:hover,
.room-icons a:focus-visible {
  color: var(--terracotta-dark);
  background: rgba(183, 100, 67, 0.08);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.solution-card {
  position: relative;
  display: block;
  min-height: 330px;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-card > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.solution-card > div > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.solution-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.12;
}

.solution-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 12px;
}

.solution-card__cta svg {
  width: 15px;
}

.solution-card img {
  transition: transform 220ms ease;
}

.solution-card:hover,
.solution-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(23, 20, 17, 0.2);
}

.solution-card:hover img,
.solution-card:focus-visible img {
  transform: scale(1.03);
}

.solution-card:focus-visible,
.product-card__cover-link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: -3px;
}

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

.category-card {
  display: grid;
  grid-template-rows: minmax(230px, auto) 1fr;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  box-shadow: 0 22px 44px rgba(23, 20, 17, 0.1);
  transform: translateY(-2px);
}

.category-card img {
  aspect-ratio: 16 / 10;
  height: auto;
}

.category-card div {
  min-height: 164px;
  padding: 24px;
}

.category-card span {
  display: block;
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-size: 12px;
}

.category-card h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
}

.category-card p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.tab-row {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
}

.tab-row button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
}

.tab-row .is-active {
  color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.filters a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: #514a42;
  font-size: 13px;
}

.filters svg {
  width: 15px;
  height: 15px;
}

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

.product-grid.is-active {
  display: grid;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  transition: box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: 0 12px 24px rgba(23, 20, 17, 0.12);
}

.product-card__cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-card img {
  aspect-ratio: 1 / 1;
  height: auto;
  background: var(--paper-2);
  object-position: center;
}

.product-card button {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.product-card button svg {
  width: 17px;
}

.product-card p,
.product-card h3,
.product-card strong,
.product-card span,
.product-card .product-card__cta {
  display: block;
  margin-left: 16px;
  margin-right: 16px;
  max-width: calc(100% - 32px);
}

.product-card p {
  margin-top: 17px;
  margin-bottom: 8px;
  color: #6e665d;
  font-family: var(--font-display);
  font-size: 12px;
}

.product-card h3 {
  min-height: 44px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-card strong {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.15;
}

.product-card span {
  margin-top: 12px;
  font-size: 13px;
}

.stock {
  color: #35704c;
}

.preorder {
  color: #a8733f;
}

.product-card .product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  margin-top: 20px;
  margin-bottom: 18px;
  font-size: 13px;
}

.product-card .product-card__cta svg {
  width: 15px;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.benefit-row article {
  min-height: 182px;
  padding: 30px 24px;
  background: var(--paper);
}

.benefit-row svg {
  width: 30px;
  height: 30px;
  color: var(--sage);
  stroke-width: 1.35;
}

.benefit-row h3 {
  margin: 18px 0 9px;
  font-family: var(--font-display);
  font-size: 16px;
}

.benefit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.brand-section {
  padding: 10px var(--gutter) 78px;
  background:
    linear-gradient(180deg, rgba(246, 243, 238, 0), rgba(235, 231, 223, 0.52)),
    var(--paper);
}

.brand-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto 28px;
}

.brand-head h2 {
  margin: 0;
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.05;
}

.brand-controls {
  display: inline-flex;
  gap: 8px;
}

.brand-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.brand-controls button:hover,
.brand-controls button:focus-visible {
  color: var(--terracotta-dark);
  border-color: rgba(183, 100, 67, 0.42);
  background: rgba(183, 100, 67, 0.08);
  transform: translateY(-1px);
}

.brand-controls svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.45;
}

.brand-rail {
  display: grid;
  grid-template-columns: repeat(15, minmax(140px, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  overflow-x: auto;
  background: var(--line);
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.brand-rail::-webkit-scrollbar {
  display: none;
}

.brand-logo {
  display: grid;
  place-items: center;
  min-width: 140px;
  min-height: 92px;
  padding: 18px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.brand-logo:hover,
.brand-logo:focus-visible {
  color: var(--terracotta-dark);
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-2px);
}

.brand-logo svg {
  width: 100%;
  max-width: 154px;
  height: auto;
}

.brand-logo__mark {
  display: block;
  width: min(172px, 100%);
  height: 56px;
  background: currentColor;
  -webkit-mask: var(--brand-mark) center / contain no-repeat;
  mask: var(--brand-mark) center / contain no-repeat;
}

.brand-logo--image:nth-child(1) .brand-logo__mark,
.brand-logo--image:nth-child(4) .brand-logo__mark,
.brand-logo--image:nth-child(6) .brand-logo__mark {
  height: 64px;
}

.brand-logo--image:nth-child(7) .brand-logo__mark,
.brand-logo--image:nth-child(11) .brand-logo__mark {
  height: 50px;
}

.brand-logo text {
  fill: currentColor;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo__caption {
  font-size: 7px;
  font-weight: 500;
}

.brand-logo ellipse {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: stroke 220ms ease;
}

.brand-logo--stacked text {
  font-size: 15px;
}

.brand-logo--tk text:first-child {
  font-size: 31px;
}

.brand-logo--wide text {
  font-size: 18px;
}

.designer-section {
  padding-top: 0;
}

.designer-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1.25fr;
  min-height: 420px;
  background: var(--paper-2);
}

.designer-hero > div {
  padding: 58px;
}

.designer-hero h2 {
  margin: 0;
  color: var(--graphite);
  font-size: 36px;
}

.designer-hero p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
}

.resource-grid article {
  min-height: 150px;
  padding: 26px;
  background: var(--white);
}

.resource-grid svg {
  width: 28px;
  height: 28px;
  color: var(--brass);
  stroke-width: 1.35;
}

.resource-grid h3 {
  margin: 16px 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
}

.resource-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.process {
  padding-bottom: 54px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article {
  min-height: 180px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-size: 13px;
}

.process-grid h3 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 270px;
  margin-bottom: 54px;
  overflow: hidden;
  color: var(--white);
}

.final-cta img {
  position: absolute;
  inset: 0 var(--gutter);
  width: calc(100% - var(--gutter) * 2);
}

.final-cta::after {
  inset: 0 var(--gutter);
  background: linear-gradient(90deg, rgba(23, 20, 17, 0.88), rgba(23, 20, 17, 0.34));
}

.final-cta div,
.final-cta .btn {
  position: relative;
  z-index: 1;
}

.final-cta div {
  padding-left: 44px;
}

.final-cta h2 {
  max-width: 660px;
  margin: 0;
  font-size: 40px;
}

.final-cta p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .btn {
  margin-right: 44px;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
  max-width: none;
  padding-top: 46px;
  padding-bottom: 46px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer > * {
  max-width: 260px;
}

.footer-logo {
  display: block;
  width: 184px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.footer p {
  margin: 12px 0 0;
}

.footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
}

.footer a,
.footer span {
  display: block;
  margin-top: 9px;
  font-size: 13px;
}

.footer address {
  font-style: normal;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom .footer-made-by {
  margin-top: 0;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1240px) {
  .main-nav {
    gap: 17px;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 54px;
  }

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

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

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

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

  .process-grid article {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-height: 780px) and (min-width: 721px) {
  .hero {
    min-height: 92dvh;
  }

  .hero-inner {
    min-height: 92dvh;
    gap: 32px;
    padding-top: 112px;
    padding-bottom: 48px;
    align-content: center;
  }

  .hero h1 {
    max-width: 680px;
    font-size: 48px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-proof {
    gap: 14px;
  }

  .hero-proof article {
    grid-template-columns: 26px 1fr;
    row-gap: 1px;
  }

  .hero-proof svg {
    width: 20px;
    height: 20px;
  }

  .hero-proof span {
    font-size: 13px;
  }

  .hero-proof p {
    font-size: 11px;
  }

  .hero-controls {
    bottom: 18px;
  }
}

@media (max-width: 980px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    grid-template-columns: auto auto 1fr;
    min-height: 74px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    left: var(--gutter);
    right: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px;
    color: var(--ink);
    background: rgba(246, 243, 238, 0.98);
    box-shadow: 0 22px 46px rgba(23, 20, 17, 0.16);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-tools {
    justify-content: end;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 136px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }

  .space-grid,
  .category-grid,
  .designer-hero {
    grid-template-columns: 1fr;
  }

  .brand-rail {
    grid-template-columns: repeat(15, minmax(154px, 1fr));
  }

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

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .logo {
    width: 132px;
    min-width: 118px;
  }

  .tool-button {
    width: 27px;
    height: 27px;
  }

  .tool-button:nth-child(2),
  .tool-button:nth-child(3) {
    display: none;
  }

  .hero {
    min-height: 92dvh;
  }

  .hero-image {
    object-position: 55% center;
  }

  .hero-inner {
    min-height: 92dvh;
    gap: 18px;
    padding-top: 106px;
    padding-bottom: 56px;
    align-content: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 16px;
  }

  .hero-actions,
  .designer-actions,
  .section-head,
  .split-head,
  .brand-head {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .brand-section {
    padding-top: 4px;
    padding-bottom: 54px;
  }

  .brand-head {
    gap: 16px;
    margin-bottom: 20px;
  }

  .brand-head h2 {
    font-size: 28px;
  }

  .brand-controls {
    display: none;
  }

  .brand-rail {
    margin-right: calc(var(--gutter) * -1);
    grid-template-columns: repeat(15, minmax(150px, 1fr));
    padding-bottom: 2px;
  }

  .brand-logo {
    min-height: 82px;
    padding: 15px 12px;
  }

  .brand-logo__mark {
    height: 48px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-proof article {
    grid-template-columns: 22px 1fr;
    column-gap: 8px;
  }

  .hero-proof svg {
    width: 18px;
    height: 18px;
  }

  .hero-proof span {
    font-size: 11px;
  }

  .hero-proof p {
    font-size: 11px;
  }

  .hero-controls {
    bottom: 22px;
  }

  .section {
    padding-top: 54px;
  }

  .section-kicker h2,
  .section-head h2,
  .split-head h2,
  .designer-hero h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .space-card {
    min-height: 210px;
  }

  .room-icons,
  .solution-grid,
  .benefit-row,
  .product-grid,
  .resource-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .room-icons {
    gap: 4px;
  }

  .room-icons a {
    grid-template-columns: 34px 1fr;
    justify-items: start;
    min-height: 52px;
    text-align: left;
  }

  .solution-card {
    min-height: 260px;
  }

  .category-card div,
  .designer-hero > div,
  .resource-grid article {
    padding: 24px;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .filters a {
    flex: 0 0 auto;
  }

  .process-grid article {
    min-height: 136px;
    border-right: 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
    min-height: 390px;
    align-items: end;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .final-cta div {
    padding: 0 24px;
  }

  .final-cta .btn {
    justify-self: start;
    width: auto;
    margin: 0 0 0 24px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
