@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --color-ink: #111111;
  --color-muted: #595959;
  --color-body-text: #4a4a4a;
  --color-line: #dedbd2;
  --color-paper: #fbfaf7;
  --color-surface: #ffffff;
  --color-brand: #24483c;
  --color-brand-dark: #17342b;
  --color-accent: #b88435;
  --color-mint: #8bc1ae;
  --font-sans: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Baskerville, "Libre Baskerville", "Baskerville Old Face", "Times New Roman", serif;
  --container: 1760px;
  --gutter: clamp(14px, 3vw, 48px);
  --header-height: 84px;
  --radius-control: 3px;
  --radius-panel: 4px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color: var(--color-ink);
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  /*
  background:
    radial-gradient(circle at 88% 18%, rgba(184, 132, 53, 0.18), transparent 24rem),
    radial-gradient(circle at 12% 38%, rgba(36, 72, 60, 0.12), transparent 26rem),
    linear-gradient(180deg, #fffdf8 0%, var(--color-paper) 58%, #f6f3ed 100%);
  */
  }

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.row-main {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.smart-scroll-fog {
  position: relative;
}

.smart-scroll-fog--vertical::before,
.smart-scroll-fog--vertical::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 28px;
  opacity: 0;
  pointer-events: none;
  content: "";
  transition: opacity 180ms ease;
}

.smart-scroll-fog--vertical::before {
  top: 0;
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
}

.smart-scroll-fog--vertical::after {
  bottom: 0;
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
}

.smart-scroll-fog--vertical.has-overflow-start::before,
.smart-scroll-fog--vertical.has-overflow-end::after {
  opacity: 1;
}

.home-media-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
}

.header--media-top ~ .home-media-hero {
  margin-top: 0;
}

.home-media-hero__track,
.home-media-hero__slide,
.home-media-hero__asset {
  position: absolute;
  inset: 0;
}

.home-media-hero__slide {
  opacity: 0;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.home-media-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-media-hero__asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-media-hero__slide.is-active .home-media-hero__asset {
  transform: scale(1);
}

.home-media-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-block: 96px clamp(62px, 8vh, 88px);
  pointer-events: none;
}

.home-media-hero__copy {
  width: min(620px, 72vw);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 620ms 240ms ease;
  pointer-events: auto;
}

.home-media-hero__slide.is-active .home-media-hero__copy {
  opacity: 1;
}

.home-media-hero__location,
.home-media-hero__title {
  transform: translateY(28px);
  transition: transform 760ms 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-media-hero__actions {
  opacity: 0;
  transition: opacity 420ms 360ms ease;
}

.home-media-hero__slide.is-active .home-media-hero__location,
.home-media-hero__slide.is-active .home-media-hero__title {
  transform: translateY(0);
}

.home-media-hero__slide.is-active .home-media-hero__actions {
  opacity: 1;
}

.home-media-hero__location {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.home-media-hero__location i {
  font-size: 1.05rem;
}

.home-media-hero__title {
  max-width: 560px;
  margin-inline: auto;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 0.96;
}

.home-media-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.home-media-hero__button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-width: 162px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-control);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.home-media-hero__button--primary {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.home-media-hero__button--secondary {
  background: rgba(17, 17, 17, 0.16);
  color: #fff;
  backdrop-filter: blur(8px);
}

.home-media-hero__button:hover,
.home-media-hero__button:focus-visible {
  border-color: #fff;
  background: #111;
  color: #fff;
}

.home-media-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 96px, rgba(0, 0, 0, 0.04) 220px, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 42%, rgba(0, 0, 0, 0.12));
}

.home-media-hero__pagination {
  position: absolute;
  right: clamp(18px, 3vw, 48px);
  bottom: clamp(22px, 4vw, 54px);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.home-media-hero__pagination button {
  width: 28px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  transform-origin: left center;
  transition: width 260ms ease, background-color 260ms ease;
}

.home-media-hero__pagination button.is-active {
  width: 54px;
  background: rgba(255, 255, 255, 0.92);
}

.home-media-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 24px;
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-media-hero__nav:hover,
.home-media-hero__nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.03);
}

.home-media-hero__nav--prev {
  left: clamp(18px, 3vw, 48px);
}

.home-media-hero__nav--next {
  right: clamp(18px, 3vw, 48px);
}

@media (prefers-reduced-motion: reduce) {
  .home-media-hero__slide,
  .home-media-hero__asset,
  .home-media-hero__copy,
  .home-media-hero__location,
  .home-media-hero__title,
  .home-media-hero__actions {
    transition: none;
  }

  .home-media-hero__asset,
  .home-media-hero__location,
  .home-media-hero__title {
    transform: none;
  }
}

@media (max-width: 820px) {
  .home-media-hero {
    min-height: 100svh;
  }

  .home-media-hero__pagination {
    right: 18px;
    bottom: 24px;
  }

  .home-media-hero__pagination button {
    width: 20px;
  }

  .home-media-hero__pagination button.is-active {
    width: 38px;
  }

  .home-media-hero__nav {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .home-media-hero__content {
    align-items: flex-end;
    padding-block: 82px 76px;
  }

  .home-media-hero__copy {
    width: 100%;
  }

  .home-media-hero__title {
    font-size: clamp(1.75rem, 8.5vw, 2.8rem);
  }

  .home-media-hero__actions {
    gap: 8px;
    margin-top: 22px;
  }

  .home-media-hero__button {
    min-width: 0;
    min-height: 44px;
    padding: 10px 13px;
    font-size: 0.82rem;
  }
}

.m-accessibility {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
}

.m-accessibility a:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--color-ink);
  color: #fff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 0px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, transform 220ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header--scrolled {
  min-height: 66px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 44px rgba(36, 72, 60, 0.09);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  min-height: var(--header-height);
  transition: min-height 180ms ease;
}

.header--scrolled .header__inner {
  min-height: 66px;
}

.site-menu-toggle {
  display: inline-grid;
  gap: 6px;
  align-content: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 72, 60, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.site-menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--color-ink);
}

.header__logo,
.header__logo h1 {
  margin: 0;
}

.header__link {
  display: inline-flex;
  align-items: center;
}

.header__link img {
  width: 132px;
  height: auto;
  transition: width 180ms ease;
}

.header--scrolled .header__link img {
  width: 112px;
}

.header__menu {
  min-width: 0;
}

.m-main__btn,
.m-main__btn--sub {
  display: none;
}

.m-main__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.m-main__item {
  position: relative;
}

.m-main__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 620;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.m-main__link:hover {
  color: var(--color-brand);
}

.m-main__list--sub {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  gap: 2px;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.m-main__item:hover > .m-main__list--sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.m-main__link--sub {
  width: 100%;
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.m-main__link--sub:hover {
  background: #f4f1ea;
}

.header__other {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: rgba(17, 17, 17, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.site-menu-panel {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  width: min(92vw, 470px);
  background:
    radial-gradient(circle at 20% 8%, rgba(184, 132, 53, 0.14), transparent 18rem),
    #fffdf8;
  box-shadow: 36px 0 80px rgba(17, 17, 17, 0.18);
  transform: translateX(-102%);
  transition: transform 280ms cubic-bezier(.22, .61, .36, 1);
}

.site-menu-is-open {
  overflow: hidden;
}

.site-menu-is-open .site-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.site-menu-is-open .site-menu-panel {
  transform: translateX(0);
}

.site-menu-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 34px);
  border-bottom: 1px solid var(--color-line);
}

.site-menu-panel__brand img {
  width: 118px;
}

.site-menu-panel__close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 72, 60, 0.18);
  border-radius: 50%;
  background: #fff;
  color: var(--color-ink);
  font-size: 1.5rem;
  line-height: 1;
}

.site-menu-panel__nav {
  display: grid;
  gap: 0;
  overflow: auto;
  padding: 10px clamp(18px, 4vw, 34px) 34px;
}

.site-menu-panel__group {
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
}

.site-menu-panel__title,
.site-menu-panel__group--links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-ink);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 680;
  line-height: 1;
}

.site-menu-panel__title::after,
.site-menu-panel__group--links a::after {
  content: "\ea61";
  font-family: "tabler-icons";
  color: var(--color-brand);
  font-size: 18px;
  line-height: 1;
}

.site-menu-panel__list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.site-menu-panel__list a {
  display: inline-flex;
  color: var(--color-muted);
  font-size: 1rem;
  font-weight: 560;
}

.site-menu-panel__list a:hover,
.site-menu-panel__group--links a:hover {
  color: var(--color-brand);
}

.site-menu-panel__group--links {
  display: grid;
  gap: 18px;
}

.btn,
.as-link {
  border: 0;
  background: transparent;
  color: inherit;
}

.btn__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 560;
  line-height: 1;
}

.btn--secondary .btn__text,
.btn--transparent .btn__text {
  background: transparent;
  color: var(--color-ink);
}

.btn:hover .btn__text {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: #fff;
}

.m-lang {
  position: relative;
}

.m-lang__list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 78px;
  padding: 6px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
  opacity: 0;
  visibility: hidden;
}

.m-lang:hover .m-lang__list,
.m-lang.is-open .m-lang__list {
  opacity: 1;
  visibility: visible;
}

.m-lang__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  border-radius: 6px;
  font-size: 0.88rem;
}

.m-lang__link:hover {
  background: #f4f1ea;
}

.icon-svg {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.icon-svg__svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.f-suggest__toggle,
.f-suggest__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-surface);
}

.f-suggest__holder {
  display: none;
}

.f-suggest.is-open .f-suggest__holder {
  position: fixed;
  inset: 0;
  z-index: 2147483645;
  display: block;
  padding: calc(var(--header-height) + 42px) var(--gutter) 42px;
  overflow: auto;
  background: rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(14px);
}

.search-is-open {
  overflow: hidden;
}

.f-suggest.is-open .f-suggest__holder .row-main {
  width: min(860px, 100%);
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--color-surface) 96%, transparent);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.f-suggest__inp-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.f-suggest__inp {
  width: 100%;
  min-height: 54px;
  padding: 0;
  color: var(--color-ink);
  font: 600 clamp(18px, 2vw, 24px)/1.2 var(--font-sans);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  outline: 0;
}

.f-suggest__content {
  position: relative;
  min-height: 72px;
}

.b-suggest--spotlight {
  display: grid;
  gap: 16px;
}

.b-suggest__group {
  display: grid;
  gap: 8px;
}

.b-suggest__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-muted);
  font: 600 12px/1.2 var(--font-sans);
  text-transform: uppercase;
}

.b-suggest__group-head a {
  color: var(--color-brand-dark);
  text-transform: none;
}

.b-suggest__group-title {
  color: inherit;
  font: inherit;
}

.b-suggest__list {
  display: grid;
  gap: 6px;
}

.b-suggest__item {
  display: grid;
  min-height: 72px;
  padding: 8px;
  grid-template-columns: 58px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.b-suggest__item:hover,
.b-suggest__item:focus-visible {
  background: color-mix(in srgb, var(--color-brand) 10%, transparent);
  border-color: color-mix(in srgb, var(--color-brand) 24%, transparent);
  outline: 0;
}

.b-suggest__img {
  display: block;
  width: 58px;
  height: 56px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--color-paper);
}

.b-suggest__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b-suggest__content {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.b-suggest__title,
.b-suggest__content small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.b-suggest__title {
  color: var(--color-ink);
  font: 600 15px/1.25 var(--font-sans);
}

.b-suggest__content small {
  color: var(--color-muted);
  font: 500 12px/1.2 var(--font-sans);
}

.b-suggest__item > i {
  color: var(--color-muted);
}

.b-suggest__show-all {
  display: flex;
  min-height: 48px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-brand-dark);
  border-top: 1px solid var(--color-line);
  font: 650 14px/1.2 var(--font-sans);
}

.b-suggest__show-all em {
  min-width: 34px;
  padding: 5px 8px;
  color: var(--color-surface);
  text-align: center;
  font-style: normal;
  background: var(--color-brand-dark);
  border-radius: 999px;
}

.b-suggest__empty {
  padding: 18px 0;
  color: var(--color-muted);
  font: 500 15px/1.4 var(--font-sans);
}

@media (max-width: 640px) {
  .f-suggest.is-open .f-suggest__holder {
    padding: calc(var(--header-height) + 16px) 12px 18px;
  }

  .f-suggest.is-open .f-suggest__holder .row-main {
    padding: 14px;
    border-radius: 10px;
  }

  .f-suggest__inp {
    min-height: 48px;
    font-size: 18px;
  }

  .b-suggest__item {
    grid-template-columns: 50px minmax(0, 1fr) 20px;
    gap: 10px;
  }

  .b-suggest__img {
    width: 50px;
    height: 50px;
  }
}

.main {
  min-height: 60vh;
}

.hero-landing {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  padding: clamp(72px, 8vw, 116px) 0 clamp(76px, 9vw, 132px);
  background:
    radial-gradient(circle at 86% 34%, rgba(184, 132, 53, 0.24), transparent 19rem),
    radial-gradient(circle at 64% 78%, rgba(36, 72, 60, 0.16), transparent 24rem);
  color: var(--color-ink);
}

.hero-landing::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 118px;
  border-top: 2px solid rgba(36, 72, 60, 0.28);
  border-top-left-radius: 110px;
  transform: translateX(54%);
  pointer-events: none;
}

.hero-landing__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: center;
}

.hero-landing__copy {
  max-width: 780px;
}

.hero-landing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--color-brand);
  font-size: 0.84rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-landing__eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero-landing__title {
  max-width: 820px;
  font-size: 3rem;
  font-weight: 620;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-landing__text {
  max-width: 590px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.hero-landing__primary .btn__text {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: #fff;
}

.hero-landing__primary:hover .btn__text {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.hero-landing__link {
  color: var(--color-brand);
  font-weight: 680;
}

.hero-landing__link::after {
  content: " ->";
}

.hero-landing__visual {
  position: relative;
  min-height: clamp(420px, 52vw, 660px);
}

.hero-landing__visual::before,
.hero-landing__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-landing__visual::before {
  inset: 5% 1% 4% 11%;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.6) 42%, rgba(235, 229, 215, 0.7) 68%, transparent 69%),
    radial-gradient(circle at 34% 30%, rgba(139, 193, 174, 0.32), transparent 42%);
  box-shadow: inset 0 0 0 1px rgba(36, 72, 60, 0.12), 0 38px 100px rgba(36, 72, 60, 0.15);
}

.hero-landing__visual::after {
  right: -6%;
  bottom: 3%;
  width: 290px;
  height: 290px;
  background: rgba(184, 132, 53, 0.22);
  filter: blur(50px);
}

.hero-landing__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(26px, 6vw, 72px);
}

.hero-landing__image-wrap img {
  max-height: clamp(320px, 48vw, 610px);
  object-fit: contain;
  filter: drop-shadow(0 38px 44px rgba(17, 17, 17, 0.22));
}

.hero-landing__badge {
  position: absolute;
  top: 8%;
  right: 3%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 104px;
  aspect-ratio: 1;
  border: 1px solid rgba(36, 72, 60, 0.32);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.78);
  color: var(--color-brand);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-landing__product {
  position: absolute;
  right: 9%;
  bottom: 6%;
  z-index: 2;
  max-width: 260px;
  padding: 14px 18px;
  border: 1px solid rgba(36, 72, 60, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-brand);
  font-size: 0.92rem;
  font-weight: 720;
  box-shadow: 0 20px 60px rgba(36, 72, 60, 0.12);
  backdrop-filter: blur(14px);
}

.b-carousel,
.b-carousel .embla,
.b-carousel .embla__viewport,
.b-carousel .embla__container,
.b-carousel__carousel,
.b-carousel__item,
.b-carousel__img,
.b-carousel__main,
.b-carousel__title,
.b-carousel__title-bottom,
.b-carousel .embla__btn,
.b-carousel .embla__dots {
  display: none;
}

.main > .row-main {
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.home-content {
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  /* padding-block: clamp(44px, 7vw, 96px); */
}

.home-category-carousel {
  width: 100%;
  margin-inline: auto;
  padding: clamp(44px, 5.8vw, 82px) 0 clamp(28px, 3.6vw, 50px);
  --category-fade-left: 0;
  --category-fade-right: 1;
}

.home-category-carousel__title {
  margin-bottom: clamp(20px, 2.4vw, 28px);
  color: var(--color-ink);
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
}

.home-category-carousel__shell {
  position: relative;
}

.home-category-carousel__shell::before,
.home-category-carousel__shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(28px, 5vw, 72px);
  pointer-events: none;
  transition: opacity 160ms ease;
}

.home-category-carousel__shell::before {
  left: 0;
  background: linear-gradient(90deg, #fff 8%, rgba(255, 255, 255, 0));
  opacity: var(--category-fade-left);
}

.home-category-carousel__shell::after {
  right: 0;
  background: linear-gradient(270deg, #fff 8%, rgba(255, 255, 255, 0));
  opacity: var(--category-fade-right);
}

.home-category-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.home-category-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.home-category-carousel__track {
  display: flex;
  gap: 8px;
  min-width: max-content;
  padding-inline: clamp(4px, 0.8vw, 12px);
}

.home-category-carousel__item {
  flex: 0 0 clamp(250px, 19.4vw, 304px);
  min-width: 0;
}

.home-category-card {
  display: grid;
  gap: 14px;
  color: var(--color-ink);
}

.home-category-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 0.72;
  background: #f2f0eb;
}

.home-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.home-category-card:hover .home-category-card__media img {
  transform: scale(1.035);
}

.home-category-card__title {
  display: block;
  min-height: 1.2em;
  overflow: hidden;
  color: var(--color-ink);
  font-size: clamp(0.95rem, 1.35vw, 1.32rem);
  font-weight: 300;
  line-height: 1.16;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-category-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-ink);
  font-size: 20px;
  transform: translateY(-50%);
}

.home-category-carousel__btn--prev {
  left: clamp(12px, 2.5vw, 38px);
}

.home-category-carousel__btn--next {
  right: clamp(12px, 2.5vw, 38px);
}

.home-category-carousel__btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.home-category-carousel__progress {
  width: min(58vw, 640px);
  height: 1px;
  margin: clamp(28px, 3.4vw, 38px) auto 0;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.14);
  transform-origin: left center;
}

.home-category-carousel__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-ink);
  transform: scaleX(0);
  transform-origin: left center;
}

.home-lookbook {
  /*padding: clamp(30px, 4.2vw, 66px) 0 clamp(44px, 6vw, 88px);*/
  --lookbook-intro-progress: 1;
  --lookbook-stage-progress: 1;
}

.home-lookbook__intro {
  width: min(100%, 760px);
  margin: 0 auto clamp(30px, 4vw, 48px);
  color: var(--color-ink);
  text-align: center;
  opacity: var(--lookbook-intro-progress);
  transform: translate3d(0, calc((1 - var(--lookbook-intro-progress)) * 42px), 0);
  will-change: opacity, transform;
}

.home-lookbook__eyebrow {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.2;
}

.home-lookbook__title {
  font-size: clamp(1.7rem, 3vw, 2.48rem);
  font-weight: 650;
  line-height: 1.08;
}

.home-lookbook__links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 42px);
  margin-top: clamp(18px, 2.4vw, 26px);
  justify-content: center;
}

.home-lookbook__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 380;
}

.home-lookbook__links i {
  font-size: 20px;
}

.home-lookbook__stage {
  position: relative;
  overflow: hidden;
  background: #eee9df;
  aspect-ratio: 2.22;
  opacity: var(--lookbook-stage-progress);
  transform:
    translate3d(0, calc((1 - var(--lookbook-stage-progress)) * 58px), 0)
    scale(calc(0.985 + (var(--lookbook-stage-progress) * 0.015)));
  will-change: opacity, transform;
}

.home-lookbook__stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-lookbook__pin {
  position: absolute;
  top: var(--pin-y);
  left: var(--pin-x);
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--color-ink);
  transform: translate(-50%, -50%);
}

.home-lookbook__dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.22);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.18);
  transition: transform 160ms ease, background 160ms ease;
}

.home-lookbook__dot::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
}

.home-lookbook__card {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  width: min(300px, calc(100vw - 44px));
  padding: 10px 12px 10px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.home-lookbook__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.12;
  background: #f2f0eb;
}

.home-lookbook__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-lookbook__meta {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
}

.home-lookbook__product {
  overflow: hidden;
  font-size: 0.92rem;
  font-weight: 430;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-lookbook__label {
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.home-lookbook__pin:hover .home-lookbook__dot,
.home-lookbook__pin:focus-visible .home-lookbook__dot {
  background: rgba(17, 17, 17, 0.34);
  transform: scale(1.06);
}

.home-lookbook__pin:hover .home-lookbook__card,
.home-lookbook__pin:focus-visible .home-lookbook__card {
  opacity: 1;
  transform: translate(-50%, 0);
}

.home-spaces {
  padding: clamp(34px, 5.4vw, 82px) 0 clamp(52px, 4vw, 58px);
}

.home-spaces__intro {
  width: min(100%, 760px);
  margin: 0 auto clamp(34px, 4.8vw, 64px);
  color: var(--color-ink);
  text-align: center;
}

.home-spaces__title {
  font-size: clamp(1.9rem, 3vw, 2.52rem);
  font-weight: 650;
  line-height: 1.08;
}

.home-spaces__summary {
  margin-top: 8px;
  color: #4e4a43;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.35;
}

.home-spaces__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
}

.home-spaces__card {
  min-width: 0;
}

.home-spaces__media {
  display: block;
  overflow: hidden;
  background: #eee9df;
  aspect-ratio: 1.52;
}

.home-spaces__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.home-spaces__media:hover img,
.home-spaces__media:focus-visible img {
  transform: scale(1.025);
}

.home-spaces__body {
  padding-top: 12px;
  color: var(--color-ink);
}

.home-spaces__body h3 {
  font-size: clamp(1.1rem, 1.45vw, 1.26rem);
  font-weight: 650;
  line-height: 1.15;
}

.home-spaces__body p {
  margin-top: 4px;
  color: #3f3a34;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  line-height: 1.36;
}

.home-spaces__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 420;
}

.home-spaces__link i {
  font-size: 18px;
}

.js .home-spaces__intro,
.js .home-spaces__card {
  will-change: transform, opacity;
}

.js .home-spaces__intro {
  opacity: var(--spaces-intro-progress, 1);
  transform: translate3d(0, calc((1 - var(--spaces-intro-progress, 1)) * 44px), 0);
}

.js .home-spaces__card:nth-child(odd) {
  opacity: var(--spaces-card-progress, 1);
  transform: translate3d(calc((1 - var(--spaces-card-progress, 1)) * -72px), 0, 0);
}

.js .home-spaces__card:nth-child(even) {
  opacity: var(--spaces-card-progress, 1);
  transform: translate3d(calc((1 - var(--spaces-card-progress, 1)) * 72px), 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .js .home-spaces__intro,
  .js .home-spaces__card,
  .js .home-main-categories__intro,
  .js .home-main-categories__item,
  .js .home-architect-panel,
  .js .home-lookbook__intro,
  .js .home-lookbook__stage,
  .js .c-products-carousel__head,
  .js .c-products-carousel__shell,
  .js .c-news__cell {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.home-chair-showcase {
  display: grid;
  place-items: end center;
  min-height: clamp(360px, 44vw, 720px);
  padding: clamp(24px, 4vw, 64px) 0 0;
  overflow: hidden;
  background: #fff;
}

.home-chair-showcase img {
  width: min(100%, 1760px);
  max-height: clamp(340px, 42vw, 690px);
  object-fit: contain;
  object-position: center bottom;
}

.home-main-categories {
  padding: clamp(26px, 4vw, 54px) 0 clamp(40px, 6vw, 78px);
  background: #ffffff;
}

.home-main-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  border-left: 1px solid rgba(17, 17, 17, 0.2);
}

.home-main-categories__item {
  min-width: 0;
  border-right: 1px solid rgba(17, 17, 17, 0.2);
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  will-change: opacity, transform;
}

.js .home-main-categories__item {
  opacity: var(--main-categories-card-progress, 1);
  transform: translate3d(0, calc((1 - var(--main-categories-card-progress, 1)) * 28px), 0);
}

.home-main-category-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  overflow: hidden;
  min-height: clamp(218px, 19vw, 276px);
  padding: clamp(18px, 2vw, 28px);
  background: #fff;
  color: var(--color-ink);
  isolation: isolate;
  transition: background-color 260ms ease, color 260ms ease;
}

.home-main-category-card:hover,
.home-main-category-card:focus-visible {
  background: var(--color-ink);
  color: #fff;
}

.home-main-category-card__index {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(17, 17, 17, 0.36);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 260ms ease;
}

.home-main-category-card:hover .home-main-category-card__index,
.home-main-category-card:focus-visible .home-main-category-card__index {
  color: rgba(255, 255, 255, 0.52);
}

.home-main-category-card__icon {
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: min(122px, 62%);
  aspect-ratio: 1;
}

.home-main-category-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transition: filter 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-main-category-card:hover .home-main-category-card__icon img,
.home-main-category-card:focus-visible .home-main-category-card__icon img {
  filter: invert(1);
  transform: translateY(-5px);
}

.home-main-category-card__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.home-main-category-card__label {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.05;
}

.home-main-category-card__link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: currentColor;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.home-main-category-card__link i {
  font-size: 1rem;
  transition: transform 200ms ease;
}

.home-main-category-card:hover .home-main-category-card__link i,
.home-main-category-card:focus-visible .home-main-category-card__link i {
  transform: translate3d(3px, -3px, 0);
}

.home-project-stack {
  --project-card-height: clamp(380px, 56vh, 640px);
  --project-stack-step: clamp(92px, 13vh, 148px);
  --project-stack-gap: clamp(14px, 1.45vw, 24px);
  padding: clamp(46px, 7vw, 118px) 0 clamp(64px, 9vw, 140px);
  background: #ffffff;
}

.home-project-stack__intro {
  width: min(100%, 900px);
  margin: 0 auto clamp(28px, 4vw, 56px);
  text-align: center;
}

.home-project-stack__intro p {
  margin: 0 0 8px;
  color: var(--color-brand-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-project-stack__intro h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.home-project-stack__cards {
  width: 100%;
}

.home-project-stack__stage {
  display: block;
}

.home-project-stack__card {
  position: sticky;
  top: clamp(104px, 13vh, 148px);
  z-index: calc(10 + var(--stack-index));
  padding-top: calc(var(--stack-index) * var(--project-stack-gap));
  margin: 0 0 calc(var(--project-stack-step) - var(--project-card-height));
  opacity: 1;
  transform: none;
}

.home-project-stack__card:last-child {
  margin-bottom: 0;
}

.home-project-stack__link {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: var(--project-card-height);
  border-radius: var(--radius-panel);
  background: #161412;
  box-shadow: 0 42px 120px rgba(17, 17, 17, 0.14);
  color: #ffffff;
  transform: scale(calc(1 - (var(--stack-index) * 0.012)));
  transform-origin: center top;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.home-project-stack__link img {
  width: 100%;
  height: var(--project-card-height);
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(1) brightness(0.9);
}

.home-project-stack__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.16) 46%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.46));
  opacity: 0.62;
}

.home-project-stack__content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 12px;
  width: min(880px, 78%);
  text-align: center;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
}

.home-project-stack__meta {
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 620;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-project-stack__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.home-project-stack__cta {
  position: absolute;
  right: clamp(22px, 4vw, 70px);
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(70px, 9vw, 118px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  transform: translateY(-50%);
}

.home-project-stack__spacer {
  height: calc(var(--project-card-height) * 0.72);
}

.chair-viewer-section {
  position: relative;
  width: 100vw;
  height: 120vh;
  min-height: 760px;
  margin-block: clamp(72px, 10vw, 150px);
  margin-left: calc(50% - 50vw);
  overflow: clip;
  background: #ffffff;
  isolation: isolate;
}

.chair-viewer-section__stage {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  min-height: 620px;
}

.chair-viewer-section__canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: 0;
}

.catalog-page {
  background: #fff;
  color: var(--color-ink);
}

.catalog-hero {
  position: relative;
  display: block;
  min-height: clamp(240px, 20vw, 320px);
  padding: clamp(56px, 8vw, 112px) 0 clamp(46px, 5vw, 72px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  overflow: hidden;
}

.catalog-hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  align-content: end;
  max-width: min(52%, 680px);
}

.catalog-hero__back,
.catalog-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
}

.catalog-hero h1 {
  font-family: var(--font-body);
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.98;
}

.catalog-hero p {
  max-width: 520px;
  color: var(--color-body-text);
  font-family: var(--font-body);
}

.catalog-hero__banner {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(49vw, 780px);
  min-width: 0;
  height: auto;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 14%, rgba(0, 0, 0, 0.48) 42%, #000 72%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 14%, rgba(0, 0, 0, 0.48) 42%, #000 72%);
}

.catalog-hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.catalog-subcats {
  position: relative;
  min-width: 0;
}

.catalog-subcats__viewport {
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-subcats__viewport::-webkit-scrollbar {
  display: none;
}

.catalog-subcats__track {
  display: flex;
  gap: 16px;
  min-width: max-content;
}

.catalog-subcat-card {
  display: grid;
  gap: 8px;
  width: clamp(150px, 12vw, 190px);
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
}

.catalog-subcat-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 4px;
  background: #f2f0eb;
}

.catalog-subcat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.catalog-subcat-card:hover img,
.catalog-subcat-card.is-active img {
  transform: scale(1.035);
}

.catalog-subcat-card.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.catalog-subcats__nav {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-ink);
  transform: translateY(-50%);
}

.catalog-subcats__nav--prev {
  left: 0;
}

.catalog-subcats__nav--next {
  right: 0;
}

.catalog-subcats__nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.catalog-toolbar {
  position: sticky;
  top: 76px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 12px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.catalog-toolbar__filters,
.catalog-toolbar__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.catalog-toolbar__filters {
  flex-wrap: wrap;
}

.catalog-toolbar__meta {
  margin-left: auto;
  color: var(--color-muted);
  font-family: var(--font-heading);
  font-size: 0.94rem;
}

.catalog-filter-btn,
.catalog-sort {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: var(--radius-control);
  background: rgb(255 255 255 / 50%);
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 400;
}

.catalog-filter-btn--primary,
.catalog-filter-btn.is-active {
  border-color: #20382f;
  background: #20382f;
  color: #fff;
}

.catalog-sort {
  padding-right: 12px;
}

.catalog-sort select {
  border: 0;
  background: transparent;
  color: inherit;
  outline: 0;
}

.catalog-products {
  padding: 14px 0 clamp(64px, 8vw, 120px);
}

.catalog-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px) clamp(14px, 1.6vw, 24px);
}

.catalog-product-card {
  display: grid;
  gap: 11px;
  min-width: 0;
}

.catalog-product-card.is-hidden {
  display: none;
}

.catalog-product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f4f4f4;
}

.catalog-product-card__media img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  transition: transform 420ms ease;
}

.catalog-product-card:hover img {
  transform: scale(1.035);
}

.catalog-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 3px 9px;
  border-radius: 4px;
  background: #f1e4dc;
  color: #7b4b32;
  font-size: 0.78rem;
  display: none;
}

.catalog-product-card h2 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

.catalog-products__empty,
.catalog-loadmore {
  color: var(--color-muted);
  text-align: center;
}

.catalog-loadmore {
  display: grid;
  place-items: center;
  gap: 14px;
  margin-top: clamp(44px, 6vw, 76px);
}

.catalog-loadmore p {
  font-family: var(--font-heading);
  color: var(--color-muted);
}

.catalog-loadmore button {
  min-width: 200px;
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
}

.catalog-loadmore button:disabled {
  background: #999;
  cursor: default;
}

.catalog-filter-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 240ms;
}

.catalog-filter-panel.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.catalog-filter-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity 180ms ease;
}

.catalog-filter-panel.is-open .catalog-filter-panel__backdrop {
  opacity: 1;
}

.catalog-filter-panel__drawer {
  position: absolute;
  inset: 0 0 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  background: #fff;
  color: var(--color-ink);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.catalog-filter-panel.is-open .catalog-filter-panel__drawer {
  transform: translateX(0);
}

.catalog-filter-panel header,
.catalog-filter-panel footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
}

.catalog-filter-panel header h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
}

.catalog-filter-panel header button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-size: 24px;
}

.catalog-filter-panel__content {
  overflow-y: auto;
  padding: 0 24px 24px;
}

.catalog-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.catalog-filter-chip.is-active {
  border-color: #20382f;
  background: #20382f;
  color: #fff;
}

.catalog-filter-group {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.catalog-filter-group:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.catalog-filter-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  list-style: none;
}

.catalog-filter-group summary::-webkit-details-marker {
  display: none;
}

.catalog-filter-group[open] summary i {
  transform: rotate(180deg);
}

.catalog-filter-group div {
  display: grid;
  gap: 8px;
  padding: 0 0 18px 14px;
}

.catalog-filter-group a {
  color: var(--color-muted);
  font-family: var(--font-heading);
  font-size: 0.94rem;
}

.catalog-filter-group a.is-active {
  color: var(--color-ink);
  font-weight: 500;
}

.catalog-filter-panel footer {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.catalog-filter-panel footer a,
.catalog-filter-panel footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.catalog-filter-panel footer a {
  width: 38%;
  border: 1px solid rgba(17, 17, 17, 0.2);
}

.catalog-filter-panel footer button {
  width: 58%;
  border: 0;
  background: var(--color-ink);
  color: #fff;
}

.has-catalog-filter {
  overflow: hidden;
}

@media (max-width: 820px) {
  .home-category-carousel {
    padding: 58px 0 32px;
  }

  .home-category-carousel__title {
    margin-bottom: 20px;
    padding-inline: 18px;
    text-align: left;
  }

  .home-category-carousel__track {
    gap: 8px;
    padding-inline: 18px;
  }

  .home-category-carousel__item {
    flex-basis: calc((100vw - 52px) / 3);
  }

  .home-category-card {
    gap: 10px;
  }

  .home-category-card__media {
    aspect-ratio: 0.72;
  }

  .home-category-card__title {
    font-size: clamp(0.86rem, 3.4vw, 1.05rem);
    font-weight: 650;
  }

  .home-category-carousel__btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .home-category-carousel__btn--prev {
    left: 8px;
  }

  .home-category-carousel__btn--next {
    right: 8px;
  }

  .home-category-carousel__progress {
    width: calc(100% - 36px);
    margin-top: 28px;
  }

  .home-lookbook {
    padding: 38px 0 56px;
  }

  .home-lookbook__intro {
    margin-bottom: 24px;
  }

  .home-lookbook__links {
    gap: 10px 18px;
  }

  .home-lookbook__stage {
    aspect-ratio: 0.88;
  }

  .home-lookbook__card {
    grid-template-columns: 68px minmax(0, 1fr);
    width: min(270px, calc(100vw - 34px));
  }

  .home-spaces {
    padding: 38px 0 62px;
  }

  .home-spaces__intro {
    margin-bottom: 26px;
    text-align: left;
  }

  .home-spaces__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-spaces__media {
    aspect-ratio: 1.22;
  }

  .home-main-categories {
    padding: 32px 0 48px;
  }

  .home-main-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-main-category-card {
    min-height: 198px;
    padding: 16px;
  }

  .home-main-category-card__label {
    font-size: 1.08rem;
  }

  .home-main-category-card__link {
    font-size: 0.7rem;
  }

  .home-main-category-card__icon {
    width: min(92px, 64%);
  }

  .c-products-carousel {
    width: 100%;
    padding: 44px 0 68px;
  }

  .c-products-carousel__head {
    width: min(100% - 36px, 760px);
    margin-bottom: 28px;
    padding-inline: 0;
    text-align: center;
  }

  .c-products-carousel__title {
    font-size: clamp(1.6rem, 8vw, 2.3rem);
  }

  .c-products-carousel__track {
    gap: 12px;
    padding-inline: 18px;
  }

  .c-products-carousel__cell {
    flex-basis: calc((100vw - 48px) / 2);
  }

  .c-products-carousel__btn {
    width: 36px;
    height: 36px;
  }

  .c-products-carousel__btn--prev {
    left: 8px;
  }

  .c-products-carousel__btn--next {
    right: 8px;
  }

  .c-products-carousel__progress {
    width: calc(100% - 36px);
  }

  .home-architect-panel {
    min-height: 360px;
    margin: 30px 0 46px;
    background-position: center;
  }

  .home-architect-panel__content {
    width: calc(100% - 32px);
  }

  .home-architect-panel__title {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .home-architect-panel__text {
    max-width: 96%;
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.34;
  }

  .home-architect-panel__actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  .home-architect-panel__btn {
    width: 100%;
    min-height: 38px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .c-news {
    width: 100%;
    padding: 42px 18px 62px;
  }

  .c-news__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-chair-showcase {
    min-height: 320px;
    padding-top: 22px;
  }

  .home-chair-showcase img {
    width: min(150vw, 980px);
    max-width: none;
    max-height: 310px;
  }

  .home-project-stack {
    --project-card-height: 360px;
    --project-stack-step: 82px;
    --project-stack-gap: 10px;
    padding: 44px 0 70px;
  }

  .home-project-stack__intro {
    margin-bottom: 24px;
    text-align: left;
  }

  .home-project-stack__card,
  .home-project-stack__link,
  .home-project-stack__link img {
    min-height: 360px;
    height: 360px;
  }

  .home-project-stack__card {
    top: 96px;
    padding-top: calc(var(--stack-index) * var(--project-stack-gap));
    margin-bottom: calc(var(--project-stack-step) - var(--project-card-height));
    transform: none;
  }

  .home-project-stack__card:last-child {
    margin-bottom: 0;
  }

  .home-project-stack__content {
    top: 50%;
    left: 50%;
    bottom: auto;
    width: calc(100% - 36px);
  }

  .home-project-stack__title {
    font-size: clamp(2rem, 12vw, 3.45rem);
  }

  .home-project-stack__cta {
    top: 22px;
    right: 18px;
    width: 58px;
    transform: none;
  }

  .chair-viewer-section {
    min-height: 660px;
    margin-block: 48px 70px;
  }

  .chair-viewer-section__stage {
    min-height: 560px;
  }

  .catalog-hero {
    display: grid;
    grid-template-columns: 1fr;
    padding: 40px 0 34px;
  }

  .catalog-hero__copy {
    max-width: 100%;
  }

  .catalog-hero h1 {
    font-size: 3rem;
  }

  .catalog-hero__banner {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    height: 170px;
    min-height: 0;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.34) 28%, #000 62%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.34) 28%, #000 62%);
  }

  .catalog-subcat-card {
    width: 132px;
  }

  .catalog-toolbar {
    top: 72px;
    display: grid;
    padding-block: 12px;
  }

  .catalog-toolbar__meta {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .catalog-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
}

.c-products-carousel,
.c-std {
  position: relative;
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.c-products-carousel {
  --products-head-progress: 1;
  --products-body-progress: 1;
  padding-block: clamp(36px, 6vw, 82px);
}

.home-content > .c-products-carousel,
.home-content > .c-news {
  width: 100%;
}

.c-std::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(44vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 72, 60, 0.13), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.c-products-carousel__title,
.c-std::after {
  color: var(--color-ink);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 680;
  line-height: 1;
}

.c-products-carousel__title {
  margin: 0;
}

.c-products-carousel__head {
  width: min(100%, 760px);
  margin: 0 auto clamp(34px, 4.8vw, 64px);
  color: var(--color-ink);
  text-align: center;
  opacity: var(--products-head-progress);
  transform: translate3d(0, calc((1 - var(--products-head-progress)) * 38px), 0);
  will-change: opacity, transform;
}

.c-products-carousel__controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.c-products-carousel__shell {
  position: relative;
  opacity: var(--products-body-progress);
  transform: translate3d(0, calc((1 - var(--products-body-progress)) * 52px), 0);
  will-change: opacity, transform;
}

.c-products-carousel__viewport {
  overflow-x: auto;
  scrollbar-width: none;
}

.c-products-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.c-products-carousel__track {
  display: flex;
  gap: clamp(14px, 1.7vw, 24px);
  scroll-snap-type: x mandatory;
  padding: 0 0 6px;
}

.c-products-carousel__carousel {
  position: relative;
}

.c-products-carousel__btn {
  position: absolute;
  top: 50%;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.12);
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.c-products-carousel__btn--prev {
  left: 12px;
}

.c-products-carousel__btn--next {
  right: 12px;
}

.c-products-carousel__btn:hover {
  border-color: rgba(17, 17, 17, 0.5);
  background: #ffffff;
  transform: translateY(-50%) scale(1.02);
}

.c-products-carousel__btn.is-disabled {
  opacity: 0.38;
  cursor: default;
  transform: translateY(-50%);
}

.c-products-carousel__cell {
  flex: 0 0 clamp(230px, 23vw, 354px);
  min-width: 0;
  scroll-snap-align: start;
}

.c-products-carousel__cell .catalog-product-card__media {
  aspect-ratio: 1;
}

.c-products-carousel__progress {
  width: min(42vw, 620px);
  height: 1px;
  margin: clamp(24px, 3vw, 38px) auto 0;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.14);
  transform-origin: left center;
}

.c-products-carousel__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.72);
  transform: scaleX(0);
  transform-origin: left center;
}

.c-products-carousel__empty {
  color: var(--color-muted);
  font-family: var(--font-body);
  text-align: center;
}

.home-architect-panel {
  --architect-panel-progress: 1;
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(300px, 30vw, 460px);
  margin-block: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    var(--architect-panel-image, none) center / cover no-repeat,
    linear-gradient(135deg, #24211d, #75695c);
  color: #ffffff;
  transform:
    translate3d(0, calc((1 - var(--architect-panel-progress)) * 52px), 0)
    scale(calc(0.985 + (var(--architect-panel-progress) * 0.015)));
  opacity: var(--architect-panel-progress);
  will-change: opacity, transform;
}

.home-architect-panel__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42) 72%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.34));
}

.home-architect-panel__content {
  display: grid;
  justify-items: center;
  width: min(760px, calc(100% - 44px));
  text-align: center;
}

.home-architect-panel__title {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.02;
  text-wrap: balance;
}

.home-architect-panel__text {
  max-width: 670px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.02vw, 1.05rem);
  line-height: 1.38;
  text-wrap: balance;
}

.home-architect-panel__actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(18px, 2.4vw, 28px);
}

.home-architect-panel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 190px;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-architect-panel__btn--primary {
  background: #ffffff;
  color: var(--color-ink);
}

.home-architect-panel__btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.home-architect-panel__btn:hover,
.home-architect-panel__btn:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
}

.b-product {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(36, 72, 60, 0.1);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 86% 18%, rgba(184, 132, 53, 0.16), transparent 42%);
  box-shadow: 0 22px 70px rgba(36, 72, 60, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.b-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 86px rgba(36, 72, 60, 0.14);
}

.b-product__img-wrap {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.b-product__img {
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(17, 17, 17, 0.14));
  transition: transform 220ms ease;
}

.b-product:hover .b-product__img {
  transform: translateY(-6px);
}

.b-product__title {
  color: var(--color-brand);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 720;
}

.c-std {
  padding-block: clamp(24px, 6vw, 76px);
}

.c-std::before {
  left: -14vw;
  bottom: 0;
  background: radial-gradient(circle, rgba(184, 132, 53, 0.14), transparent 66%);
}

.c-std__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.c-news {
  --news-progress: 1;
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
  padding-block: clamp(28px, 5vw, 72px);
}

.c-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.4vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-news__cell {
  min-width: 0;
  padding: 0;
  background: none;
  opacity: var(--news-card-progress, var(--news-progress));
  transform: translate3d(0, calc((1 - var(--news-card-progress, var(--news-progress))) * 46px), 0);
  will-change: opacity, transform;
}

.b-news {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 100%;
  background: transparent;
}

.b-news__title {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  font-weight: 700;
  line-height: 1.14;
}

.b-news__img {
  aspect-ratio: 4 / 3;
  margin: 0 0 6px;
  overflow: hidden;
  background: #f2eee7;
}

.b-news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.b-news:hover .b-news__img img {
  transform: scale(1.035);
}

.b-news__annot {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.02rem);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.b-news__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin-top: 6px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.b-news__link i {
  font-size: 1rem;
}

@media (max-width: 1100px) and (min-width: 821px) {
  .c-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.b-newsletter-visit {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
  padding-block: clamp(34px, 7vw, 92px);
}

.b-newsletter-visit > .grid,
.b-visit__grid,
.f-std > .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.f-std,
.b-visit {
  min-height: 100%;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(36, 72, 60, 0.1);
  border-radius: 4px;
  background:
    radial-gradient(circle at 92% 12%, rgba(184, 132, 53, 0.16), transparent 18rem),
    #fff;
}

.f-std__title,
.f-std__head,
.b-visit__title {
  color: var(--color-brand);
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 620;
  line-height: 1;
}

.inp-label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 620;
}

.inp-text {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: #fff;
}

.f-std__inp {
  margin-top: 16px;
}

.b-visit__img {
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.b-visit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-std__item:first-child,
.c-std__item:last-child {
  grid-column: span 2;
}

.b-std {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-surface);
  box-shadow: 0 24px 80px rgba(36, 72, 60, 0.1);
}

.b-std__img {
  position: absolute;
  inset: 0;
}

.b-std__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 26%, rgba(10, 16, 13, 0.54));
}

.b-std__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.b-std:hover .b-std__img img {
  transform: scale(1.04);
}

.b-std__wrapper {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.b-std__title {
  color: #fff;
  font-size: clamp(1.4rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.footer {
  margin-top: clamp(56px, 8vw, 120px);
  border-top: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 86% 14%, rgba(184, 132, 53, 0.18), transparent 24rem),
    #f1eee6;
  color: var(--color-ink);
}

.footer .row-main {
  padding-block: clamp(34px, 6vw, 72px);
}

.b-social__title,
.footer__title {
  margin-bottom: 18px;
  color: var(--color-brand);
  font-size: 1rem;
  font-weight: 650;
}

.b-social__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.b-social__item img {
  width: 18px;
  height: 18px;
}

.footer__main {
  margin-top: 32px;
}

.footer_copy_text {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.site-footer {
  margin-top: clamp(56px, 8vw, 120px);
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 72px 72px;
  color: var(--color-ink);
}

.site-footer > .row-main {
  padding-block: clamp(42px, 6vw, 86px) 24px;
}

.site-footer__mast {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(280px, 0.58fr);
  gap: clamp(30px, 7vw, 116px);
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 92px);
}

.site-footer__mast p {
  margin: 0;
  color: rgba(17, 17, 17, 0.54);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__mast h2 {
  max-width: 680px;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(140px, 0.45fr) minmax(150px, 0.5fr) minmax(190px, 0.62fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: start;
}

.site-footer__logo {
  display: inline-flex;
  width: fit-content;
}

.site-footer__logo img {
  width: clamp(128px, 10vw, 168px);
  height: auto;
}

.site-footer__brand p {
  max-width: 540px;
  margin: 20px 0 0;
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.45;
}

.site-footer__social {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.site-footer__social-label {
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
}

.site-footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__social-item {
  margin: 0;
  padding: 0;
  background: none;
}

.site-footer__social-list a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: var(--color-ink);
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-footer__social-list a:hover,
.site-footer__social-list a:focus-visible {
  border-color: var(--color-ink);
  background: #fff;
  transform: translateY(-2px);
}

.site-footer__social-list i {
  color: currentColor;
  font-size: 1.12rem;
  line-height: 1;
}

.site-footer__title {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__list {
  display: grid;
  gap: 10px;
}

.site-footer__link {
  color: rgba(17, 17, 17, 0.72);
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.3;
  transition: color 180ms ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: clamp(36px, 6vw, 72px);
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  line-height: 1.35;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__meta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.site-footer__meta-links a {
  color: rgba(17, 17, 17, 0.62);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer__meta-links a:hover,
.site-footer__meta-links a:focus-visible {
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.u-vhide,
.body-loader__loader,
.block-loader__loader {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 1024px) {
  .site-footer__mast {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .header__inner {
    grid-template-columns: auto auto auto;
  }

  .header__menu {
    display: none;
  }

  .hero-landing__inner {
    grid-template-columns: 1fr;
  }

  .hero-landing__visual {
    min-height: 520px;
  }

  .c-std__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b-newsletter-visit > .grid,
  .b-visit__grid,
  .f-std > .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  .header__inner {
    gap: 12px;
    grid-template-columns: auto auto 1fr;
  }

  .header__link img {
    width: 112px;
  }

  .header__other {
    justify-self: end;
    gap: 6px;
  }

  .b-login {
    display: none;
  }

  .btn__text {
    min-height: 34px;
    padding-inline: 11px;
    font-size: 0.82rem;
  }

  .b-carousel__carousel,
  .embla,
  .embla__viewport,
  .embla__container,
  .b-carousel__item,
  .b-carousel__img,
  .b-carousel__main {
    min-height: 560px;
  }

  .b-carousel__title-bottom {
    margin-top: -86px;
  }

  .hero-landing {
    min-height: auto;
  }

  .hero-landing::after {
    display: none;
  }

  .hero-landing__title {
    font-size: 3rem;
  }

  .hero-landing__visual {
    min-height: 430px;
  }

  .hero-landing__badge {
    width: 82px;
  }

  .hero-landing__product {
    right: 4%;
    left: 4%;
    max-width: none;
  }

  .c-std__list {
    grid-template-columns: 1fr;
  }

  .c-std__item:first-child,
  .c-std__item:last-child {
    grid-column: auto;
  }
}

/* BoConcept-inspired video hero/header system, custom-built for Birenk. */
.header {
  position: fixed;
  right: 0;
  left: 0;
  min-height: 118px;
  border-bottom: 0px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--color-ink);
  box-shadow: none;
}

.header .row-main {
  width: calc(100% - clamp(32px, 6vw, 96px));
  max-width: none;
}

.header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(320px, 1fr) minmax(320px, 0.48fr);
  grid-template-rows: 58px 58px;
  grid-template-areas:
    "store logo logo tools"
    "menu menu nav tools";
  column-gap: clamp(22px, 3vw, 42px);
  min-height: 118px;
}

.header__store-link {
  grid-area: store;
  align-self: center;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 650;
}

.header__pin {
  position: relative;
  width: 15px;
  height: 19px;
  border: 1.5px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.header__pin::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.site-menu-toggle {
  grid-area: menu;
  align-self: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-menu-toggle span {
  width: 20px;
  height: 1.5px;
  background: currentColor;
}

.header__logo {
  grid-area: logo;
  align-self: center;
  justify-self: center;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.header__link img {
  width: 156px;
  max-height: 42px;
  object-fit: contain;
}

.header__menu {
  grid-area: nav;
  align-self: center;
  justify-self: start;
}

.m-main__list {
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 46px);
}

.m-main__link {
  min-height: 34px;
  font-size: 0.98rem;
  font-weight: 680;
  letter-spacing: 0;
}

.header__other {
  grid-area: tools;
  align-self: stretch;
  justify-self: stretch;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 16px;
  align-items: center;
}

.header__search {
  grid-column: 1;
  justify-self: stretch;
}

.f-suggest {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: min(35vw, 520px);
  padding-bottom: 9px;
  border-bottom: 1px solid currentColor;
}

.header-search-prompt {
  color: currentColor;
  font-size: 0.98rem;
  font-weight: 560;
}

.f-suggest__toggle,
.f-suggest__btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: currentColor;
}

.header__lang {
  grid-column: 2;
}

.header__login {
  grid-column: 3;
}

.b-login {
  margin: 0;
}

.header--colorize:not(.header--scrolled) {
  color: #fff;
}

.header--colorize:not(.header--scrolled) .btn__text,
.header--colorize:not(.header--scrolled) .m-lang__btn .btn__text {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
}

.header--colorize:not(.header--scrolled) .m-main__list--sub,
.header--colorize:not(.header--scrolled) .m-lang__list {
  color: var(--color-ink);
}

.header--scrolled {
  min-height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom-color: rgba(17, 17, 17, 0.1);
  background: rgba(255, 253, 248, 0.96);
  color: var(--color-ink);
  box-shadow: 0 18px 44px rgba(36, 72, 60, 0.09);
}

.header--scrolled .header__inner {
  grid-template-rows: 74px;
  grid-template-areas: "menu logo nav tools";
  min-height: 74px;
}

.header--scrolled .header__store-link {
  display: none;
}

.header--scrolled .header__logo {
  top: 50%;
  transform: translate(-50%, -50%);
}

.header--scrolled .header__link img {
  width: 128px;
}

.main {
  padding-top: 0;
}

.hero-landing--video {
  min-height: 100svh;
  padding: 0;
  background: #16120f;
  color: #fff;
}

.hero-landing--video::after {
  display: none;
}

.hero-landing__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-landing__media video,
.hero-landing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-landing__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.48)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 34%, rgba(0, 0, 0, 0.34));
}

.hero-landing__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  min-height: 100svh;
  padding-top: 150px;
  padding-bottom: clamp(70px, 11vh, 132px);
}

.hero-landing--video .hero-landing__copy {
  max-width: min(720px, 58vw);
  margin-left: auto;
  text-align: center;
}

.hero-landing--video .hero-landing__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.hero-landing--video .hero-landing__eyebrow::before {
  display: none;
}

.hero-landing--video .hero-landing__title {
  max-width: none;
  color: #fff;
  font-size: 3rem;
  font-weight: 760;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-landing--video .hero-landing__actions {
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.hero-landing--video .btn__text {
  min-width: 248px;
  min-height: 48px;
  border-radius: 3px;
  font-size: 0.94rem;
}

.hero-landing--video .hero-landing__primary .btn__text {
  border-color: #fff;
  background: #fff;
  color: #1d1a17;
}

.hero-landing--video .hero-landing__secondary .btn__text {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: auto auto 1fr auto;
    grid-template-areas:
      "store logo logo tools"
      "menu menu nav nav";
  }

  .header__other {
    grid-template-columns: auto auto auto;
  }

  .header__search {
    display: none;
  }
}

@media (max-width: 820px) {
  .header,
  .header--scrolled {
    min-height: 76px;
  }

  .header__inner,
  .header--scrolled .header__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 76px;
    grid-template-areas: "menu logo tools";
    min-height: 76px;
  }

  .header__store-link,
  .header__menu {
    display: none;
  }

  .header__logo {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .header__other {
    grid-template-columns: auto auto;
    gap: 8px;
  }

  .header__search {
    display: block;
  }

  .header-search-prompt {
    display: none;
  }

  .f-suggest {
    min-width: auto;
    border-bottom: 0;
  }

  .header__login {
    display: none;
  }

  .hero-landing__content {
    justify-content: center;
    padding-top: 108px;
    padding-bottom: 62px;
  }

  .hero-landing--video .hero-landing__copy {
    max-width: 100%;
  }

  .hero-landing--video .hero-landing__title {
    font-size: 3rem;
  }

  .hero-landing--video .hero-landing__actions {
    flex-direction: column;
  }

  .hero-landing--video .btn__text {
    width: min(82vw, 360px);
  }
}

/* Refined BoConcept-style header pass */
.header {
  font-family: var(--font-sans);
}

.header__inner {
  grid-template-columns: 96px auto minmax(120px, 1fr) auto;
  grid-template-rows: 58px 58px;
  grid-template-areas:
    "left logo logo tools"
    "nav nav nav nav";
  min-height: 116px;
}

.header__store-link,
.site-menu-toggle {
  grid-area: left;
  align-self: center;
  color: currentColor;
}

.header__store-link {
  justify-self: start;
}

.header__store-link span,
.site-menu-toggle span,
.header-search-prompt {
  display: none;
}

.site-menu-toggle {
  justify-self: start;
  margin-left: 42px;
}

.header__scrolled-brand {
  grid-area: brand;
  display: none;
  align-items: center;
  justify-self: start;
  min-width: 112px;
}

.header__scrolled-brand img {
      width: 122px;
    height: auto;
    margin-bottom: 14px;
}

.header-icon-link,
.site-menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  font-size: 22px;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
  grid-auto-flow: column;
  align-items: center;
}

/* About page */
.about-page {
  padding-bottom: clamp(72px, 8vw, 132px);
  background: #fff;
  color: var(--color-ink);
}

.about-hero {
  position: relative;
  min-height: min(760px, 92svh);
  overflow: hidden;
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.about-hero__media {
  position: absolute;
  inset: 0;
}

.about-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, transparent 34%, rgba(0, 0, 0, 0.56) 100%);
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 7vw, 120px);
  align-items: end;
  min-height: min(760px, 92svh);
  padding-top: clamp(130px, 14vw, 210px);
  padding-bottom: clamp(38px, 6vw, 82px);
}

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

.about-eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-eyebrow--dark {
  color: rgba(17, 17, 17, 0.54);
}

.about-hero h1,
.about-intro h2,
.about-workshop__content h2,
.about-section__head h2,
.about-cta h2 {
  font-family: var(--font-heading);
  font-weight: 650;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: 3rem;
  line-height: 0.89;
}

.about-hero__copy > p:not(.about-eyebrow) {
  max-width: 55ch;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.5;
}

.about-hero__actions,
.about-cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.about-hero__actions {
  margin-top: 30px;
}

.about-button,
.about-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius-control);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 560;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.about-button i,
.about-inline-link i {
  font-size: 18px;
}

.about-button--light {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.about-button--ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.about-button--dark {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: #fff;
}

.about-button:hover,
.about-button:focus-visible,
.about-inline-link:hover,
.about-inline-link:focus-visible {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: #fff;
}

.about-hero__facts {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.about-hero__facts div {
  min-height: 82px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.about-hero__facts dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero__facts dd {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 620;
  line-height: 1.05;
}

.about-section {
  padding-top: clamp(64px, 8vw, 122px);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 118px);
  align-items: start;
}

.about-intro h2,
.about-workshop__content h2,
.about-section__head h2,
.about-cta h2 {
  margin: 0;
  color: var(--color-text-strong);
  font-size: 4rem;
  line-height: 0.96;
}

.about-intro__body {
  display: grid;
  gap: 18px;
  max-width: 740px;
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: 1.14rem;
  line-height: 1.55;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 6vw, 86px);
  background: rgba(17, 17, 17, 0.14);
}

.about-principles article {
  min-height: 248px;
  padding: clamp(22px, 3vw, 36px);
  background: #fff;
}

.about-principles span {
  display: block;
  margin-bottom: 46px;
  color: rgba(17, 17, 17, 0.46);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 650;
}

.about-principles h3 {
  margin: 0;
  color: var(--color-text-strong);
  font-family: var(--font-heading);
  font-size: 1.34rem;
  font-weight: 650;
  line-height: 1.14;
}

.about-principles p,
.about-section__head p,
.about-workshop__content > p,
.about-cta p {
  color: var(--color-body-text);
  font-family: var(--font-body);
  line-height: 1.48;
}

.about-principles p {
  margin: 12px 0 0;
  font-size: 1rem;
}

.about-workshop {
  margin-top: clamp(72px, 9vw, 138px);
  padding: clamp(56px, 7vw, 104px) 0;
  background: #f5f2ec;
}

.about-workshop__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.64fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.about-workshop__media {
  overflow: hidden;
  min-height: 620px;
  background: #ded8cc;
}

.about-workshop__media video {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about-workshop__content {
  max-width: 650px;
}

.about-workshop__content > p {
  margin: 24px 0 0;
  font-size: 1.1rem;
}

.about-process {
  display: grid;
  margin: clamp(30px, 4vw, 48px) 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  counter-reset: about-step;
}

.about-process li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--color-text-strong);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 560;
  counter-increment: about-step;
}

.about-process li::before {
  content: counter(about-step, decimal-leading-zero);
  color: rgba(17, 17, 17, 0.46);
  font-size: 0.72rem;
  font-weight: 650;
}

.about-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.about-section__head--split {
  grid-template-columns: minmax(0, 1fr) auto;
}

.about-section__head p {
  margin: 0;
  max-width: 55ch;
  font-size: 1.06rem;
}

.about-inline-link {
  color: var(--color-ink);
}

.about-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.about-project-card:hover img {
  transform: scale(1.025);
}

.about-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  padding-top: clamp(18px, 2vw, 26px);
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  background: transparent;
}

.about-project-card {
  min-width: 0;
  background: transparent;
}

.about-project-card a {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  color: #fff;
}

.about-project-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.66) 100%);
}

.about-project-card span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: grid;
  gap: 5px;
}

.about-project-card small {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-project-card strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.62rem;
  font-weight: 650;
  line-height: 1.04;
}

.about-cta {
  margin-top: clamp(54px, 7vw, 96px);
}

.about-cta__inner {
  justify-content: space-between;
  gap: clamp(20px, 4vw, 70px);
  padding: clamp(34px, 5vw, 62px) 0;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.about-cta__inner > div {
  max-width: 850px;
}

.about-cta p {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

@media (max-width: 1024px) {
  .about-hero__inner,
  .about-intro,
  .about-workshop__grid,
  .about-section__head,
  .about-section__head--split {
    grid-template-columns: 1fr;
  }

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

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

  .about-intro h2,
  .about-workshop__content h2,
  .about-section__head h2,
  .about-cta h2 {
    font-size: 3.25rem;
  }

  .about-hero__facts div {
    padding-right: 18px;
  }

  .about-workshop__media,
  .about-workshop__media video {
    min-height: 520px;
  }

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

  .about-project-card a {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .about-hero {
    min-height: 100svh;
  }

  .about-hero__inner {
    min-height: 100svh;
    padding-top: 112px;
  }

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

  .about-intro h2,
  .about-workshop__content h2,
  .about-section__head h2,
  .about-cta h2 {
    font-size: 2.38rem;
  }

  .about-hero__facts,
  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    min-height: 210px;
  }

  .about-principles span {
    margin-bottom: 34px;
  }

  .about-workshop__media,
  .about-workshop__media video {
    min-height: 460px;
  }

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

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

/* Contact page */
.contact-page {
  padding-bottom: clamp(72px, 8vw, 132px);
  background: #fff;
  color: var(--color-ink);
}

.contact-hero {
  position: relative;
  min-height: min(660px, 86svh);
  overflow: hidden;
  background: #111;
  color: #fff;
}

.contact-hero__media {
  position: absolute;
  inset: 0;
}

.contact-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.4) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 38%, rgba(0, 0, 0, 0.46));
}

.contact-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: min(660px, 86svh);
  padding-top: clamp(130px, 14vw, 210px);
  padding-bottom: clamp(44px, 6vw, 86px);
}

.contact-hero__copy {
  max-width: 780px;
}

.contact-eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-eyebrow--dark {
  color: rgba(17, 17, 17, 0.54);
}

.contact-hero h1,
.contact-main__head h2,
.contact-brief h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 650;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-hero h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 0.9;
}

.contact-hero__copy > p:not(.contact-eyebrow) {
  max-width: 56ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.5;
}

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

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius-control);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 560;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.contact-button i {
  font-size: 18px;
}

.contact-button--light {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.contact-button--ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-button:hover,
.contact-button:focus-visible {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: #fff;
}

.contact-main {
  padding-top: clamp(64px, 8vw, 116px);
}

.contact-main__head {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.56fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 40px);
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.contact-main__head h2 {
  color: var(--color-text-strong);
  font-size: 2.35rem;
  line-height: 1.02;
}

.contact-main__head p:not(.contact-eyebrow) {
  margin: 0;
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.contact-details {
  display: grid;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.contact-detail {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 64px);
  min-height: 76px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.contact-detail span {
  color: rgba(17, 17, 17, 0.52);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  margin: 0;
  color: var(--color-text-strong);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 540;
  line-height: 1.35;
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
  color: var(--color-brand);
}

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

.contact-detail--actions a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: var(--radius-control);
  font-size: 0.92rem;
}

.contact-brief {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #f5f2ec;
}

.contact-brief h3 {
  color: var(--color-text-strong);
  font-size: 1.7rem;
  line-height: 1.05;
}

.contact-brief ol {
  display: grid;
  margin: 28px 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  counter-reset: contact-brief;
}

.contact-brief li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--color-text-strong);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 560;
  counter-increment: contact-brief;
}

.contact-brief li::before {
  content: counter(contact-brief, decimal-leading-zero);
  color: rgba(17, 17, 17, 0.46);
  font-size: 0.72rem;
  font-weight: 650;
}

.contact-map {
  margin-top: clamp(46px, 6vw, 86px);
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #eee9df;
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.88) contrast(0.96);
}

@media (max-width: 1024px) {
  .contact-hero h1 {
    font-size: 3rem;
  }

  .contact-main__head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-main__head h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 820px) {
  .contact-hero {
    min-height: 100svh;
  }

  .contact-hero__inner {
    min-height: 100svh;
    padding-top: 112px;
  }

  .contact-hero h1 {
    font-size: 3rem;
  }

  .contact-main__head h2 {
    font-size: 1.9rem;
  }

  .contact-button,
  .contact-detail--actions a {
    width: 100%;
  }

  .contact-detail,
  .contact-detail--actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 430px;
  }
}

.header-icon-link i,
.site-menu-toggle i {
  display: block;
  line-height: 1;
}

.f-suggest__toggle.header-icon-link {
  display: inline-grid;
  place-items: center;
  align-self: center;
}

.header-icon-link:hover,
.site-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.header--scrolled .header-icon-link:hover,
.header--scrolled .site-menu-toggle:hover,
.header:not(.header--colorize) .header-icon-link:hover,
.header:not(.header--colorize) .site-menu-toggle:hover {
  background: rgba(17, 17, 17, 0.06);
}

.header__logo {
  grid-area: logo;
  justify-self: center;
  position: static;
  top: auto;
  left: auto;
  transform: none;
      margin-top: 50px;
}

.header__link img {
  width: 154px;
}

.header__menu {
  grid-area: nav;
  justify-self: center;
}

.header .m-main__list {
  justify-content: center;
  gap: clamp(34px, 4.2vw, 70px);
}

.header .m-main__link {
  color: currentColor;
  font-size: 0.96rem;
  font-weight: 450;
  letter-spacing: 0;
}

.header .m-main__link:hover {
  color: currentColor;
  opacity: 0.72;
}

.header .m-main__item {
  position: static;
}

.header .m-main__item:hover > .m-main__link,
.header .m-main__item:focus-within > .m-main__link {
  opacity: 1;
}

.header .m-main__list--sub {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4.2vw, 74px);
  width: min(calc(100vw - 2 * var(--gutter)), 1180px);
  min-width: 0;
  padding: 18px clamp(22px, 3vw, 42px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0 0 7px 7px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-ink);
  box-shadow: 0 22px 50px rgba(17, 17, 17, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.header .m-main__item:hover > .m-main__list--sub,
.header .m-main__item:focus-within > .m-main__list--sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header .m-main__list--sub::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 10px;
}

.header .m-main__item--sub {
  flex: 0 0 auto;
}

.header .m-main__link--sub {
  width: auto;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  color: var(--color-ink);
  font-size: 0.96rem;
  font-weight: 420;
  line-height: 1.2;
}

.header .m-main__link--sub:hover,
.header .m-main__link--sub:focus-visible {
  background: transparent;
  color: var(--color-ink);
  opacity: 0.66;
}

.header__other {
  grid-area: tools;
  justify-self: end;
  align-self: center;
  display: flex;
  gap: 8px;
}

.header__lang,
.header__login,
.header__search {
  display: flex;
  align-items: center;
}

.header-lang-link {
  width: auto;
  min-width: 54px;
  padding: 0 8px;
  gap: 4px;
  border-radius: 999px;
  font-size: 20px;
}

.header-lang-link span {
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1;
}

.f-suggest {
  display: block;
  min-width: auto;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.f-suggest__toggle,
.f-suggest__btn {
  border: 0;
  background: transparent;
}

.f-suggest__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--color-ink);
}

.site-menu-panel__close {
  font-size: 23px;
}

.site-menu-panel__title,
.site-menu-panel__group--links a {
  font-weight: 560;
}

.header--colorize:not(.header--scrolled) {
  color: #fff;
}

.header--scrolled {
  min-height: 76px;
}

.header--scrolled .header__inner {
  grid-template-columns: 60px minmax(0, 1fr) auto;
  grid-template-rows: 76px;
  grid-template-areas: "left nav tools";
  min-height: 76px;
  position: relative;
}

.header--scrolled .header__logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  margin: 0;
  transform: translate(-50%, -50%);
}

.header--scrolled .header__scrolled-brand {
  display: none;
}

.header--scrolled .header__link img {
  width: 132px;
}

.header .m-main__list--sub {
  color: var(--color-ink);
}

.header--scrolled .header__store-link {
  display: inline-grid;
}

.header--scrolled .header__menu {
  justify-self: stretch;
  width: 100%;
  padding-right: clamp(4px, 1.2vw, 18px);
  padding-left: clamp(10px, 2vw, 34px);
}

  .header--scrolled .m-main > .m-main__list {
  display: grid;
  grid-template-columns:
    max-content max-content max-content max-content
    minmax(clamp(128px, 12vw, 180px), 1fr)
    max-content max-content max-content max-content;
  justify-content: stretch;
  align-items: center;
  gap: 0;
}

.header--scrolled .m-main > .m-main__list > .m-main__item:nth-child(5) {
  grid-column: 6;
}

.header--scrolled .m-main__list--sub {
  top: 100%;
  width: max-content;
  padding-block: 10px;
}

.hero-landing--video .hero-landing__title {
  font-weight: 650;
  letter-spacing: 0;
}

.hero-landing--video .hero-landing__eyebrow {
  font-weight: 500;
}

.hero-landing--video .btn__text {
  font-weight: 500;
}

@media (max-width: 1230px) {
  .header__inner,
  .header--scrolled .header__inner {
    grid-template-columns: 96px 1fr auto;
    grid-template-rows: 76px;
    grid-template-areas: "left logo tools";
    min-height: 76px;
  }

  .header__menu {
    display: none;
  }

  .header--scrolled .header__logo {
    display: block;
  }

  .header--scrolled .header__scrolled-brand {
    display: none;
  }
}

@media (max-width: 820px) {
  .header__inner,
  .header--scrolled .header__inner {
    grid-template-columns: 86px 1fr auto;
    grid-template-areas: "left logo tools";
  }

  .header__store-link {
    display: inline-grid;
  }

  .site-menu-toggle {
    margin-left: 38px;
  }

  .header__link img {
    width: 122px;
  }

  .header__other {
    gap: 2px;
  }

  .header-icon-link,
  .site-menu-toggle {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .header-architect-link {
    display: none;
  }
}

/* Hero scroll behavior and BoConcept-like composition */
.header--colorize:not(.header--scrolled) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.06) 76%, transparent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.hero-landing--video {
  min-height: 150svh;
  padding: 0;
  overflow: visible;
  background: #161412;
  --hero-copy-progress: 0;
}

.hero-landing__stage {
  position: sticky;
  top: 0;
  z-index: 1;
  overflow: hidden;
  height: 100svh;
}

.hero-landing__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  height: 100svh;
  min-height: 100svh;
}

.hero-landing__media video,
.hero-landing__media img {
  height: 100svh;
  filter: none;
  transform: none;
}

.hero-landing__media::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.06) 44%, rgba(0, 0, 0, 0.36)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0.18));
}

.hero-landing__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  min-height: auto;
  height: 100svh;
  margin-top: 0;
  padding-top: clamp(220px, 31vh, 330px);
  padding-bottom: clamp(58px, 8vh, 96px);
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-landing--video .hero-landing__copy {
  width: min(62vw, 910px);
  max-width: 910px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  opacity: calc(1 - var(--hero-copy-progress));
  transform: none;
  transition: opacity 80ms linear;
  pointer-events: auto;
}

.hero-landing--video .hero-landing__eyebrow {
  margin-bottom: 4px;
  font-size: clamp(1rem, 1.38vw, 1.42rem);
  font-weight: 500;
  line-height: 1.15;
}

.hero-landing--video .hero-landing__title {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.2rem, 3.45vw, 3.7rem);
  font-weight: 600;
  line-height: 1;
}

.hero-landing--video .hero-landing__actions {
  gap: 14px;
  margin-top: 24px;
}

.hero-landing--video .btn__text {
  min-width: 236px;
  min-height: 44px;
  padding: 0 18px 0 22px;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 500;
}

.hero-landing--video .btn__text i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-landing--video .hero-landing__copy {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .hero-landing--video .hero-landing__copy {
    width: min(72vw, 600px);
    margin-right: 0;
  }
}

@media (max-width: 820px) {
  .hero-landing--video {
    min-height: 150svh;
  }

  .hero-landing__content {
    justify-content: center;
    align-items: end;
    padding-top: 140px;
    padding-bottom: 56px;
  }

  .hero-landing--video .hero-landing__copy {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-landing--video .hero-landing__title {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-landing--video .btn__text {
    width: min(82vw, 350px);
    min-width: 0;
  }
}

/* Final desktop dropdown override */
@media (min-width: 821px) {
  .header .m-main > .m-main__list {
    gap: 0;
  }

  .header:has(.m-main > .m-main__list > .m-main__item:hover > .m-main__list--sub) + .site-menu-backdrop,
  .header:has(.m-main > .m-main__list > .m-main__item:focus-within > .m-main__list--sub) + .site-menu-backdrop {
    z-index: 900;
    background: rgba(17, 17, 17, 0.26);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }

  .header .m-main > .m-main__list > .m-main__item {
    --nav-item-pad: clamp(9px, 1.05vw, 17px);
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    padding-inline: var(--nav-item-pad);
  }

  .header .m-main > .m-main__list > .m-main__item:has(> .m-main__list--sub)::after {
    content: "";
    position: absolute;
    top: 100%;
    left: var(--nav-item-pad);
    z-index: 21;
    width: min(320px, calc(100vw - 2 * var(--gutter)));
    height: 26px;
  }

  .header .m-main > .m-main__list > .m-main__item > .m-main__link {
    min-height: 100%;
  }

  .header .m-main > .m-main__list > .m-main__item > .m-main__list--sub {
    position: absolute;
    top: calc(100% + 26px);
    left: var(--nav-item-pad);
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: 4px;
    width: max-content;
    min-width: 230px;
    max-width: min(320px, calc(100vw - 2 * var(--gutter)));
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, 0.13);
    border-top-color: rgba(17, 17, 17, 0.08);
    border-radius: 0 0 7px 7px;
    background: rgba(255, 253, 248, 0.96);
    color: var(--color-ink);
    box-shadow: 0 24px 54px rgba(17, 17, 17, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .header .m-main > .m-main__list > .m-main__item:hover > .m-main__list--sub,
  .header .m-main > .m-main__list > .m-main__item:focus-within > .m-main__list--sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header--scrolled .m-main > .m-main__list > .m-main__item:hover > .m-main__list--sub,
  .header--scrolled .m-main > .m-main__list > .m-main__item:focus-within > .m-main__list--sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header .m-main > .m-main__list > .m-main__item > .m-main__list--sub::before {
    content: "";
    position: absolute;
    top: -26px;
    right: 0;
    left: 0;
    height: 26px;
  }

  .header .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__item--sub {
    display: block;
    width: 100%;
    padding: 0;
  }

  .header .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 36px;
    padding: 12px 16px;
    border-radius: 0;
    background: transparent;
    color: var(--color-ink);
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.25;
    text-align: left;
  }

  .header .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub:hover,
  .header .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub:focus-visible {
    background: rgba(17, 17, 17, 0.045);
    opacity: 1;
  }
}

/* Final typography hierarchy */
h1,
h2,
h3,
h4,
.hero-landing__title,
.home-category-carousel__title,
.home-lookbook__title,
.home-spaces__title,
.home-spaces__body h3,
.c-products-carousel__title,
.b-product__title,
.b-news__title,
.f-std__title,
.b-visit__title,
.b-std__title,
.site-menu-panel__title {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-lookbook__title,
.home-spaces__title,
.c-products-carousel__title,
.f-std__title,
.b-visit__title,
.b-std__title {
  font-size: clamp(2rem, 2.55vw, 2.5rem);
}

.home-category-carousel__title {
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
}

.home-spaces__body h3,
.b-product__title,
.b-news__title {
  font-size: clamp(1.08rem, 1.35vw, 1.25rem);
}

.btn,
.btn__text,
.home-lookbook__links a,
.home-spaces__link,
.home-category-carousel__btn,
.c-products-carousel__btn {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

p,
.hero-landing__text,
.home-lookbook__eyebrow,
.home-lookbook__label,
.home-spaces__summary,
.home-spaces__body p,
.b-news__desc,
.f-std__desc,
.footer__text,
.site-menu-panel__text {
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.home-category-card__title,
.home-lookbook__product,
.home-spaces__body h3 {
  font-family: var(--font-heading);
}

/* Catalog page keeps the pre-scroll header compact like BoConcept. */
.page-catalog .header:not(.header--scrolled) {
  min-height: 108px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: none;
}

.page-catalog .header:not(.header--scrolled) .header__inner {
  grid-template-columns: 96px minmax(0, 1fr) auto;
  grid-template-rows: 58px 50px;
  grid-template-areas:
    "left logo tools"
    "left nav tools";
  min-height: 108px;
}

.page-catalog .header:not(.header--scrolled) .header__logo {
  align-self: end;
  margin-top: 0;
  margin-bottom: 4px;
}

.page-catalog .header:not(.header--scrolled) .header__link img {
  width: 126px;
}

.page-catalog .header:not(.header--scrolled) .header__menu {
  align-self: start;
  padding-top: 4px;
}

.page-catalog .header:not(.header--scrolled) .m-main__list {
  gap: clamp(22px, 3.2vw, 54px);
}

.page-catalog .header:not(.header--scrolled) .header__other {
  align-self: center;
}

.page-catalog .catalog-hero {
  padding-top: clamp(36px, 4.6vw, 70px);
}

.page-catalog .catalog-page {
  padding-top: clamp(42px, 5vw, 74px);
}

/* Catalog refinement layer */
:root {
  --color-text-strong: #111111;
  --color-text-default: rgba(17, 17, 17, 0.72);
  --color-text-soft: rgba(17, 17, 17, 0.52);
  --catalog-edge-offset: max(var(--gutter), calc((100vw - var(--container)) / 2));
}

.header {
  background: rgba(255, 253, 248, 0.8);
  transition:
    min-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header__inner,
.header__logo,
.header__menu,
.header__other,
.header__store-link,
.site-menu-toggle,
.header__link img,
.header__scrolled-brand {
  transition:
    min-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease,
    top 320ms cubic-bezier(0.22, 1, 0.36, 1),
    width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    margin 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header:not(.header--scrolled) .header__menu {
  transform: translateY(4px);
}

.header--scrolled .header__menu {
  transform: translateY(0);
}

.header:not(.header--scrolled) .header__store-link,
.header:not(.header--scrolled) .header__other {
  align-self: start;
  margin-top: 22px;
}

.page-catalog .header:not(.header--scrolled) {
  background: rgba(255, 255, 255, 0.8);
}

.header--scrolled {
  background: transparent;
}

.header .m-main__link {
  color: var(--color-text-default);
  transition: color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.header .m-main > .m-main__list > .m-main__item > .m-main__link {
  position: relative;
  text-decoration: none !important;
}

.header .m-main > .m-main__list > .m-main__item > .m-main__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.header .m-main__link.is-active {
  color: var(--color-text-strong);
  font-weight: 560;
}

.header .m-main > .m-main__list > .m-main__item > .m-main__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header .m-main__link:hover,
.header .m-main__link:focus-visible {
  color: var(--color-text-strong);
  opacity: 1;
}

.header .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub {
  color: var(--color-text-default);
}

.header .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub.is-active {
  background: rgba(17, 17, 17, 0.07);
  color: var(--color-text-strong);
  font-weight: 520;
}

.header .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub:hover,
.header .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub:focus-visible {
  background: rgba(17, 17, 17, 0.045);
  color: var(--color-text-strong);
}

@media (min-width: 821px) {
  .header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .m-main > .m-main__list > .m-main__item > .m-main__list--sub {
    border-color: rgba(255, 255, 255, 0.16);
    border-top-color: rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  }

  .header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub {
    color: rgba(255, 255, 255, 0.9);
  }

  .header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub.is-active,
  .header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub:hover,
  .header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .m-main > .m-main__list > .m-main__item > .m-main__list--sub .m-main__link--sub:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .header--scrolled.header--elevated .m-main > .m-main__list > .m-main__item > .m-main__list--sub {
    background: rgba(255, 253, 248, 0.96);
  }
}

.catalog-hero__banner {
  right: calc(-1 * var(--catalog-edge-offset));
  width: calc(min(49vw, 780px) + var(--catalog-edge-offset));
}

/* Project detail: cinematic cover and compact mixed-media gallery */
.project-detail-page {
  padding-top: 74px;
}

.project-detail-hero {
  position: relative;
  display: block;
  min-height: clamp(540px, 76svh, 820px);
  overflow: hidden;
  background: #171717;
}

.project-detail-hero__visual {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.project-detail-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 62%);
}

.project-detail-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.002);
}

.project-detail-hero:hover .project-detail-hero__visual img {
  transform: scale(1.018);
}

.project-detail-hero__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  padding: clamp(28px, 5vw, 76px);
  color: #fff;
}

.project-detail-hero .project-detail__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.project-detail-hero h1 {
  max-width: 12ch;
  margin-top: 12px;
  color: #fff;
  font-size: 3rem;
  line-height: 0.86;
}

.project-detail-hero__place {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 550;
}

.project-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(34px, 8vw, 130px);
  align-items: start;
  padding-top: clamp(42px, 6vw, 92px);
}

.project-detail-intro .project-detail-hero__summary {
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
}

.project-detail-intro .project-detail-facts {
  margin: 0;
}

.project-media-section {
  overflow: hidden;
}

.project-media-heading {
  justify-content: space-between;
  gap: 24px;
}

.project-media-heading__controls {
  display: flex;
  gap: 6px;
  align-items: center;
}

.project-media-heading__controls > span {
  margin-right: 10px;
  color: rgba(17, 17, 17, 0.48);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
}

.project-media-heading__controls button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 2px;
  place-items: center;
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: opacity 160ms ease, background-color 160ms ease, color 160ms ease;
}

.project-media-heading__controls button:hover {
  background: #111;
  color: #fff;
}

.project-media-heading__controls button.is-muted {
  color: rgba(17, 17, 17, 0.28);
}

.project-detail-gallery {
  display: flex;
  gap: clamp(10px, 1.25vw, 18px);
  overflow-x: auto;
  padding: 0 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.project-detail-gallery::-webkit-scrollbar {
  display: none;
}

.project-detail-gallery__item,
.project-detail-gallery__item:nth-child(n) {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #e9e9e7;
  cursor: zoom-in;
}

.project-detail-gallery__item img,
.project-detail-gallery__item video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.project-detail-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.3));
  opacity: 0.7;
  transition: opacity 180ms ease;
}

.project-detail-gallery__item:hover::after {
  opacity: 0.25;
}

.project-detail-gallery__index {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
}

.project-detail-gallery__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
}

@media (max-width: 820px) {
  .project-detail-page {
    padding-top: 74px;
  }

  .project-detail-hero {
    min-height: min(680px, calc(100svh - 74px));
  }

  .project-detail-hero__visual img {
    min-height: 0;
    aspect-ratio: auto;
  }

  .project-detail-hero h1 {
    font-size: 3rem;
  }

  .project-detail-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-detail-gallery__item,
  .project-detail-gallery__item:nth-child(n) {
    flex-basis: 84%;
  }

  .project-media-heading__controls > span {
    display: none;
  }

}

/* Project map */
.project-map-page {
  display: grid;
  grid-template-columns: minmax(340px, 0.38fr) minmax(0, 0.62fr);
  gap: 0;
  min-height: calc(100svh - var(--header-height));
  padding-top: var(--header-height);
  background: var(--color-paper);
  color: var(--color-ink);
}

.project-map-stage {
  min-width: 0;
  min-height: calc(100svh - var(--header-height));
  padding: 18px 18px 18px 0;
  background: var(--color-paper);
}

.project-map-page__canvas {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--header-height) - 36px);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #e8ebe5;
}

.project-map-page .leaflet-control-attribution {
  padding: 4px 8px;
  color: var(--color-muted);
  background: color-mix(in srgb, var(--color-surface) 86%, transparent);
}

.project-map-page .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.project-map-page .leaflet-control-zoom a {
  color: var(--color-ink);
  background: var(--color-surface);
}

.project-map-marker-wrap {
  background: transparent;
  border: 0;
}

.project-map-marker {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fffdf8;
  font-size: 20px;
  background: #20382f;
  border: 2px solid var(--color-surface);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.project-map-marker i {
  transform: none;
}

.project-map-marker-wrap.is-active .project-map-marker {
  color: #111;
  background: #d9b35f;
  border-color: #fffdf8;
  transform: scale(1.14);
}

.project-map-panel {
  display: flex;
  min-width: 0;
  max-height: calc(100svh - var(--header-height));
  padding: clamp(18px, 2.4vw, 34px);
  flex-direction: column;
  color: var(--color-ink);
  background: var(--color-surface);
  border-right: 1px solid var(--color-line);
}

.project-map-panel__header {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
}

.project-map-panel__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font: 600 12px/1.2 var(--font-sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
  text-transform: uppercase;
}

.project-map-panel h1 {
  margin: 0;
  color: var(--color-ink);
  font: 700 clamp(34px, 3.4vw, 52px)/1 var(--font-sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
}

.project-map-panel__header p {
  max-width: 460px;
  color: var(--color-body-text);
  font: 400 15px/1.45 var(--font-body, Baskerville, "Libre Baskerville", serif);
}

.project-map-search {
  display: grid;
  min-height: 48px;
  margin-bottom: 14px;
  padding-inline: 14px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-line);
  background: color-mix(in srgb, var(--color-paper) 68%, var(--color-surface));
}

.project-map-search i {
  font-size: 19px;
}

.project-map-search input {
  width: 100%;
  height: 48px;
  padding: 0;
  color: var(--color-ink);
  font: 500 15px/1 var(--font-sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
  background: transparent;
  border: 0;
  outline: 0;
}

.project-map-selection {
  display: grid;
  margin: 0 0 14px;
  grid-template-columns: 112px minmax(0, 1fr);
  color: #fffdf8;
  background: #20382f;
  border: 1px solid color-mix(in srgb, var(--color-line) 44%, transparent);
  overflow: hidden;
}

.project-map-selection[hidden] {
  display: none;
}

.project-map-selection > img {
  width: 100%;
  height: 100%;
  min-height: 156px;
  object-fit: cover;
}

.project-map-selection__body {
  display: flex;
  min-width: 0;
  padding: 16px;
  flex-direction: column;
}

.project-map-selection__meta {
  color: rgba(255, 255, 255, 0.64);
  font: 600 11px/1.3 var(--font-sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
  text-transform: uppercase;
}

.project-map-selection h2 {
  margin: 7px 0 8px;
  color: #fffdf8;
  font: 650 20px/1.08 var(--font-sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
}

.project-map-selection p {
  display: -webkit-box;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font: 400 13px/1.4 var(--font-body, Baskerville, "Libre Baskerville", serif);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.project-map-selection__footer {
  display: flex;
  margin-top: auto;
  padding-top: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.project-map-selection__approximate {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.55);
  font: 500 10px/1.2 var(--font-sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
}

.project-map-selection__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1f2b25;
  font: 600 12px/1.2 var(--font-sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
  text-decoration: none;
}

.project-map-selection__link:hover {
  color: #d9b35f;
}

.project-map-count {
  margin: 0 0 8px;
  color: var(--color-muted);
  font: 600 12px/1.2 var(--font-heading);
  text-transform: uppercase;
}

.project-map-list {
  min-height: 0;
  padding-right: 2px;
  overflow: auto;
  scrollbar-width: thin;
}

.project-map-list__item {
  display: grid;
  width: 100%;
  min-height: 82px;
  padding: 10px 0;
  grid-template-columns: 74px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  text-align: left;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.project-map-list__item:hover,
.project-map-list__item.is-active {
  background: color-mix(in srgb, var(--color-brand) 10%, transparent);
}

.project-map-list__item img {
  width: 74px;
  height: 58px;
  object-fit: cover;
  border-radius: 3px;
}

.project-map-list__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.project-map-list__copy strong,
.project-map-list__copy span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.project-map-list__copy strong {
  font: 600 15px/1.2 var(--font-sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
}

.project-map-list__copy span {
  color: var(--color-muted);
  font: 500 12px/1.2 var(--font-sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
}

.project-map-list__item > i {
  font-size: 17px;
  color: var(--color-muted);
}

.project-map-list__item.is-active {
  border-color: color-mix(in srgb, var(--color-brand) 42%, var(--color-line));
}

.project-map-list__item.is-active > i,
.project-map-list__item.is-active .project-map-list__copy strong {
  color: var(--color-brand-dark);
}

.project-map-empty {
  margin: 20px 0 0;
  color: var(--color-muted);
  font: 400 15px/1.45 var(--font-body, Baskerville, "Libre Baskerville", serif);
}

@media (max-width: 1080px) {
  .project-map-page {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .project-map-panel {
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .project-map-stage {
    min-height: 62svh;
    padding: 0;
  }

  .project-map-page__canvas {
    min-height: 62svh;
    border-right: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .project-map-selection {
    grid-template-columns: 1fr;
  }

  .project-map-selection > img {
    min-height: 170px;
  }
}

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

@media (max-width: 820px) {
  .project-map-page {
    min-height: calc(100svh - 74px);
  }

  .project-map-page__canvas {
    min-height: 100%;
  }

  .project-map-panel {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-height: min(47svh, 460px);
    margin: 0;
    padding: 18px;
    border-radius: 3px;
  }

  .project-map-panel__header {
    padding-bottom: 8px;
  }

  .project-map-panel__eyebrow,
  .project-map-panel__header p {
    display: none;
  }

  .project-map-panel h1 {
    font-size: 28px;
  }

  .project-map-search {
    min-height: 40px;
    margin-bottom: 10px;
  }

  .project-map-search input {
    height: 40px;
  }

  .project-map-selection {
    grid-template-columns: 94px minmax(0, 1fr);
    margin-bottom: 10px;
  }

  .project-map-selection > img {
    min-height: 126px;
  }

  .project-map-selection__body {
    padding: 12px;
  }

  .project-map-selection h2 {
    font-size: 18px;
  }

  .project-map-selection p,
  .project-map-selection__approximate {
    display: none;
  }

  .project-map-list__item {
    min-height: 62px;
    grid-template-columns: 56px minmax(0, 1fr) 18px;
  }

  .project-map-list__item img {
    width: 56px;
    height: 44px;
  }

  .project-map-page .leaflet-control-zoom {
    margin-bottom: calc(min(47svh, 460px) + 26px);
  }
}

/* Project map intentional rebuild */
.project-map-page {
  display: grid;
  grid-template-columns: minmax(360px, 31vw) minmax(0, 1fr);
  min-height: 100svh;
  padding-top: var(--header-height);
  color: var(--color-ink);
  background: var(--color-paper);
}

.project-map-panel {
  position: relative;
  display: grid;
  height: calc(100svh - var(--header-height));
  max-height: none;
  min-width: 0;
  padding: clamp(22px, 2.5vw, 40px);
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 20px;
  color: var(--color-ink);
  background: var(--color-surface);
  border-right: 1px solid var(--color-line);
}

.project-map-panel__header {
  display: grid;
  gap: 10px;
  padding: 0;
}

.project-map-panel__eyebrow {
  margin: 0;
  color: var(--color-brand-dark);
  font: 650 11px/1.2 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-map-panel h1 {
  max-width: 9ch;
  color: var(--color-ink);
  font: 680 clamp(36px, 4vw, 62px)/0.94 var(--font-sans);
}

.project-map-panel__header p {
  max-width: 34ch;
  color: var(--color-body-text);
  font: 400 15px/1.55 var(--font-body);
}

.project-map-panel__tools {
  display: grid;
  gap: 9px;
}

.project-map-search {
  display: grid;
  min-height: 48px;
  margin: 0;
  padding: 0 14px;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  background: color-mix(in srgb, var(--color-paper) 72%, var(--color-surface));
  border: 1px solid var(--color-line);
  border-radius: 999px;
}

.project-map-search i {
  color: var(--color-muted);
}

.project-map-search input {
  height: 46px;
  color: var(--color-ink);
  font: 560 14px/1 var(--font-sans);
}

.project-map-count {
  margin: 0;
  color: var(--color-muted);
  font: 650 11px/1.2 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-map-list-shell {
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid var(--color-line);
}

.project-map-list {
  display: grid;
  min-height: 0;
  max-height: 100%;
  padding: 10px 2px 0 0;
  align-content: start;
  gap: 8px;
  overflow: auto;
  scrollbar-width: thin;
}

.project-map-list__item {
  display: grid;
  width: 100%;
  min-height: 78px;
  padding: 9px 10px;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  color: var(--color-ink);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.project-map-list__item:hover {
  background: color-mix(in srgb, var(--color-brand) 9%, transparent);
}

.project-map-list__item.is-active {
  background: color-mix(in srgb, var(--color-brand) 13%, var(--color-surface));
  border-color: color-mix(in srgb, var(--color-brand) 42%, transparent);
  box-shadow: inset 3px 0 0 var(--color-brand-dark);
}

.project-map-list__item img {
  width: 72px;
  height: 56px;
  aspect-ratio: 9 / 7;
  object-fit: cover;
  border-radius: 7px;
}

.project-map-list__copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.project-map-list__copy strong {
  color: var(--color-ink);
  font: 650 15px/1.18 var(--font-sans);
}

.project-map-list__copy span {
  color: var(--color-muted);
  font: 520 12px/1.2 var(--font-sans);
}

.project-map-list__copy strong,
.project-map-list__copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-map-stage {
  position: relative;
  min-width: 0;
  height: calc(100svh - var(--header-height));
  min-height: 0;
  padding: clamp(14px, 1.6vw, 24px);
  background: var(--color-paper);
}

.project-map-page__canvas {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #dfe3dc;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.project-map-marker {
  width: 30px;
  height: 30px;
  color: var(--color-surface);
  font-size: 18px;
  background: var(--color-brand);
  border: 2px solid var(--color-surface);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.project-map-marker-wrap.is-active .project-map-marker {
  color: #28251c;
  background: var(--color-brand-dark);
  border-color: var(--color-surface);
  transform: scale(1.18);
}

.project-map-selection {
  position: absolute;
  right: clamp(28px, 3vw, 48px);
  bottom: clamp(28px, 3vw, 48px);
  z-index: 500;
  display: grid;
  width: min(440px, calc(100% - 56px));
  min-height: 180px;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) 136px;
  color: var(--color-ink);
  background: color-mix(in srgb, var(--color-surface) 94%, transparent);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.project-map-selection[hidden] {
  display: none;
}

.project-map-selection > img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.project-map-selection__body {
  display: flex;
  min-width: 0;
  padding: 18px;
  flex-direction: column;
}

.project-map-selection__meta {
  color: var(--color-muted);
  font: 650 10px/1.3 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-map-selection h2 {
  margin: 8px 0 8px;
  color: var(--color-ink);
  font: 680 22px/1.05 var(--font-sans);
}

.project-map-selection p {
  display: -webkit-box;
  color: var(--color-body-text);
  font: 400 13px/1.45 var(--font-body);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.project-map-selection__footer {
  display: flex;
  margin-top: auto;
  padding-top: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-map-selection__approximate {
  color: var(--color-muted);
}

.project-map-selection__link {
  color: var(--color-brand-dark);
  font: 650 12px/1.2 var(--font-sans);
}

.project-map-empty {
  margin: 18px 0 0;
  color: var(--color-muted);
  font: 400 15px/1.45 var(--font-body);
}

@media (max-width: 1120px) {
  .project-map-page {
    grid-template-columns: minmax(320px, 38vw) minmax(0, 1fr);
  }

  .project-map-selection {
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 860px) {
  .project-map-page {
    display: flex;
    min-height: auto;
    padding-top: var(--header-height);
    flex-direction: column;
  }

  .project-map-panel {
    height: auto;
    padding: 22px 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .project-map-panel h1 {
    max-width: none;
    font-size: 34px;
  }

  .project-map-panel__header p {
    max-width: 52ch;
  }

  .project-map-list-shell {
    max-height: 248px;
  }

  .project-map-stage {
    height: 62svh;
    min-height: 520px;
    padding: 12px;
  }

  .project-map-page__canvas {
    border-radius: 14px;
  }

  .project-map-selection {
    right: 22px;
    bottom: 22px;
    width: min(430px, calc(100% - 44px));
  }
}

/* Shared shell and localized contact forms */
.site-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  min-width: 0;
  height: 44px;
  margin-left: 0;
  padding: 0;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.header--scrolled .header__inner {
  grid-template-columns: minmax(84px, max-content) minmax(0, 1fr) auto;
}

.site-menu-toggle .site-menu-toggle__label {
  display: inline;
  width: auto;
  height: auto;
  background: none;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1;
}

.site-menu-toggle i {
  flex: 0 0 auto;
  font-size: 22px;
}

.header .site-menu-toggle:hover,
.header--scrolled .site-menu-toggle:hover,
.header:not(.header--colorize) .site-menu-toggle:hover {
  background: transparent;
  color: var(--color-brand-dark);
  transform: none;
}

.site-menu-panel,
.site-menu-backdrop {
  z-index: 2147483647;
}

.search-is-open .f-suggest__holder {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  background: rgba(20, 20, 18, 0.34);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
}

.contact-email-form {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 253, 248, 0.94);
  color: var(--color-ink);
}

.contact-email-form__head h2 {
  margin: 0 0 22px;
  color: var(--color-text-strong);
  font: 650 clamp(1.35rem, 2vw, 1.8rem)/1.05 var(--font-heading);
  letter-spacing: 0;
}

.contact-email-form form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

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

.contact-email-form label > span {
  color: var(--color-muted);
  font: 560 0.72rem/1.2 var(--font-heading);
}

.contact-email-form input,
.contact-email-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--color-ink);
  font: 500 0.94rem/1.35 var(--font-body);
  resize: none;
}

.contact-email-form__message,
.contact-email-form button,
.contact-email-form__notice {
  grid-column: 1 / -1;
}

.contact-email-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  margin-top: 4px;
  padding: 10px 14px;
  border: 1px solid var(--color-ink);
  border-radius: 0;
  background: var(--color-ink);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.contact-email-form__notice {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-left: 3px solid var(--color-brand);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.contact-email-form__notice.is-error {
  border-left-color: #9b342b;
}

.contact-email-form__trap {
  position: absolute !important;
  left: -9999px !important;
}

.about-hero__inner {
  display: flex;
  align-items: flex-end;
}

.about-hero h1 {
  max-width: 780px;
  font-size: 3rem;
  line-height: 0.9;
}

.about-workshop__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
}

.about-workshop__media,
.about-workshop__media video {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.about-contact {
  margin-top: clamp(64px, 8vw, 118px);
}

.about-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.72fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
  padding-block: clamp(38px, 5vw, 68px);
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.about-contact__copy h2 {
  margin: 0;
  color: var(--color-text-strong);
  font: 650 clamp(2.5rem, 4.5vw, 4rem)/0.96 var(--font-heading);
  letter-spacing: 0;
}

.about-contact__copy p {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--color-body-text);
  font-size: 1.06rem;
  line-height: 1.5;
}

.about-contact .contact-email-form {
  border-color: rgba(17, 17, 17, 0.16);
  background: #f5f2ec;
}

@media (max-width: 1024px) {
  .contact-hero__inner,
  .about-contact__inner,
  .about-workshop__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .contact-hero {
    min-height: 0;
  }

  .contact-hero__inner {
    align-content: end;
    min-height: 100svh;
    padding-bottom: 28px;
  }

  .contact-email-form {
    padding: 18px;
  }

  .contact-email-form form {
    grid-template-columns: 1fr;
  }

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

  .site-menu-toggle .site-menu-toggle__label {
    display: inline;
  }
}

@media (max-width: 560px) {
  .project-map-panel {
    gap: 14px;
  }

  .project-map-panel__header p {
    display: none;
  }

  .project-map-list-shell {
    max-height: 220px;
  }

  .project-map-list__item {
    min-height: 68px;
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .project-map-list__item img {
    width: 56px;
    height: 46px;
  }

  .project-map-stage {
    min-height: 480px;
  }

  .project-map-selection {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    right: 16px;
    bottom: 16px;
  }

  .project-map-selection > img {
    display: none;
  }
}

/* Search overlay final layer */
.search-is-open .f-suggest__holder,
.f-suggest.is-open .f-suggest__holder {
  position: fixed;
  inset: 0;
  z-index: 2147483645;
  display: block;
  width: 100vw;
  height: 100svh;
  padding: calc(var(--header-height) + clamp(18px, 5vh, 64px)) var(--gutter) 40px;
  overflow: auto;
  background: rgba(20, 20, 18, 0.38);
  backdrop-filter: blur(16px);
}

.search-is-open .f-suggest__holder .row-main,
.f-suggest.is-open .f-suggest__holder .row-main {
  width: min(900px, 100%);
  margin-inline: auto;
}

/* Sharp search controls */

.catalog-toolbar__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.6fr) minmax(0, 1.6fr) auto;
  align-items: center;
  gap: 14px;
}

.catalog-toolbar__search,
.catalog-filter-search,
.projects-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  min-width: 0;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}

.catalog-toolbar__search label,
.catalog-filter-search label,
.projects-search label {
  display: grid;
  min-width: 0;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 0 12px;
}

.catalog-toolbar__search input,
.catalog-filter-search input,
.projects-search input {
  width: 100%;
  height: 42px;
  padding: 0;
  color: var(--color-ink);
  font: 520 14px/1 var(--font-sans);
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
}

.catalog-toolbar__search button,
.catalog-filter-search button,
.projects-search button {
  display: grid;
  width: 44px;
  place-items: center;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  border-left: 1px solid var(--color-line);
  border-radius: 0;
}

.catalog-search-applied {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.catalog-filter-search {
  margin-bottom: 12px;
}

.projects-gallery__bar {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.projects-gallery__result-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.projects-gallery__result-meta p {
  margin: 0;
  color: var(--color-muted);
}

.projects-gallery__result-meta strong {
  color: var(--color-ink);
  font-weight: 600;
}

.projects-gallery__result-meta a {
  color: var(--color-brand-dark);
  font-size: 13px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Project map: edge-to-edge split view with square geometry */
.project-map-page {
  grid-template-columns: minmax(330px, 29vw) minmax(0, 1fr);
}

.project-map-panel {
  padding: 0;
  gap: 0;
  grid-template-rows: auto auto minmax(0, 1fr);
}

.project-map-panel__header {
  padding: clamp(22px, 2.3vw, 38px);
  padding-bottom: 18px;
}

.project-map-panel__tools {
  padding: 0 clamp(22px, 2.3vw, 38px) 18px;
}

.project-map-search,
.project-map-page__canvas,
.project-map-list__item,
.project-map-list__item img,
.project-map-selection {
  border-radius: 0;
}

.project-map-list-shell {
  width: 100%;
  overflow: hidden;
}

.project-map-list {
  width: 100%;
  padding: 0;
  gap: 0;
  scrollbar-color: var(--color-muted) transparent;
}

.project-map-list__item {
  min-height: 80px;
  padding: 11px clamp(18px, 2vw, 30px);
  grid-template-columns: 72px minmax(0, 1fr) 18px;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  box-shadow: none;
}

.project-map-list__item.is-active {
  border-color: var(--color-line);
  background: color-mix(in srgb, var(--color-brand) 18%, var(--color-surface));
  box-shadow: inset 4px 0 0 var(--color-brand);
}

.project-map-list__caret {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  align-self: center;
  color: var(--color-muted);
  line-height: 1;
}

.project-map-list__item.is-active .project-map-list__caret {
  color: var(--color-ink);
}

.project-map-stage {
  padding: 0;
}

.project-map-page__canvas {
  border-width: 0 0 0 1px;
  box-shadow: none;
}

.project-map-selection {
  right: 18px;
  bottom: 18px;
  width: min(330px, calc(100% - 36px));
  min-height: 118px;
  grid-template-columns: minmax(0, 1fr) 96px;
  background: color-mix(in srgb, var(--color-surface) 96%, transparent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.project-map-selection > img {
  min-height: 118px;
}

.project-map-selection__body {
  padding: 13px 14px;
}

.project-map-selection h2 {
  margin: 5px 0 8px;
  font-size: 17px;
}

.project-map-selection__footer {
  padding-top: 4px;
}

.project-map-selection__approximate {
  display: none;
}

.project-map-selection__link {
  display: inline-flex;
  min-height: 30px;
  padding: 0 10px;
  align-items: center;
  gap: 6px;
  color: #fff;
  background: var(--color-brand);
  font-size: 11px;
}

@media (max-width: 980px) {
  .catalog-toolbar__inner {
    grid-template-columns: 1fr auto;
  }

  .catalog-toolbar__search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .project-map-panel__header,
  .project-map-panel__tools {
    padding-right: 18px;
    padding-left: 18px;
  }

  .project-map-stage {
    padding: 0;
  }

  .projects-gallery__bar {
    grid-template-columns: 1fr;
  }

  .projects-gallery__result-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .catalog-toolbar__inner {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar__meta {
    justify-content: space-between;
  }

  .project-map-list__item {
    grid-template-columns: 56px minmax(0, 1fr) 18px;
  }

  .project-map-selection {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }
}

/* Compact category identity hero: no campaign image, only the category mark. */
.page-catalog .catalog-page {
  padding-top: clamp(26px, 3vw, 44px);
}

.page-catalog .catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.32fr);
  align-items: center;
  min-height: 208px;
  padding: clamp(26px, 3.2vw, 48px) 0;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 44px 44px;
}

.page-catalog .catalog-hero__copy {
  display: block;
  max-width: none;
}

.page-catalog .catalog-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-wrap: balance;
}

.catalog-hero__symbol {
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(194px, 100%);
  aspect-ratio: 1;
  padding: clamp(12px, 1.4vw, 20px);
}

.catalog-hero__symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 1900px) {
  .catalog-hero__banner {
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 14%, rgba(0, 0, 0, 0.48) 40%, #000 62%, rgba(0, 0, 0, 0.48) 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 14%, rgba(0, 0, 0, 0.48) 40%, #000 62%, rgba(0, 0, 0, 0.48) 82%, transparent 100%);
  }
}

.catalog-toolbar {
  width: 100%;
  display: block;
  padding-block: 0;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
  transition: background-color 220ms ease, box-shadow 260ms ease, backdrop-filter 220ms ease;
}

.catalog-toolbar--stuck {
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.08);
}

.catalog-products__empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 760px;
  min-height: 164px;
  margin: clamp(26px, 4vw, 54px) auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  color: var(--color-ink);
  text-align: left;
}

.catalog-products__empty > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  color: var(--color-ink);
  font-size: 1.35rem;
}

.catalog-products__empty h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.catalog-products__empty p {
  margin: 7px 0 0;
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.35;
}

.catalog-products__empty a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--color-ink);
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease;
}

.catalog-products__empty a:hover,
.catalog-products__empty a:focus-visible {
  background: #fff;
  color: var(--color-ink);
}

.catalog-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 12px;
}

.catalog-filter-btn,
.catalog-sort {
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text-default);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.catalog-filter-btn:hover,
.catalog-filter-btn:focus-visible,
.catalog-sort:hover,
.catalog-sort:focus-within {
  border-color: rgba(17, 17, 17, 0.36);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text-strong);
}

.catalog-filter-btn.is-active,
.catalog-filter-btn--primary {
  border-color: var(--color-brand-dark);
  background: var(--color-brand-dark);
  color: #fff;
}

.catalog-filter-btn.is-active:hover,
.catalog-filter-btn--primary:hover,
.catalog-filter-btn.is-active:focus-visible,
.catalog-filter-btn--primary:focus-visible {
  border-color: #0f261f;
  background: #0f261f;
  color: #fff;
}

@media (max-width: 820px) {
  .page-catalog .catalog-page {
    padding-top: 18px;
  }

  .page-catalog .catalog-hero {
    grid-template-columns: 1fr auto;
    min-height: 152px;
    padding: 22px 0;
    background-size: 32px 32px;
  }

  .page-catalog .catalog-hero h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .catalog-hero__symbol {
    width: min(104px, 28vw);
    padding: 8px;
  }

  .catalog-products__empty {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    margin-top: 28px;
    padding: 26px 0;
    text-align: center;
  }

  .catalog-products__empty > i,
  .catalog-products__empty a {
    justify-self: center;
  }

  .catalog-toolbar__inner {
    display: grid;
  }

  .catalog-hero__banner {
    right: auto;
    width: 100%;
  }
}

/* Branch: chair canvas replaces the home hero video while keeping hero scroll behavior. */
.hero-landing--chair {
  background: #ffffff;
  color: var(--color-ink);
}

.hero-landing--chair .hero-landing__media {
  display: grid;
  place-items: center;
  background: #ffffff;
}

.hero-landing--chair .hero-landing__media::after {
  display: none;
}

.hero-landing--chair .hero-landing__canvas {
  width: 100%;
  height: 100%;
  background: transparent;
}

.hero-landing--chair .hero-landing__eyebrow,
.hero-landing--chair .hero-landing__title {
  color: var(--color-ink);
}

.hero-landing--chair .hero-landing__primary .btn__text {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: #ffffff;
}

.hero-landing--chair .hero-landing__secondary .btn__text {
  border-color: rgba(17, 17, 17, 0.42);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-ink);
}

.hero-landing--chair .hero-landing__copy {
  mix-blend-mode: normal;
}

/* Creative chair hero composition */
.header--home-compact:not(.header--scrolled) {
  min-height: 74px;
  height: 74px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
  color: var(--color-ink);
}

.header--home-compact:not(.header--scrolled) .header__inner {
  grid-template-rows: 74px !important;
  grid-template-areas: "menu logo nav tools" !important;
  min-height: 74px;
  height: 74px;
}

.header--home-compact:not(.header--scrolled) .header__store-link {
  display: none;
}

.header--home-compact:not(.header--scrolled) .header__logo {
  position: absolute;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.header--home-compact:not(.header--scrolled) .header__link img {
  width: 128px;
}

.header--home-compact:not(.header--scrolled) .header__menu {
  transform: translateY(0);
}

.header--home-compact:not(.header--scrolled) .header__other {
  align-self: center;
  margin-top: 0;
}

.hero-landing--chair {
  min-height: 170svh;
  background:
    radial-gradient(circle at 70% 43%, rgba(184, 132, 53, 0.09), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #fbfaf7 100%);
}

.hero-landing--chair .hero-landing__stage {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100svh;
  margin-top: -100svh;
  background: transparent;
}

.hero-landing--chair .hero-landing__media {
  background: transparent;
}

.hero-landing--chair .hero-landing__media::before {
  content: "";
  position: absolute;
  right: clamp(72px, 8vw, 150px);
  bottom: clamp(32px, 5vh, 86px);
  width: clamp(260px, 30vw, 540px);
  height: clamp(28px, 4.8vw, 74px);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(17, 17, 17, 0.13), rgba(17, 17, 17, 0.04) 52%, transparent 72%);
  filter: blur(14px);
  opacity: calc(0.42 + (var(--hero-copy-progress) * 0.34));
  transform: translateY(calc(30px + (var(--hero-copy-progress) * 34px))) scale(calc(0.82 + (var(--hero-copy-progress) * 0.18)));
  pointer-events: none;
}

.hero-landing--chair .hero-landing__canvas {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(64px);
  transition: opacity 520ms ease;
}

.hero-landing--chair[data-chair-viewer-state="ready"] .hero-landing__canvas,
.hero-landing--chair.is-chair-viewer-ready .hero-landing__canvas {
  opacity: 1;
}

.hero-landing__loader {
  position: absolute;
  top: 50%;
  right: clamp(160px, 23vw, 380px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
  opacity: 1;
  transform: translate(50%, -50%);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.hero-landing__loader span {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(17, 17, 17, 0.14);
  border-top-color: var(--color-ink);
  border-radius: 50%;
  animation: chairHeroLoaderSpin 760ms linear infinite;
}

.hero-landing--chair[data-chair-viewer-state="ready"] .hero-landing__loader,
.hero-landing--chair.is-chair-viewer-ready .hero-landing__loader {
  opacity: 0;
  visibility: hidden;
  transform: translate(50%, -50%) scale(0.88);
}

.hero-landing--chair .hero-landing__content {
  position: sticky;
  inset: auto;
  top: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  align-items: center;
  justify-content: stretch;
  height: 100svh;
  min-height: 100svh;

  padding-top: 74px;
  padding-bottom: clamp(42px, 7vh, 88px);
  pointer-events: none;
}

.hero-landing--chair .hero-landing__copy {
  width: min(60vw, 780px);
  max-width: 60vw;
  margin-left: clamp(42px, 6vw, 112px);
  text-align: left;
  opacity: calc(1 - var(--hero-copy-fade-progress, 0));
  transform: none;
  will-change: transform, opacity;
  pointer-events: auto;
}

.hero-landing--chair .hero-landing__eyebrow,
.hero-landing--chair .hero-landing__actions {
  animation: chairHeroItemIn 860ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(180ms + (var(--hero-item-index, 0) * 210ms));
}

.hero-landing--chair .hero-landing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--color-brand-dark);
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-landing--chair .hero-landing__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero-landing--chair .hero-landing__title {
  max-width: 100%;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.hero-landing--chair .hero-landing__title > span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.035em;
}

.hero-landing--chair .hero-landing__title > span > span {
  display: block;
  transform: translate3d(0, 112%, 0);
  animation: chairHeroLineReveal 980ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(300ms + (var(--hero-line-index, 0) * 185ms));
}

.hero-landing--chair .hero-landing__title > span:nth-child(1) > span {
  --hero-line-index: 0;
}

.hero-landing--chair .hero-landing__title > span:nth-child(2) > span {
  --hero-line-index: 1;
}

.hero-landing--chair .hero-landing__title > span:nth-child(3) > span {
  --hero-line-index: 2;
}

.hero-landing--chair .hero-landing__actions {
  justify-content: flex-start;
  gap: 12px;
  margin-top: clamp(26px, 4vw, 44px);
}

.hero-landing--chair .btn__text {
  min-width: 204px;
  min-height: 48px;
  border-radius: var(--radius-control);
  font-size: 0.9rem;
}

.hero-landing--chair .hero-landing__secondary .btn__text {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@keyframes chairHeroItemIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes chairHeroLineReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 112%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes chairHeroLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .hero-landing--chair .hero-landing__content {
    grid-template-columns: minmax(300px, 0.52fr) minmax(0, 0.48fr);
  }

  .hero-landing--chair .hero-landing__copy {
    width: min(100%, 560px);
    margin: 0;
  }

  .hero-landing--chair .hero-landing__title {
    font-size: 3rem;
  }
}

@media (max-width: 820px) {
  .hero-landing--chair .hero-landing__content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 96px;
    padding-bottom: 58px;
  }

  .hero-landing--chair .hero-landing__copy {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-landing--chair .hero-landing__eyebrow {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-landing--chair .hero-landing__eyebrow::before {
    display: none;
  }

  .hero-landing--chair .hero-landing__title {
    font-size: 3rem;
    line-height: 0.94;
  }

  .hero-landing--chair .hero-landing__actions {
    justify-content: center;
  }

  .hero-landing--chair .hero-landing__media::before {
    right: 50%;
    bottom: 32vh;
    transform: translateX(50%) translateY(calc(-28px + (var(--hero-copy-progress) * 28px))) scale(calc(0.78 + (var(--hero-copy-progress) * 0.18)));
  }

  .hero-landing__loader {
    top: 34vh;
    right: 50%;
  }
}

/* Header base state: keep the compact/scrolled top bar layout active from first paint. */
.header.header--scrolled,
.header.is-unpinned {
  transform: translateY(0);
}

.header__reading-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.header__reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #ffd400;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.content-sidebar-back {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  padding-block: 6px;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.content-sidebar-back i {
  flex: 0 0 auto;
  font-size: 1.15em;
  transition: transform 180ms ease;
}

.content-sidebar-back:hover i,
.content-sidebar-back:focus-visible i {
  transform: translateX(-4px);
}

.header.header--scrolled {
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    background-color 220ms ease,
    backdrop-filter 220ms ease;
}

.header.header--elevated {
  border-bottom-color: rgba(17, 17, 17, 0.1);
  box-shadow: 0 18px 44px rgba(36, 72, 60, 0.09);
}

.page-catalog .header.header--scrolled,
.header--home-compact.header--scrolled {
  border-bottom-color: transparent;
  box-shadow: none;
}

.header--media-top.header--home-compact.header--scrolled:not(.header--elevated) {
  top: 0 !important;
  background: transparent !important;
  color: #fff;
  border-bottom-color: transparent;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body:has(.header--media-top) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body:has(.header--media-top) .home-media-hero {
  margin-top: 0 !important;
  min-height: 100svh;
}

body:has(.header--media-top) .about-hero,
body:has(.header--media-top) .contact-hero {
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
}

.header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .m-main__link,
.header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .header-icon-link,
.header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .site-menu-toggle {
  color: rgba(255, 255, 255, 0.9);
}

.header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .m-main__link.is-active,
.header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .m-main__link:hover,
.header--media-top.header--home-compact.header--scrolled:not(.header--elevated) .m-main__link:focus-visible {
  color: #fff;
}

/* Keep navigation legible away from the homepage media hero. */
.header:not(.header--media-top) {
  background: rgba(255, 253, 248, 0.98) !important;
  border-bottom-color: rgba(17, 17, 17, 0.1) !important;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
}

/* Project and fair pages */
.project-detail-page,
.fair-page,
.fair-detail-page {
  padding: 118px 0 clamp(64px, 8vw, 128px);
  background: #fff;
  color: var(--color-ink);
}

.project-detail-hero,
.fair-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  min-height: min(690px, calc(100svh - 118px));
  background: #f6f6f4;
}

.project-detail-hero__visual,
.fair-detail-hero__media {
  min-height: 100%;
  overflow: hidden;
  background: #eaeae7;
}

.project-detail-hero__visual img,
.fair-detail-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-detail-hero:hover .project-detail-hero__visual img,
.fair-detail-hero:hover .fair-detail-hero__media img {
  transform: scale(1.025);
}

.project-detail-hero__content,
.fair-detail-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(30px, 5vw, 84px);
}

.project-detail__eyebrow,
.fair-detail-hero__content > p,
.fair-page__hero > p,
.detail-section-heading p {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-detail-hero h1,
.fair-detail-hero h1,
.fair-page__hero h1 {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-wrap: balance;
}

.project-detail-hero__summary,
.fair-detail-hero__content > div {
  max-width: 53ch;
  margin: 26px 0 0;
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.52;
}

.project-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin: 42px 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.project-detail-facts div {
  min-height: 68px;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.project-detail-facts dt {
  margin-bottom: 5px;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-detail-facts dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 550;
}

.project-detail-section {
  padding-top: clamp(50px, 7vw, 110px);
}

.detail-section-heading {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 22px);
}

.project-detail-gallery__item {
  grid-column: span 5;
  display: block;
  min-height: 260px;
  overflow: hidden;
  background: #ececea;
}

.project-detail-gallery__item:nth-child(3n + 1) { grid-column: span 7; }
.project-detail-gallery__item:nth-child(3n + 2) { grid-column: span 5; }
.project-detail-gallery__item:nth-child(3n) { grid-column: span 6; }

.project-detail-gallery__item img,
.project-detail-gallery__item video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.project-detail-gallery__item:hover img { transform: scale(1.03); }

.project-detail-section--products { padding-bottom: 4px; }

.detail-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 24px);
}

.detail-product-card {
  display: grid;
  gap: 12px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.detail-product-card__image {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: #f5f5f3;
}

.detail-product-card__image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.detail-product-card:hover .detail-product-card__image img { transform: scale(1.04); }

.detail-related-grid,
.fair-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 28px);
}

.detail-related-card,
.fair-card {
  display: grid;
  color: var(--color-ink);
  text-decoration: none;
}

.detail-related-card img,
.fair-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ececea;
}

.detail-related-card img,
.fair-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 340ms ease;
}

.detail-related-card:hover img,
.fair-card:hover img { transform: scale(1.035); }

.detail-related-card > span,
.fair-card__content {
  display: grid;
  gap: 5px;
  padding-top: 12px;
}

.detail-related-card small,
.fair-card small {
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.detail-related-card strong,
.fair-card strong {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  font-weight: 650;
}

.project-detail-back { margin-top: clamp(48px, 6vw, 88px); }
.project-detail-back a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.fair-page { min-height: 70svh; }
.fair-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.3fr);
  gap: 22px;
  align-items: end;
  min-height: 260px;
  padding: clamp(30px, 4vw, 62px) clamp(18px, 3vw, 42px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 44px 44px;
}

.fair-page__hero h1 { grid-column: 1; }
.fair-page__hero > span {
  grid-column: 2;
  align-self: end;
  max-width: 34ch;
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.45;
}

.fair-page__grid { padding-top: clamp(28px, 4vw, 62px); }
.fair-card__content { min-height: 116px; border-top: 1px solid rgba(17, 17, 17, 0.14); }
.fair-card em {
  width: fit-content;
  padding: 4px 7px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  color: rgba(17, 17, 17, 0.68);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fair-page__empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 260px;
  place-content: center;
  justify-items: center;
  gap: 12px;
  color: rgba(17, 17, 17, 0.6);
  text-align: center;
}
.fair-page__empty i { font-size: 2.2rem; }

@media (max-width: 820px) {
  .project-detail-page,
  .fair-page,
  .fair-detail-page { padding-top: 74px; }
  .project-detail-hero,
  .fair-detail-hero { grid-template-columns: 1fr; min-height: 0; }
  .project-detail-hero__visual img,
  .fair-detail-hero__media img { min-height: 320px; aspect-ratio: 4 / 3; }
  .project-detail-hero__content,
  .fair-detail-hero__content { min-height: 0; padding: 28px 18px 34px; }
  .project-detail-hero h1,
  .fair-detail-hero h1,
  .fair-page__hero h1 { font-size: 3rem; }
  .project-detail-facts { margin-top: 28px; }
  .project-detail-gallery__item,
  .project-detail-gallery__item:nth-child(n) { grid-column: span 12; min-height: 260px; }
  .detail-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-related-grid,
  .fair-page__grid { grid-template-columns: 1fr; }
  .fair-page__hero { grid-template-columns: 1fr; min-height: 0; padding: 30px 18px; }
  .fair-page__hero > span { grid-column: 1; margin-top: 18px; }
}

.page-catalog .header.header--elevated,
.header--home-compact.header--elevated {
  border-bottom-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 44px rgba(36, 72, 60, 0.09);
      background: rgba(255, 253, 248, 0.85);
}

.btn__text,
.catalog-filter-btn,
.catalog-sort,
.catalog-filter-chip,
.catalog-filter-panel footer a,
.catalog-filter-panel footer button {
  border-radius: var(--radius-control);
}

/* Projects archive */
.projects-page {
  padding: clamp(34px, 5vw, 76px) 0 clamp(54px, 8vw, 116px);
  background: #ffffff;
  color: var(--color-ink);
}

.projects-page__hero {
  display: block;
  min-height: 0;
  padding: clamp(28px, 3.4vw, 48px) clamp(18px, 3vw, 42px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 44px 44px;
}

.projects-page__hero-copy {
  display: grid;
  gap: 12px;
  align-content: end;
  max-width: 800px;
}

.projects-page__eyebrow {
  margin: 0;
  color: rgba(17, 17, 17, 0.56);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.projects-page__hero h1 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-wrap: balance;
}

.projects-page__summary {
  max-width: 610px;
  margin: 0;
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.45;
}

.projects-gallery {
  padding-top: clamp(18px, 3vw, 38px);
}

.projects-gallery__bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.projects-gallery__bar p {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
}

.projects-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
}

.projects-gallery__item {
  grid-column: span 4;
  min-width: 0;
  aspect-ratio: 4 / 3;
}

.projects-gallery__item:nth-child(1),
.projects-gallery__item:nth-child(4n + 1) {
  grid-column: span 7;
  aspect-ratio: 16 / 9;
}

.projects-gallery__item:nth-child(2),
.projects-gallery__item:nth-child(4n + 2) {
  grid-column: span 5;
  aspect-ratio: 4 / 3;
}

.projects-gallery__item:nth-child(3),
.projects-gallery__item:nth-child(4n + 3) {
  grid-column: span 5;
  aspect-ratio: 4 / 3;
}

.projects-gallery__item:nth-child(4),
.projects-gallery__item:nth-child(4n) {
  grid-column: span 7;
  aspect-ratio: 16 / 9;
}

.project-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 3px;
  background: #201e1b;
  color: #ffffff;
  isolation: isolate;
}

.project-card > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.84);
  transform: scale(1.01);
  transition: filter 460ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.7) 100%);
  transition: opacity 360ms ease;
}

.project-card__content {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(16px, 2.4vw, 30px);
  left: clamp(16px, 2.4vw, 30px);
  display: grid;
  gap: 7px;
}

.project-card__location {
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-card__title {
  max-width: calc(100% - 68px);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.6vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}

.projects-gallery__item:nth-child(2) .project-card__title,
.projects-gallery__item:nth-child(3) .project-card__title {
  font-size: clamp(1.2rem, 2vw, 2.25rem);
}

.project-card__action {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(16px, 2.4vw, 30px);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.project-card:hover > img,
.project-card:focus-visible > img {
  filter: saturate(1) brightness(0.98);
  transform: scale(1.06);
}

.project-card:hover .project-card__shade,
.project-card:focus-visible .project-card__shade {
  opacity: 0.7;
}

.project-card:hover .project-card__action,
.project-card:focus-visible .project-card__action {
  background: #fff;
  color: var(--color-ink);
  transform: translate3d(3px, -3px, 0);
}

.projects-gallery__sentinel {
  height: 1px;
}

.projects-gallery__empty {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 240px;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  color: var(--color-body-text);
  font-family: var(--font-body);
  text-align: center;
}

.projects-gallery__empty i {
  color: var(--color-ink);
  font-size: 2rem;
}

@media (max-width: 820px) {
  .projects-page {
    padding-top: 28px;
  }

  .projects-page__hero {
    min-height: 184px;
    padding: 26px 18px;
    background-size: 32px 32px;
  }

  .projects-page__hero h1 {
    font-size: 3rem;
  }

  .projects-page__summary {
    font-size: 1rem;
  }

  .projects-gallery__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .projects-gallery__item,
  .projects-gallery__item:nth-child(n) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .projects-gallery__item:nth-child(4n + 1),
  .projects-gallery__item:nth-child(4n) {
    aspect-ratio: 1.25;
  }

  .project-card__title,
  .projects-gallery__item:nth-child(2) .project-card__title,
  .projects-gallery__item:nth-child(3) .project-card__title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
}

.sticky-stack-demo {
  --primary: #0f77f1;
  --white: #ffffff;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  scroll-margin-top: 8rem;
}

.sticky-stack-demo__intro {
  width: min(100%, 920px);
  margin: 0;
  text-align: center;
  will-change: opacity, transform;
}

.js .sticky-stack-demo__intro {
  opacity: var(--stack-intro-progress, 1);
  transform: translate3d(0, calc((1 - var(--stack-intro-progress, 1)) * 44px), 0);
}

.sticky-stack-demo__title {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.sticky-stack-demo__summary {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.45;
  text-wrap: balance;
}

.sticky-stack-demo h2 {
  font-size: 2.4rem;
}

.sticky-stack-demo h3 {
  max-width: 60rem;
  margin-bottom: 4rem;
  color: var(--white);
  font-size: 2.4rem;
  letter-spacing: -1px;
  line-height: 92.5%;
  text-wrap: balance;
}

.sticky-stack-demo .sticky-header {
  display: none;
}

.sticky-stack-demo .absolute-header {
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: red;
  text-align: center;
}

.sticky-stack-demo .process__container {
  width: 100%;
  max-width: 120rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sticky-stack-demo .cards-container {
  position: relative;
  width: 100%;
  max-width: 90rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sticky-stack-demo .card {
  position: sticky;
  top: var(--header-height);
  z-index: var(--demo-card-z, 1);
  height: 80vh;
  padding-top: 40px;
}

.sticky-stack-demo .card-body {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  border-radius: 2px;
  background-color: #f2f2f2;
  opacity: var(--demo-card-opacity, 0);
  transform: translate3d(0, var(--demo-card-y, 0), 0) scale(var(--demo-card-scale, 1));
  transform-origin: center top;
  transition: none;
  will-change: opacity, transform;
}

.sticky-stack-demo .card-body img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.sticky-stack-demo .card-body__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.sticky-stack-demo .card-body__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  width: min(820px, 84%);
  margin: auto;
  color: #ffffff;
  text-align: center;
}

.sticky-stack-demo .card-body__place {
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
}

.sticky-stack-demo .card-body__title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
  text-wrap: balance;
}

.sticky-stack-demo .empty-container {
  width: 100%;
  height: clamp(80px, 12vh, 150px);
  background-color: transparent;
}

.sticky-stack-demo .text-gradient {
  background-image: linear-gradient(to right, var(--primary), #2ba7ef, #2cdfce);
  background-size: 200% 200%;
  background-clip: text;
  color: transparent;
  animation: stickyStackGradient 3s ease infinite;
}

@keyframes stickyStackGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media only screen and (max-width: 950px) {
  .sticky-stack-demo {
    scroll-margin-top: 6rem;
  }
}

@media (max-width: 720px) {
  .site-footer {
    margin-top: 56px;
    background-size: 48px 48px;
  }

  .site-footer > .row-main {
    padding-block: 34px 20px;
  }

  .site-footer__mast {
    margin-bottom: 34px;
  }

  .site-footer__mast h2 {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__brand p {
    margin-top: 16px;
    font-size: 1rem;
  }

  .site-footer__bottom {
    display: grid;
    gap: 8px;
    align-items: start;
    margin-top: 34px;
    padding-top: 18px;
  }

  .site-footer__meta-links {
    justify-content: flex-start;
    gap: 8px 16px;
  }
}

/* Final project-detail composition overrides. */
.project-detail-page .project-detail-hero {
  position: relative;
  display: block;
  grid-template-columns: none;
  min-height: clamp(540px, 76svh, 820px);
  overflow: hidden;
  background: #171717;
}

.project-detail-page .project-detail-hero__visual {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.project-detail-page .project-detail-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.project-detail-page .project-detail-hero__content {
  position: absolute;
  top: 47%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 1;
  display: block;
  width: calc(100% - clamp(48px, 8vw, 128px));
  padding: 0;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}

.project-detail-page .project-detail-hero h1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  font-size: 3rem;
  line-height: 0.94;
  text-align: center;
}

.project-detail-page .project-detail-hero__content .project-detail-hero__place {
  justify-self: center;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.project-detail-page .project-detail-hero__facts {
  position: absolute;
  right: clamp(18px, 3vw, 46px);
  bottom: clamp(16px, 1.5vw, 24px);
  left: clamp(18px, 3vw, 46px);
  z-index: 2;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.project-detail-page .project-detail-hero__facts div {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 82px;
  padding: 17px clamp(16px, 2.4vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 0;
  text-align: center;
}

.project-detail-page .project-detail-hero__facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.project-detail-page .project-detail-hero__facts dt {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
}

.project-detail-page .project-detail-hero__facts dt i {
  font-size: 0.92rem;
  font-weight: 400;
}

.project-detail-page .project-detail-hero__facts dd {
  color: #fff;
}

.project-detail-page .project-detail-intro {
  display: block;
  padding-top: clamp(42px, 5vw, 76px);
}

.project-detail-page .project-detail-intro .project-detail-hero__summary,
.project-detail-page .project-detail-intro .project-detail-facts {
  margin-top: 0;
}

.project-detail-page .project-detail-intro .project-detail-facts {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  order: 1;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.project-detail-page .project-detail-intro .project-detail-facts div {
  min-height: 74px;
  padding: 15px clamp(18px, 2.5vw, 38px) 16px 0;
  border-bottom: 0;
}

.project-detail-page .project-detail-intro .project-detail-facts div + div {
  padding-left: clamp(18px, 2.5vw, 38px);
  border-left: 1px solid rgba(17, 17, 17, 0.12);
}

.project-detail-page .project-detail-description {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.project-detail-page .project-detail-description .project-detail-hero__summary {
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-family: var(--font-body);
  font-size: clamp(1.06rem, 1.22vw, 1.24rem);
  line-height: 1.72;
}

.project-detail-page .project-detail-description__label {
  margin: 0;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
}

.project-detail-page .project-detail-intro + .project-media-section {
  padding-top: clamp(34px, 4vw, 58px);
}

.project-detail-page .project-detail-gallery {
  display: flex;
  grid-template-columns: none;
  gap: clamp(10px, 1.25vw, 18px);
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.project-detail-page .project-detail-gallery__item,
.project-detail-page .project-detail-gallery__item:nth-child(n) {
  grid-column: auto;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: 3px;
  scroll-snap-align: start;
}

.project-detail-page .project-detail-gallery__item img,
.project-detail-page .project-detail-gallery__item video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.project-detail-page .project-detail-gallery--centered {
  justify-content: center;
}

.project-detail-page .detail-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 354px));
  justify-content: center;
}

.project-detail-page .project-detail-section--products .detail-section-heading {
  justify-content: center;
}

.project-detail-page .project-detail-section--products .detail-section-heading p,
.project-detail-page .detail-product-card {
  text-align: center;
}

@media (max-width: 820px) {
  .project-detail-page .project-detail-hero {
    min-height: min(680px, calc(100svh - 74px));
  }

  .project-detail-page .project-detail-hero__content {
    top: 43%;
    width: calc(100% - 32px);
  }

  .project-detail-page .project-detail-hero h1 {
    max-width: 94%;
    font-size: 3rem;
  }

  .project-detail-page .project-detail-hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 0;
  }

  .project-detail-page .project-detail-hero__facts div {
    min-height: 66px;
    padding: 10px 12px;
  }

  .project-detail-page .project-detail-hero__facts div:nth-child(odd) {
    border-left: 0;
  }

  .project-detail-page .project-detail-hero__facts div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.32);
  }

  .project-detail-page .project-detail-hero__visual img {
    min-height: 0;
    aspect-ratio: auto;
  }

  .project-detail-page .project-detail-intro {
    gap: 30px;
  }

  .project-detail-page .project-detail-gallery__item,
  .project-detail-page .project-detail-gallery__item:nth-child(n) {
    flex-basis: 84%;
  }
}

.search-is-open .f-suggest__holder,
.f-suggest.is-open .f-suggest__holder {
  position: fixed;
  inset: 0;
  z-index: 2147483645;
  display: block;
  width: 100vw;
  height: 100svh;
  padding: calc(var(--header-height) + clamp(18px, 5vh, 64px)) var(--gutter) 40px;
  overflow: auto;
  background: rgba(20, 20, 18, 0.38);
  backdrop-filter: blur(16px);
}

.search-is-open .f-suggest__holder .row-main,
.f-suggest.is-open .f-suggest__holder .row-main {
  width: min(900px, 100%);
  margin-inline: auto;
}

/* Final viewport and section-boundary rules. */
.site-footer,
.footer {
  margin-top: 0;
}

.project-map-page {
  --project-map-top: 77px;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--project-map-top);
  overflow: hidden;
}

.project-map-panel,
.project-map-stage {
  height: calc(100vh - var(--project-map-top));
  height: calc(100dvh - var(--project-map-top));
  min-height: 0;
}

.project-map-page__canvas {
  height: 100%;
  min-height: 0;
}

.project-map-selection {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.about-hero__inner {
  padding-top: 0;
}

body:has(.header--media-top) .about-hero {
  padding-top: 0;
}

.projects-gallery__bar {
  display: grid;
  grid-template-columns: minmax(280px, 520px) auto;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.projects-gallery__result-meta {
  justify-content: flex-start;
}

.projects-gallery__show-all {
  padding: 0;
  color: var(--color-brand-dark);
  font: 650 13px/1.2 var(--font-sans);
  text-decoration: underline;
  text-underline-offset: 4px;
  background: transparent;
  border: 0;
}

.projects-gallery__grid {
  grid-auto-rows: clamp(280px, 31vw, 520px);
}

.projects-gallery__item,
.projects-gallery__item:nth-child(n) {
  height: 100%;
  aspect-ratio: auto;
}

.projects-gallery__item.is-layout-wide {
  grid-column: span 7;
}

.projects-gallery__item.is-layout-narrow {
  grid-column: span 5;
}

.projects-gallery__item[hidden],
.projects-gallery__empty[hidden],
.projects-gallery__result-meta [hidden] {
  display: none;
}

@media (max-width: 860px) {
  .project-map-page {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  .project-map-panel {
    height: auto;
  }

  .project-map-stage {
    height: 62dvh;
    min-height: 500px;
  }

  .projects-gallery__bar {
    grid-template-columns: minmax(0, 520px);
  }

  .projects-gallery__grid {
    grid-auto-rows: clamp(280px, 72vw, 440px);
  }

  .projects-gallery__item.is-layout-wide,
  .projects-gallery__item.is-layout-narrow {
    grid-column: auto;
  }
}

/* Final shared section hierarchy and contact/about layout */
:root {
  --section-title-size: clamp(1.9rem, 2.6vw, 2.75rem);
}

.contact-email-form input:focus,
.contact-email-form textarea:focus,
.contact-email-form button:focus {
  outline: 0;
}

.contact-main {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: calc(100dvh - 77px);
  padding-top: clamp(42px, 5vh, 66px);
  padding-bottom: clamp(42px, 5vh, 66px);
}

.contact-main__head {
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
  margin-bottom: clamp(22px, 3vh, 34px);
}

.contact-grid {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 3.5vw, 56px);
  align-items: stretch;
  min-height: 0;
}

.contact-details {
  align-content: start;
}

.contact-map {
  min-height: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
}

.contact-map iframe {
  height: 100%;
  min-height: 100%;
}

.about-hero,
.about-hero__inner {
  min-height: min(660px, 86svh);
}

.about-hero__inner {
  display: flex;
  align-items: flex-end;
  padding-top: clamp(130px, 14vw, 210px);
  padding-bottom: clamp(44px, 6vw, 86px);
}

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

.about-hero__media::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.4) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 38%, rgba(0, 0, 0, 0.46));
}

.about-hero__copy > p:not(.about-eyebrow) {
  max-width: 56ch;
  margin-top: 24px;
}

.about-intro h2,
.about-workshop__content h2,
.about-section__head h2,
.about-contact__copy h2,
.contact-main__head h2,
.home-lookbook__title,
.home-spaces__title,
.c-products-carousel__title,
.home-architect-panel__title,
.sticky-stack-demo__title,
.product-detail-section__head h2 {
  font-size: var(--section-title-size);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-project-card a {
  min-height: 0;
  aspect-ratio: 1;
}

@media (max-width: 1024px) {
  .contact-main {
    min-height: 0;
  }

  .contact-main__head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 520px;
    height: 520px;
  }
}

@media (max-width: 820px) {
  .about-hero,
  .about-hero__inner {
    min-height: 100svh;
  }

  .about-hero__inner {
    padding-top: 112px;
    padding-bottom: 38px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 430px;
    height: 430px;
  }
}

/* Horizontally scrollable catalog filters with directional edge fades */
.catalog-toolbar__filters-shell {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.catalog-toolbar__filters-shell::before,
.catalog-toolbar__filters-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.catalog-toolbar__filters-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0));
}

.catalog-toolbar__filters-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0));
}

.catalog-toolbar__filters-shell.has-overflow-start::before,
.catalog-toolbar__filters-shell.has-overflow-end::after {
  opacity: 1;
}

.catalog-toolbar__filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 1px;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.catalog-toolbar__filters::-webkit-scrollbar {
  display: none;
}

.catalog-toolbar__filters > * {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Site-wide display type ceiling */
.hero-landing__title,
.hero-landing--video .hero-landing__title,
.hero-landing--chair .hero-landing__title,
.home-media-hero__title,
.about-hero h1,
.contact-hero h1,
.project-detail-hero h1,
.project-detail-page .project-detail-hero h1,
.fair-detail-hero h1,
.fair-page__hero h1,
.projects-page__hero h1 {
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1;
}

.page-catalog .catalog-hero h1,
.catalog-hero h1 {
  font-size: 4rem;
  letter-spacing: 0;
  line-height: 1;
}

.home-project-stack__intro h2,
.home-project-stack__title,
.site-footer__mast h2,
.sticky-stack-demo .card-body__title {
  font-size: 4rem;
}

:root {
  --section-title-size: 2.75rem;
}

@media (max-width: 980px) {
  .catalog-toolbar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .catalog-toolbar__filters-shell {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --section-title-size: 2.1rem;
  }

  .page-catalog .catalog-hero h1,
  .catalog-hero h1 {
    font-size: 3rem;
  }

  .home-project-stack__title,
  .sticky-stack-demo .card-body__title,
  .site-footer__mast h2 {
    font-size: 2.5rem;
  }

  .catalog-toolbar {
    top: 76px;
  }

  .catalog-toolbar__inner {
    gap: 10px;
  }

  .catalog-filter-btn,
  .catalog-sort {
    min-height: 40px;
    padding-inline: 14px;
  }

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

@media (max-width: 620px) {
  .catalog-toolbar__filters-shell {
    width: 100%;
  }

  .catalog-toolbar__filters-shell::before,
  .catalog-toolbar__filters-shell::after {
    width: 24px;
  }

  .catalog-toolbar__meta {
    width: 100%;
  }

  .catalog-product-card h2 {
    overflow-wrap: anywhere;
  }

  .catalog-toolbar__filters {
    scroll-padding-inline: 24px;
  }
}

@media (max-width: 820px) {
  main,
  section,
  article,
  .row-main,
  .grid,
  .grid__cell {
    min-width: 0;
  }

  img,
  video,
  iframe,
  input,
  select,
  textarea {
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  h4,
  p,
  a,
  button {
    overflow-wrap: anywhere;
  }
}

/* Final contact, about and map compositions */
.hero-landing__title,
.hero-landing--video .hero-landing__title,
.hero-landing--chair .hero-landing__title,
.home-media-hero__title,
.about-hero h1,
.contact-hero h1,
.project-detail-hero h1,
.project-detail-page .project-detail-hero h1,
.fair-detail-hero h1,
.fair-page__hero h1,
.projects-page__hero h1,
.b-annot__title.h0,
.b-annot-reference__title.h0,
.b-search-results__title.h0,
.error-hero__title,
.page-catalog .catalog-hero h1,
.catalog-hero h1 {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

.project-map-selection {
  right: auto;
  left: 50%;
  bottom: 24px;
  width: min(520px, calc(100% - 48px));
  min-height: 190px;
  grid-template-columns: minmax(0, 1fr) 180px;
  transform: translateX(-50%);
}

.project-map-selection > img {
  display: block;
  width: 180px;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.project-map-selection__body {
  display: flex;
  min-width: 0;
  padding: 22px 24px;
  flex-direction: column;
}

.project-map-selection h2 {
  margin: 8px 0 16px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.project-map-selection__footer {
  margin-top: auto;
  padding-top: 10px;
}

.project-map-selection__link {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-hero__inner {
  display: flex;
  align-items: flex-end;
}

.contact-hero__copy {
  max-width: 780px;
}

.contact-email-form {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 253, 248, 0.76);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.contact-main {
  display: block;
  min-height: 0;
  padding-top: clamp(56px, 7vw, 104px);
  padding-bottom: clamp(64px, 8vw, 120px);
}

.contact-info-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(38px, 5vw, 72px);
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}

.contact-info-column {
  min-width: 0;
  min-height: 250px;
  padding: clamp(26px, 3.2vw, 46px);
}

.contact-info-column + .contact-info-column {
  border-left: 1px solid rgba(17, 17, 17, 0.2);
}

.contact-info-column__label {
  margin: 0 0 26px;
  color: var(--color-muted);
  font: 600 0.72rem/1.2 var(--font-heading);
  text-transform: uppercase;
}

.contact-info-column h3 {
  margin: 0 0 22px;
  color: var(--color-text-strong);
  font: 650 clamp(1.5rem, 2vw, 2rem)/1.05 var(--font-heading);
  letter-spacing: 0;
}

.contact-info-column__address,
.contact-info-column__hours {
  display: block;
  max-width: 34ch;
  margin: 0;
  color: var(--color-body-text);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-info-column__links {
  display: grid;
  gap: 14px;
}

.contact-info-column__links a {
  display: grid;
  grid-template-columns: minmax(70px, 0.4fr) minmax(0, 1fr);
  gap: 14px;
  color: var(--color-text-strong);
}

.contact-info-column__links span {
  color: var(--color-muted);
  font-size: 0.75rem;
}

.contact-info-column__links strong {
  min-width: 0;
  font-size: 0.92rem;
  font-weight: 560;
}

.contact-info-column__actions {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.contact-info-column__actions a {
  display: inline-flex;
  min-height: 42px;
  padding: 8px 0;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--color-text-strong);
  font-weight: 600;
}

.contact-map-stage {
  position: relative;
  min-height: 680px;
}

.contact-map-stage .contact-map,
.contact-map-stage .contact-map iframe {
  width: 100%;
  height: 680px;
  min-height: 680px;
}

.contact-map-stage .contact-email-form {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(24px, 5vw, 76px);
  width: min(460px, calc(100% - 48px));
  transform: translateY(-50%);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.2);
}

.about-workshop {
  overflow: visible;
  padding-bottom: 0;
}

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

.about-workshop__content {
  overflow: visible;
}

.about-workshop__form-wrap {
  position: relative;
  z-index: 3;
  width: min(520px, 100%);
  margin-top: clamp(28px, 4vw, 54px);
  transform: translateY(clamp(72px, 8vw, 118px));
}

.about-workshop__form-wrap .contact-email-form {
  box-shadow: 0 30px 76px rgba(17, 17, 17, 0.18);
}

.about-projects {
  padding-top: clamp(170px, 16vw, 250px);
}

@media (max-width: 1024px) {
  .contact-info-band {
    grid-template-columns: 1fr;
  }

  .contact-info-column {
    min-height: 0;
  }

  .contact-info-column + .contact-info-column {
    border-top: 1px solid rgba(17, 17, 17, 0.2);
    border-left: 0;
  }

  .about-workshop__form-wrap {
    width: min(620px, 100%);
    transform: translateY(72px);
  }

  .about-projects {
    padding-top: 150px;
  }
}

@media (max-width: 820px) {
  .hero-landing__title,
  .hero-landing--video .hero-landing__title,
  .hero-landing--chair .hero-landing__title,
  .home-media-hero__title,
  .about-hero h1,
  .contact-hero h1,
  .project-detail-hero h1,
  .project-detail-page .project-detail-hero h1,
  .fair-detail-hero h1,
  .fair-page__hero h1,
  .projects-page__hero h1,
  .b-annot__title.h0,
  .b-annot-reference__title.h0,
  .b-search-results__title.h0,
  .error-hero__title,
  .page-catalog .catalog-hero h1,
  .catalog-hero h1 {
    font-size: 4rem;
  }

  .project-map-selection {
    bottom: 16px;
    width: calc(100% - 28px);
    min-height: 154px;
    grid-template-columns: minmax(0, 1fr) 128px;
  }

  .project-map-selection > img {
    display: block;
    width: 128px;
    min-height: 154px;
  }

  .project-map-selection__body {
    padding: 16px;
  }

  .project-map-selection h2 {
    margin-bottom: 10px;
    font-size: 1.05rem;
  }

  .project-map-selection__link {
    min-height: 42px;
    padding: 8px 12px;
  }

  .contact-main__head {
    grid-template-columns: 1fr;
  }

  .contact-map-stage {
    display: grid;
    min-height: 0;
    gap: 24px;
  }

  .contact-map-stage .contact-map,
  .contact-map-stage .contact-map iframe {
    height: 460px;
    min-height: 460px;
  }

  .contact-map-stage .contact-email-form {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
    box-shadow: none;
  }

  .about-workshop__form-wrap {
    margin-top: 34px;
    transform: none;
  }

  .about-projects {
    padding-top: clamp(68px, 12vw, 100px);
  }
}

@media (max-width: 560px) {
  .project-map-selection {
    grid-template-columns: minmax(0, 1fr) 108px;
  }

  .project-map-selection > img {
    width: 108px;
  }

  .project-map-selection__meta {
    font-size: 0.65rem;
  }

  .project-map-selection h2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .contact-info-column {
    padding: 26px 20px;
  }

  .contact-info-column__links a {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* About workshop: bounded sticky media and overlapping glass form */
.about-workshop__media {
  --about-video-parallax: 0px;
}

.about-workshop__media video {
  transform: scale(1.08) translate3d(0, var(--about-video-parallax), 0);
  transform-origin: center;
  will-change: transform;
}

.about-workshop__form-wrap {
  width: min(620px, calc(100% + 110px));
  margin-top: clamp(12px, 2vw, 24px);
  margin-left: clamp(-110px, -7vw, -72px);
  transform: translateY(clamp(20px, 3vw, 42px));
}

.about-workshop__form-wrap .contact-email-form {
  background: rgba(255, 253, 248, 0.7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.about-workshop__form-wrap .contact-email-form form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-projects {
  padding-top: clamp(120px, 12vw, 190px);
}

@media (min-width: 1025px) {
  .about-workshop__media {
    position: sticky;
    top: calc(var(--header-height, 77px) + 174px);
    margin-bottom: 150px;
  }
}

@media (max-width: 1024px) {
  .about-workshop__media {
    position: relative;
    top: auto;
    margin-bottom: 0;
  }

  .about-workshop__form-wrap {
    width: min(720px, 100%);
    margin-left: 0;
    transform: translateY(36px);
  }

  .about-projects {
    padding-top: 120px;
  }
}

@media (max-width: 820px) {
  .about-workshop__media video {
    transform: none;
    will-change: auto;
  }

  .about-workshop__form-wrap {
    margin-top: 24px;
    transform: none;
  }

  .about-workshop__form-wrap .contact-email-form form {
    grid-template-columns: 1fr;
  }

  .about-projects {
    padding-top: clamp(68px, 12vw, 100px);
  }
}

/* Project-wide reveals; the header is intentionally outside this system. */
.site-reveal {
  transition-delay: var(--site-reveal-delay, 0ms);
}

.site-reveal--title {
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 560ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--site-reveal-delay, 0ms);
}

.site-reveal--text {
  transition:
    opacity 360ms ease-out,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--site-reveal-delay, 0ms);
}

.site-reveal--image,
.site-reveal--item {
  transition: opacity 420ms ease-out;
  transition-delay: var(--site-reveal-delay, 0ms);
}

html.site-reveals-active .site-reveal--title:not(.is-revealed) {
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transform: translate3d(0, 0.72em, 0);
}

html.site-reveals-active .site-reveal--text:not(.is-revealed) {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

html.site-reveals-active .site-reveal--image:not(.is-revealed),
html.site-reveals-active .site-reveal--item:not(.is-revealed) {
  opacity: 0;
}

.site-reveal--title.is-revealed,
.site-reveal--text.is-revealed {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
}

.site-reveal--image.is-revealed,
.site-reveal--item.is-revealed {
  opacity: 1;
}

.site-menu-reveal {
  opacity: 0;
  transform: translate3d(var(--site-menu-reveal-x, -18px), 0, 0);
  transition:
    opacity 240ms ease-out,
    transform 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-menu-is-open .site-menu-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: var(--site-menu-reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .site-reveal,
  .site-menu-reveal,
  .site-menu-is-open .site-menu-reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }
}

/* Contact map: scale, hold at full size, then release before the footer. */
.contact-map-reveal {
  height: 200vh;
  height: 200svh;
  min-height: 1200px;
}

.contact-map-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #d9d8d2;
}

.contact-map-sticky .contact-map-fixed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-map-sticky .contact-map-reveal__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  pointer-events: none;
}

.contact-map-reveal__form {
  pointer-events: none;
}

.contact-map-reveal.is-form-visible .contact-map-reveal__form {
  pointer-events: auto;
}

.contact-map-reveal .contact-email-form {
  background: rgba(255, 253, 248, 0.58);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.contact-map-reveal .contact-email-form form {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 820px) {
  .contact-map-reveal {
    height: 200svh;
    min-height: 1400px;
  }
}

/* Final project-wide refinements. */
:root {
  --site-section-space: clamp(56px, 7vw, 96px);
}

.home-main-categories {
  padding: var(--site-section-space) 0 0;
}

.c-products-carousel {
  padding-block: var(--site-section-space);
}

.home-main-categories__item.site-reveal--item,
.c-products-carousel__cell.site-reveal--item,
.contact-info-band > article.site-reveal--item {
  transform: none;
  will-change: opacity;
}

.hero-landing--chair .hero-landing__title {
  line-height: 1.2;
}

.hero-landing--chair .hero-landing__title > span > span {
  opacity: 1;
  transform: none;
  animation: none;
}

.contact-main__head { align-items: end; }

.contact-info-column__actions { gap: 10px; }

.contact-info-column__actions .contact-info-action {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 16px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #111;
  border-radius: 0;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-info-column__actions .contact-info-action--primary,
.contact-info-column__actions .contact-info-action--primary:hover,
.contact-info-column__actions .contact-info-action--primary:focus-visible {
  background: #111;
  color: #fff;
}

.contact-info-column__actions .contact-info-action--secondary,
.contact-info-column__actions .contact-info-action--secondary:hover,
.contact-info-column__actions .contact-info-action--secondary:focus-visible {
  background: #fff;
  color: #111;
}

.contact-info-column__actions .contact-info-action:hover,
.contact-info-column__actions .contact-info-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.project-map-list-shell {
  position: relative;
  isolation: isolate;
}

.project-map-list-shell::before,
.project-map-list-shell::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 4;
  height: 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.project-map-list-shell::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-surface, #fffdf8), transparent);
}

.project-map-list-shell::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-surface, #fffdf8), transparent);
}

.project-map-list-shell.has-overflow-start::before,
.project-map-list-shell.has-overflow-end::after {
  opacity: 1;
}

.project-map-selection-stack {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 500;
  display: grid;
  width: min(520px, calc(100% - 48px));
  justify-items: start;
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: none;
}

.project-map-selection-stack > * { pointer-events: auto; }

.project-map-overview {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 16px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.14);
  cursor: pointer;
}

.project-map-overview[hidden] { display: none; }

.project-map-selection-stack .project-map-selection {
  position: relative;
  inset: auto;
  width: 100%;
  transform: none;
}

.search-is-open .f-suggest__holder {
  position: fixed;
  inset: 0;
  z-index: 2147483645;
  display: block;
  overflow: auto;
  opacity: 0;
  visibility: visible;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transition: opacity 180ms ease;
}

.search-is-open.search-is-visible .f-suggest__holder { opacity: 1; }

.f-suggest__holder .f-suggest__inp-wrap {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 48px;
  min-height: 68px;
  padding: 8px 10px 8px 18px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 52px rgba(17, 17, 17, 0.18);
}

.f-suggest__input-icon {
  color: #111;
  font-size: 1.25rem;
}

.f-suggest__holder .f-suggest__inp {
  min-height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font: 550 1.08rem/1.25 var(--font-sans);
  outline: 0;
}

.f-suggest__holder .f-suggest__inp::placeholder { color: rgba(17, 17, 17, 0.52); }

.f-suggest__holder .f-suggest__btn {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: transparent;
  color: #111;
  cursor: pointer;
}

.b-suggest__show-all {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--color-line);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .contact-map-reveal {
    height: auto;
    min-height: 0;
    background: #fffdf8;
    pointer-events: auto;
  }

  .contact-map-sticky {
    position: relative;
    top: auto;
    display: grid;
    height: auto;
    overflow: visible;
    background: #fffdf8;
  }

  .contact-map-sticky .contact-map-fixed,
  .contact-map-reveal.is-map-released .contact-map-fixed {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(420px, 60svh, 620px);
    transform: none !important;
    pointer-events: auto;
  }

  .contact-map-sticky .contact-map-reveal__inner {
    position: relative;
    inset: auto;
    min-height: 0;
    padding-block: 28px 56px;
    pointer-events: auto;
  }

  .contact-map-reveal__form,
  .contact-map-reveal.is-form-visible .contact-map-reveal__form {
    position: relative;
    inset: auto;
    width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (max-width: 820px) {
  .header__other,
  .header__lang,
  .header-lang-link,
  .header-lang-link span {
    min-width: max-content;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
  }

  .header-lang-link {
    flex: 0 0 auto;
    padding-inline: 8px;
  }

  .contact-main__head { align-items: start; }
}

@media (max-width: 600px) {
  .project-map-selection-stack {
    bottom: 14px;
    width: calc(100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-is-open .f-suggest__holder {
    transition: none;
  }
}

/* Final interaction and composition refinements. */
.product-detail-hero {
  box-shadow: 0 0 0 100vmax #f4f4f4 !important;
  clip-path: inset(0 -100vmax);
}

.site-reveal--title {
  line-height: 1.2;
}

.site-reveal--lift {
  transition:
    opacity 420ms ease-out,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--site-reveal-delay, 0ms);
}

html.site-reveals-active .site-reveal--lift:not(.is-revealed) {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.site-reveal--lift.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 1231px) and (max-width: 1500px) {
  html[lang="en"] .header--scrolled .m-main > .m-main__list {
    grid-template-columns:
      max-content max-content max-content max-content
      minmax(150px, 1fr)
      max-content max-content max-content max-content;
  }

  html[lang="en"] .header--scrolled .m-main > .m-main__list > .m-main__item {
    --nav-item-pad: 6px;
  }

  html[lang="en"] .header--scrolled .m-main > .m-main__list > .m-main__item:nth-child(n + 5) {
    justify-self: end;
  }

  html[lang="en"] .header--scrolled .m-main > .m-main__list > .m-main__item > .m-main__link {
    font-size: 0.86rem;
  }

  html[lang="en"] .header--scrolled .header__menu {
    padding-right: 0;
  }
}

.site-menu-reveal {
  transform: translate3d(var(--site-menu-reveal-x, -12px), 0, 0);
  transition: opacity 170ms ease-out, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: auto;
}

.catalog-filter-panel__drawer {
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-filter-panel__drawer > header,
.catalog-filter-panel__content > *,
.catalog-filter-panel__drawer > footer {
  opacity: 0;
  transform: translate3d(14px, 0, 0);
  transition: opacity 180ms ease-out, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-filter-panel.is-open .catalog-filter-panel__drawer > header,
.catalog-filter-panel.is-open .catalog-filter-panel__content > *,
.catalog-filter-panel.is-open .catalog-filter-panel__drawer > footer {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.catalog-filter-panel.is-open .catalog-filter-panel__drawer > header { transition-delay: 45ms; }
.catalog-filter-panel.is-open .catalog-filter-panel__content > :nth-child(1) { transition-delay: 70ms; }
.catalog-filter-panel.is-open .catalog-filter-panel__content > :nth-child(2) { transition-delay: 95ms; }
.catalog-filter-panel.is-open .catalog-filter-panel__content > :nth-child(3) { transition-delay: 120ms; }
.catalog-filter-panel.is-open .catalog-filter-panel__content > :nth-child(4) { transition-delay: 145ms; }
.catalog-filter-panel.is-open .catalog-filter-panel__content > :nth-child(n + 5) { transition-delay: 170ms; }
.catalog-filter-panel.is-open .catalog-filter-panel__drawer > footer { transition-delay: 190ms; }

.project-map-list__item--enter {
  opacity: 0;
  transform: translate3d(-16px, 0, 0);
  transition:
    opacity 240ms ease-out var(--project-item-delay, 0ms),
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1) var(--project-item-delay, 0ms),
    background-color 160ms ease,
    border-color 160ms ease;
}

.project-map-list__item--enter.is-entered {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.project-map-selection__back {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  margin: -5px 0 5px;
  padding: 0;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font: 600 0.72rem/1 var(--font-sans);
}

.project-map-selection__back:hover,
.project-map-selection__back:focus-visible {
  color: var(--color-ink);
}

.project-map-selection__back i {
  font-size: 1rem;
}

.project-map-selection__body > *,
.project-map-selection > img {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 220ms ease-out, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-map-selection.is-entered .project-map-selection__body > *,
.project-map-selection.is-entered > img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.project-map-selection.is-entered .project-map-selection__body > :nth-child(2) { transition-delay: 35ms; }
.project-map-selection.is-entered .project-map-selection__body > :nth-child(3) { transition-delay: 70ms; }
.project-map-selection.is-entered .project-map-selection__body > :nth-child(4) { transition-delay: 105ms; }
.project-map-selection.is-entered .project-map-selection__body > :nth-child(5) { transition-delay: 140ms; }
.project-map-selection.is-entered > img { transition-delay: 55ms; }

.contact-page {
  --contact-map-progress: 0;
  --contact-map-scale: 0.8;
  position: relative;
  isolation: isolate;
  background: transparent;
}

.contact-map-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #d9d8d2;
  transform: scale(var(--contact-map-scale));
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
}

.contact-map-fixed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  border: 0;
}

.contact-page__foreground,
.contact-map-reveal {
  position: relative;
  z-index: 1;
}

.contact-content-surface {
  position: relative;
  background: #fffdf8;
  box-shadow: 0 42px 88px 20px rgba(17, 17, 17, 0.3);
}

.contact-main {
  padding-bottom: clamp(64px, 8vw, 116px);
}

.contact-info-band {
  margin-bottom: 0;
}

.contact-map-reveal {
  min-height: 100vh;
  min-height: 100svh;
  pointer-events: none;
}

.contact-page.is-map-active .contact-map-fixed {
  pointer-events: auto;
}

.contact-map-reveal__inner {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
}

.contact-map-reveal__form {
  position: absolute;
  top: 54%;
  right: 0;
  width: min(470px, 100%);
  opacity: 0;
  transform: translate3d(0, calc(-50% + 42px), 0);
  transition: opacity 420ms ease-out, transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.contact-map-reveal.is-form-visible .contact-map-reveal__form {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
  pointer-events: auto;
}

.contact-map-reveal .contact-email-form {
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.about-workshop {
  padding-bottom: 64px;
}

.about-projects {
  padding-top: clamp(72px, 7vw, 108px);
}

@media (min-width: 1025px) {
  .about-workshop__media {
    position: sticky;
    top: calc(var(--header-height, 77px) + 64px);
    height: calc(100svh - var(--header-height, 77px) - 128px);
    min-height: 420px;
    margin-bottom: 64px;
  }

  .about-workshop__media video {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .contact-map-reveal__form {
    right: var(--gutter);
    left: var(--gutter);
    width: auto;
  }

  .contact-map-reveal,
  .contact-map-reveal__inner {
    min-height: max(100svh, 760px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-reveal--lift,
  .project-map-list__item--enter,
  .catalog-filter-panel__drawer > header,
  .catalog-filter-panel__content > *,
  .catalog-filter-panel__drawer > footer,
  .project-map-selection__body > *,
  .project-map-selection > img,
  .contact-map-reveal__form {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .contact-map-fixed {
    transform: none;
  }
}

/* Catalog toolbar: fixed actions, full-height scroll fades, no sorting. */
.catalog-toolbar__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) auto minmax(220px, 1.3fr) auto;
  align-items: center;
  gap: 14px;
}

.catalog-toolbar__filter-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.catalog-toolbar__filter-actions .catalog-filter-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.catalog-toolbar__filters-shell {
  align-self: stretch;
  overflow: visible;
}

.catalog-toolbar__filters {
  height: 100%;
  align-items: center;
}

.catalog-toolbar__filters-shell::before,
.catalog-toolbar__filters-shell::after {
  top: -12px;
  bottom: -12px;
}

.catalog-toolbar__meta {
  width: auto;
  margin-left: 0;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .catalog-toolbar__inner {
    grid-template-columns: minmax(220px, 1fr) auto auto;
  }

  .catalog-toolbar__filters-shell {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 44px;
  }

  .catalog-toolbar__meta {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 700px) {
  .catalog-toolbar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .catalog-toolbar__search,
  .catalog-toolbar__filters-shell {
    grid-column: 1 / -1;
  }

  .catalog-toolbar__search {
    grid-row: 1;
  }

  .catalog-toolbar__filter-actions,
  .catalog-toolbar__meta {
    grid-row: 2;
  }

  .catalog-toolbar__filter-actions {
    grid-column: 1;
  }

  .catalog-toolbar__filters-shell {
    grid-row: 3;
  }

  .catalog-toolbar__filter-actions {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalog-toolbar__filter-actions::-webkit-scrollbar {
    display: none;
  }

  .catalog-toolbar__meta {
    grid-column: 2;
    justify-self: end;
  }
}

/* Final about-video, customer badge, and Spotlight refinements. */
.home-media-hero {
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-workshop {
  padding-top: 64px;
  padding-bottom: 64px;
}

.about-workshop__media video {
  transform: scale(1.015) translate3d(0, var(--about-video-parallax), 0);
}

@media (min-width: 1025px) {
  .about-workshop__media {
    position: sticky;
    top: calc(var(--header-height, 77px) + 24px);
    height: auto;
    min-height: 0;
    margin-bottom: 0;
    aspect-ratio: 16 / 9;
  }

  .about-workshop__media video {
    width: 100%;
    height: 100%;
    min-height: 0;
  }
}

.m-main__link--customer {
  position: relative;
}

.m-main__new-badge {
  position: absolute;
  top: -14px;
  right: -9px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  min-width: 29px;
  min-height: 17px;
  padding: 2px 5px;
  border-radius: 2px;
  background: #ffd400;
  color: #111111;
  font-size: 0.58rem;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
  transform-origin: center;
  animation: customerBadgeReveal 360ms 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes customerBadgeReveal {
  from {
    opacity: 0;
    transform: scale(0.35);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.search-is-open .f-suggest__holder,
.f-suggest.is-open .f-suggest__holder {
  padding: calc(var(--header-height) + clamp(20px, 5vh, 56px)) var(--gutter) 40px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.search-is-open .f-suggest__holder .row-main,
.f-suggest.is-open .f-suggest__holder .row-main {
  display: grid;
  width: min(840px, 100%);
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.f-suggest__holder .f-suggest__inp-wrap,
.f-suggest__holder .f-suggest__content,
.f-suggest__holder .b-suggest--spotlight {
  width: 100%;
  min-width: 0;
}

.f-suggest__holder .f-suggest__inp-wrap {
  min-height: 64px;
  margin: 0;
  padding: 5px 12px 5px 18px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.12);
}

.f-suggest__holder .f-suggest__inp {
  min-width: 0;
  border-bottom: 0;
}

.f-suggest__holder .f-suggest__btn {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.f-suggest__holder .f-suggest__content {
  min-height: 0;
  margin-top: 12px;
}

.f-suggest__holder .b-suggest--spotlight {
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
}

.b-suggest__item {
  border-radius: 2px;
}

.b-suggest__group--products .b-suggest__img img {
  padding: 5px;
  background: #f4f4f4;
  object-fit: contain;
}

.b-suggest--spotlight .b-suggest__group-head,
.b-suggest--spotlight .b-suggest__list > li,
.b-suggest--spotlight .b-suggest__show-all,
.b-suggest--spotlight .b-suggest__empty {
  animation: spotlightResultReveal 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.b-suggest--spotlight .b-suggest__group-head { animation-delay: 20ms; }
.b-suggest--spotlight .b-suggest__list > li:nth-child(1) { animation-delay: 45ms; }
.b-suggest--spotlight .b-suggest__list > li:nth-child(2) { animation-delay: 75ms; }
.b-suggest--spotlight .b-suggest__list > li:nth-child(3) { animation-delay: 105ms; }
.b-suggest--spotlight .b-suggest__list > li:nth-child(n + 4) { animation-delay: 135ms; }
.b-suggest--spotlight .b-suggest__group:nth-of-type(2) .b-suggest__group-head { animation-delay: 110ms; }
.b-suggest--spotlight .b-suggest__group:nth-of-type(2) .b-suggest__list > li:nth-child(1) { animation-delay: 135ms; }
.b-suggest--spotlight .b-suggest__group:nth-of-type(2) .b-suggest__list > li:nth-child(2) { animation-delay: 165ms; }
.b-suggest--spotlight .b-suggest__group:nth-of-type(2) .b-suggest__list > li:nth-child(n + 3) { animation-delay: 195ms; }
.b-suggest--spotlight .b-suggest__show-all { animation-delay: 220ms; }

@keyframes spotlightResultReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 640px) {
  .search-is-open .f-suggest__holder,
  .f-suggest.is-open .f-suggest__holder {
    padding: calc(var(--header-height) + 14px) 12px 18px;
  }

  .f-suggest__holder .b-suggest--spotlight {
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .m-main__new-badge,
  .b-suggest--spotlight .b-suggest__group-head,
  .b-suggest--spotlight .b-suggest__list > li,
  .b-suggest--spotlight .b-suggest__show-all,
  .b-suggest--spotlight .b-suggest__empty {
    animation: none;
  }
}

.contact-map-reveal .contact-email-form {
  background: rgba(255, 253, 248, 0.58);
}

.contact-map-reveal {
  --contact-map-sticky-travel: clamp(220px, 35svh, 360px);
  z-index: 0;
  height: calc(100svh + var(--contact-map-sticky-travel));
  min-height: 0;
}

.contact-map-sticky {
  overflow: visible;
}

.contact-map-sticky .contact-map-fixed {
  position: fixed;
}

.contact-map-reveal.is-map-released .contact-map-fixed {
  position: absolute;
}

@media (max-width: 820px) {
  .contact-map-reveal {
    --contact-map-sticky-travel: clamp(180px, 30svh, 260px);
    height: calc(100svh + var(--contact-map-sticky-travel));
    min-height: 0;
  }
}

/* These interaction overrides intentionally close the cascade. */
.search-is-open .f-suggest__holder {
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transition: opacity 180ms ease;
}

.search-is-open.search-is-visible .f-suggest__holder {
  opacity: 1;
}

.f-suggest__holder .f-suggest__inp-wrap {
  grid-template-columns: 28px minmax(0, 1fr) 48px;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .contact-map-reveal {
    height: auto;
    min-height: 0;
    background: #fffdf8;
    pointer-events: auto;
  }

  .contact-map-sticky {
    position: relative;
    top: auto;
    display: grid;
    height: auto;
    overflow: visible;
    background: #fffdf8;
  }

  .contact-map-sticky .contact-map-fixed,
  .contact-map-reveal.is-map-released .contact-map-fixed {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(420px, 60svh, 620px);
    transform: none !important;
    pointer-events: auto;
  }

  .contact-map-sticky .contact-map-reveal__inner {
    position: relative;
    inset: auto;
    min-height: 0;
    padding-block: 28px 56px;
    pointer-events: auto;
  }

  .contact-map-reveal__form,
  .contact-map-reveal.is-form-visible .contact-map-reveal__form {
    position: relative;
    inset: auto;
    width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}
