/* Great Prosperity — architectural collection atelier. Shared design and homepage. */
@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin-variable-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
}
:root {
  --surface: #edf3f7;
  --paper: #fafbf9;
  --cloud: #e5edf3;
  --sky: #dce8f0;
  --ink: #18364b;
  --navy: #18364b;
  --navy-deep: #102a3d;
  --muted: #526b7d;
  --line: #cbd9e3;
  --accent: #d5e6ed;
  --blue: #2c607e;
  --blue-bright: #3f7696;
  --blue-soft: #c7ddea;
  --font-body: Manrope, "Segoe UI", sans-serif;
  --font-display: Manrope, "Segoe UI", sans-serif;
  --font-editorial: "Bodoni Moda", Georgia, serif;
  --container: 1328px;
  --nav-h: 94px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 0;
  --radius-lg: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  color: inherit;
  font-family: var(--font-display);
  font-weight: 500;
}
h1,
h2 {
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 em,
h2 em {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(36px, 4.3vw, 62px);
}
h3 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
::selection {
  background: var(--ink);
  color: var(--surface);
}
:focus-visible {
  outline: 2px solid #477e9e;
  outline-offset: 5px;
  border-radius: 0;
}
.container {
  width: min(calc(100% - 112px), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  padding: 14px 22px;
  background: var(--ink);
  color: white;
  z-index: 200;
}
.skip-link:focus {
  top: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
}
.text-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-out);
}
.text-link:hover svg {
  transform: translateX(5px);
}
.btn {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 14px 24px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn--primary {
  background: var(--ink);
  color: var(--surface);
  box-shadow: none;
}
.btn--primary:hover {
  background: #2c5977;
  box-shadow: none;
}
.btn--ghost {
  border-color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--cloud);
  color: var(--ink);
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn--on-dark {
  border: 1px solid #8daabc;
  background: transparent;
  color: var(--surface);
  backdrop-filter: none;
}
.btn--on-dark:hover {
  background: #2c5068;
}
.nav {
  position: relative;
  top: auto;
  left: auto;
  translate: none;
  width: 100%;
  max-width: none;
  height: var(--nav-h);
  padding: 0 max(56px, calc((100vw - 1328px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: var(--surface);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  z-index: 50;
}
.nav.is-scrolled {
  background: var(--surface);
  box-shadow: none;
  border-color: var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.brand__logo {
  width: 42px;
  height: 44px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: multiply;
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brand__mark {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 650;
  letter-spacing: 0;
  color: var(--ink);
}
.brand__sub {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.nav__links {
  position: static;
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  transform: none;
}
.nav__link {
  display: block;
  padding: 10px 0;
  color: var(--ink);
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--ink);
  background: transparent;
}
.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}
.nav__right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav__cta {
  white-space: nowrap;
}
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__burger span {
  height: 1px;
  width: 20px;
  background: var(--ink);
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.nav.is-open .nav__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav.is-open .nav__burger span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.opening {
  background: var(--surface);
  padding-bottom: 0;
}
.opening__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-top: 55px;
  padding-bottom: 43px;
}
.opening h1 {
  font-size: clamp(62px, 6.65vw, 96px);
  line-height: 1.04;
  flex-shrink: 0;
}
.opening h1 em {
  font-size: 1.02em;
  letter-spacing: -0.04em;
}
.opening__intro {
  max-width: 258px;
  padding-bottom: 4px;
}
.opening__intro p {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 17px;
  color: #526b7d;
}
.opening__intro .text-link {
  font-size: 12px;
  gap: 20px;
}
.space-view {
  position: relative;
  height: clamp(370px, 34vw, 520px);
  background: #dedad9;
  isolation: isolate;
}
.space-view__picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.space-view__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
  animation: aperture 1.2s var(--ease-out) both;
}
.space-view.is-switching .space-view__picture img {
  animation: scene-enter 0.6s var(--ease-out) both;
}
.space-view::after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  z-index: 0;
  background: linear-gradient(transparent, rgba(16, 36, 50, 0.5));
  pointer-events: none;
}
.space-view__caption {
  position: absolute;
  bottom: 26px;
  left: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-size: 12px;
  z-index: 1;
}
.space-view__dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.space-view__hint {
  position: absolute;
  bottom: 25px;
  right: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  color: #fff;
  font-size: 11px;
  z-index: 1;
}
.space-view__hint svg {
  width: 17px;
  height: 17px;
}
.hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  transform: translate(-50%, -50%);
}
.hotspot:has([aria-expanded="true"]) {
  z-index: 4;
}
.hotspot__trigger {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  padding: 0;
  background: rgba(250, 249, 247, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.7);
  outline: 6px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: var(--ink);
  transition:
    background 0.25s,
    outline-width 0.25s;
}
.hotspot__trigger svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s;
}
.hotspot__trigger:hover {
  background: var(--accent);
  outline-width: 9px;
}
.hotspot__trigger[aria-expanded="true"] {
  background: var(--accent);
}
.hotspot__trigger[aria-expanded="true"] svg {
  transform: rotate(45deg);
}
.hotspot__detail {
  position: absolute;
  bottom: calc(100% + 18px);
  left: -20px;
  width: 256px;
  background: var(--paper);
  padding: 22px 23px;
  box-shadow: 0 8px 32px #18364b20;
}
.hotspot__detail::after {
  display: none;
  content: "";
  position: absolute;
  bottom: -8px;
  left: 32px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--paper);
}
.hotspot__label {
  font-size: 16px;
  font-weight: 600;
}
.hotspot__detail p {
  font-size: 12px;
  color: var(--muted);
  margin: 7px 0 14px;
  line-height: 1.6;
}
.hotspot__detail a {
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hotspot__detail a svg {
  width: 15px;
  height: 15px;
}
.space-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.space-tab {
  padding: 24px 28px 27px 0;
  border: 0;
  border-top: 2px solid transparent;
  border-bottom: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 21px;
  text-align: left;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.space-tab + .space-tab {
  padding-left: 30px;
}
.space-tab__number {
  font-size: 10px;
  align-self: flex-start;
  margin-top: 5px;
}
.space-tab small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 3px;
  color: var(--muted);
}
.space-tab > svg {
  margin-left: auto;
  width: 21px;
  height: 21px;
  color: var(--ink);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.space-tab.is-active {
  color: var(--ink);
  border-top-color: var(--ink);
}
.space-tab.is-active > svg,
.space-tab:hover > svg {
  opacity: 1;
  transform: none;
}
.space-tab:hover {
  color: var(--ink);
}
.introduction {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-top: 126px;
  padding-bottom: 132px;
}
.small-label {
  font-size: 11px;
}
.introduction__aside {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.introduction__aside p {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 38px;
  color: var(--muted);
}
.introduction__symbol {
  margin-top: auto;
  width: 64px;
  height: 64px;
  stroke-width: 1;
  color: #7e9eb3;
}
.introduction h2 {
  font-size: clamp(36px, 4vw, 58px);
}
.introduction__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 37px;
  margin-top: 35px;
  margin-bottom: 24px;
}
.introduction__copy p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.collection-section {
  padding: 92px 0 68px;
  background: #e2edf4;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}
.section-heading > div > p,
.section-heading > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}
.section-heading .text-link {
  margin-top: 16px;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 28px;
  align-items: start;
}
.collection-item {
  display: block;
}
.collection-item__image {
  position: relative;
  overflow: hidden;
  background: #f5f8fa;
  height: 360px;
}
.collection-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.collection-item--room .collection-item__image {
  height: 440px;
}
.collection-item--room img {
  object-position: 50% 50%;
}
.collection-item--light {
  padding-top: 66px;
}
.collection-item--light .collection-item__image {
  height: 300px;
  background: #f3f7fa;
}
.collection-item--light img {
  object-fit: cover;
  object-position: 50% 50%;
  mix-blend-mode: normal;
  padding: 0;
}
.collection-item--outdoor .collection-item__image {
  height: 400px;
}
.collection-item--outdoor img {
  object-position: 70% 50%;
}
.image-link {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  width: 39px;
  height: 39px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.image-link svg {
  width: 19px;
  height: 19px;
}
.collection-item:hover .image-link {
  background: var(--accent);
  transform: translateY(-3px);
}
.collection-item:hover .collection-item__image img {
  transform: scale(1.035);
}
.collection-item__title {
  margin-top: 21px;
}
.collection-item__title h3 {
  font-size: 22px;
}
.collection-item__title > span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 7px;
}
.range-links {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid #c4d4e0;
  margin-top: 64px;
  padding-top: 25px;
  align-items: center;
}
.range-links > span {
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 130px;
}
.range-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
}
.range-links svg {
  width: 16px;
  height: 16px;
}
.range-links a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.tailored {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--surface);
}
.tailored__content {
  padding: 95px 74px 96px max(56px, calc((100vw - 1328px) / 2));
}
.tailored h2 {
  font-size: clamp(36px, 3.7vw, 54px);
}
.tailored__content > p {
  max-width: 410px;
  font-size: 13px;
  line-height: 1.9;
  color: #cfdee8;
  margin-top: 27px;
}
.tailored__details {
  margin-top: 35px;
  margin-bottom: 31px;
  max-width: 440px;
}
.tailored details {
  border-bottom: 1px solid #4e7188;
}
.tailored details summary {
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}
.tailored details summary::-webkit-details-marker {
  display: none;
}
.tailored details summary svg {
  width: 17px;
  height: 17px;
}
.tailored details[open] summary svg {
  transform: rotate(45deg);
}
.tailored details p {
  color: #c1d4e2;
  font-size: 12px;
  line-height: 1.8;
  padding-bottom: 21px;
  max-width: 340px;
}
.text-link--light {
  color: var(--accent);
}
.tailored__image {
  position: relative;
  overflow: hidden;
  min-height: 650px;
}
.tailored__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: 64% center;
}
.tailored__image-note {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  padding: 18px 22px;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
}
.process {
  padding-top: 115px;
  padding-bottom: 119px;
}
.process .section-heading {
  margin-bottom: 58px;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.process-list li {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.process-list__number {
  font-size: 11px;
  color: var(--muted);
}
.process-list h3 {
  font-size: 18px;
  margin-top: 35px;
  margin-bottom: 14px;
}
.process-list p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 240px;
}
.closing {
  background: var(--accent);
  padding: 83px 0 86px;
}
.closing__inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}
.closing h2 {
  font-size: clamp(38px, 4.7vw, 68px);
}
.closing p {
  font-size: 13px;
  line-height: 1.85;
  margin-top: 26px;
  color: #456474;
}
.closing__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 36px 0;
  border-block: 1px solid #91b3c4;
  width: 300px;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1.5;
}
.closing__link svg {
  width: 45px;
  height: 45px;
  stroke-width: 1;
  transition: transform 0.4s var(--ease-out);
}
.closing__link:hover svg {
  transform: translate(5px, -5px);
}
.footer {
  background: #102b3f;
  color: #e6f0f7;
  padding: 62px 0 0;
  border: 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.15fr 1fr;
  gap: 46px;
  padding-bottom: 63px;
}
.footer__brand .brand {
  gap: 12px;
}
.footer__logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
  opacity: 0.9;
  filter: none;
}
.footer__name {
  font-family: var(--font-body);
  font-size: 17px;
  letter-spacing: 0;
  font-weight: 500;
  display: block;
}
.footer__brand .brand__sub {
  color: #bfd3e1;
  font-size: 7px;
}
.footer__brand > p {
  font-size: 11px;
  line-height: 1.8;
  max-width: 230px;
  color: #bfd3e1;
  margin-top: 23px;
}
.footer__col h4 {
  font-family: var(--font-body);
  color: #bfd3e1;
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0 0 17px;
}
.footer__col > a,
.footer__col > p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  line-height: 1.6;
  color: #e6f0f7;
  margin-bottom: 9px;
  overflow-wrap: anywhere;
}
.footer__col a:hover {
  color: var(--accent);
}
.footer__col svg {
  width: 14px;
  height: 14px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid #3e5d73;
  color: #adc5d6;
  font-size: 9px;
}
.footer__bottom > a {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer__bottom svg {
  width: 15px;
  height: 15px;
}
.scroll-progress,
.dotnav {
  display: none !important;
}
.reveal {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}
@keyframes aperture {
  from {
    clip-path: inset(0 2%);
    transform: scale(1.025);
  }
  to {
    clip-path: inset(0);
    transform: scale(1);
  }
}
@keyframes scene-enter {
  from {
    opacity: 0.65;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (min-width: 1700px) {
  .opening__heading {
    padding-top: 70px;
    padding-bottom: 52px;
  }
  .space-view {
    height: 560px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .nav {
    padding-inline: 36px;
    gap: 25px;
  }
  .nav__links {
    gap: 24px;
  }
  .opening h1 {
    font-size: 7vw;
  }
  .opening__heading {
    gap: 25px;
  }
  .opening__intro {
    max-width: 235px;
  }
  .opening__intro p {
    font-size: 12px;
  }
  .introduction {
    gap: 42px;
    padding-block: 96px;
  }
  .collection-grid {
    gap: 22px;
  }
  .collection-item--room .collection-item__image {
    height: 365px;
  }
  .collection-item--light .collection-item__image {
    height: 260px;
  }
  .collection-item--outdoor .collection-item__image {
    height: 340px;
  }
  .collection-item__title h3 {
    font-size: 19px;
  }
  .range-links {
    gap: 22px;
  }
  .range-links a {
    font-size: 11px;
  }
  .tailored__content {
    padding: 72px 42px 74px 36px;
  }
  .tailored__image {
    min-height: 630px;
  }
  .tailored__image-note {
    flex-direction: column;
    gap: 3px;
  }
  .footer__top {
    gap: 30px;
    grid-template-columns: 1.3fr 0.7fr 1.1fr 0.9fr;
  }
  .footer__name {
    font-size: 14px;
  }
  .footer__brand .brand {
    gap: 7px;
  }
  .footer__logo {
    width: 34px;
  }
}
@media (max-width: 850px) {
  .nav__links {
    gap: 20px;
  }
  .nav__cta {
    padding: 12px 18px;
  }
  .brand__mark {
    font-size: 16px;
  }
  .brand__logo {
    width: 35px;
  }
  .nav {
    height: 84px;
  }
  .opening__heading {
    align-items: flex-start;
    padding-top: 46px;
    padding-bottom: 33px;
    gap: 25px;
  }
  .opening h1 {
    font-size: 7.3vw;
  }
  .opening__intro {
    max-width: 195px;
    padding-top: 8px;
  }
  .opening__intro p {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .opening__intro .text-link {
    font-size: 11px;
    gap: 12px;
  }
  .space-view {
    height: 410px;
  }
  .space-tab {
    padding-right: 15px;
    gap: 12px;
    font-size: 12px;
  }
  .space-tab + .space-tab {
    padding-left: 20px;
  }
  .space-tab small {
    font-size: 9px;
  }
  .space-tab > svg {
    width: 16px;
  }
  .introduction {
    grid-template-columns: 1fr 2.3fr;
    gap: 25px;
  }
  .introduction__copy {
    gap: 20px;
  }
  .introduction__copy p {
    font-size: 12px;
  }
  .section-heading {
    gap: 25px;
  }
  .collection-grid {
    gap: 18px;
  }
  .collection-item--room .collection-item__image {
    height: 300px;
  }
  .collection-item--light .collection-item__image {
    height: 235px;
  }
  .collection-item--outdoor .collection-item__image {
    height: 275px;
  }
  .collection-item--light {
    padding-top: 45px;
  }
  .collection-item--light img {
    padding: 0;
  }
  .collection-item__title h3 {
    font-size: 16px;
  }
  .collection-item__title > span {
    font-size: 10px;
  }
  .range-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .range-links > span {
    grid-column: 1/-1;
    max-width: none;
  }
  .tailored__content {
    padding: 65px 30px 66px 36px;
  }
  .tailored__image {
    min-height: 620px;
  }
  .tailored h2 {
    font-size: 35px;
  }
  .tailored__content > p {
    font-size: 12px;
  }
  .process-list {
    gap: 24px;
    grid-template-columns: 1fr 1fr;
  }
  .process-list li {
    padding-bottom: 20px;
  }
  .process-list h3 {
    margin-top: 25px;
  }
  .process-list p {
    max-width: 280px;
  }
  .closing__link {
    width: 240px;
    font-size: 17px;
    gap: 30px;
  }
  .closing h2 {
    font-size: 44px;
  }
  .footer__top {
    grid-template-columns: 1.3fr 1fr;
    gap: 40px 55px;
  }
  .footer__name {
    font-size: 18px;
  }
  .footer__brand .brand {
    gap: 13px;
  }
}
@media (max-width: 680px) {
  .container {
    width: calc(100% - 40px);
  }
  .nav {
    height: 79px;
    padding-inline: 20px;
    gap: 16px;
  }
  .brand__mark {
    font-size: 15px;
  }
  .brand__logo {
    width: 31px;
    height: 35px;
  }
  .brand {
    gap: 9px;
  }
  .brand__sub {
    font-size: 7px;
    letter-spacing: 0.19em;
  }
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    padding: 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 20px #18364b12;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav.is-open .nav__links {
    display: flex;
  }
  .nav__link {
    padding: 15px 0;
    font-size: 16px;
  }
  .nav__link::after {
    display: none;
  }
  .opening__heading {
    display: block;
    padding-top: 34px;
    padding-bottom: 28px;
  }
  .opening h1 {
    font-size: clamp(41px, 10.7vw, 67px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }
  .opening h1 em {
    font-size: 1.04em;
  }
  .opening__intro {
    display: flex;
    align-items: flex-end;
    gap: 22px;
    max-width: none;
    padding-top: 22px;
  }
  .opening__intro p {
    font-size: 11px;
    line-height: 1.8;
    max-width: 235px;
    margin: 0;
  }
  .opening__intro .text-link {
    font-size: 10px;
    gap: 10px;
    flex-shrink: 0;
    max-width: 125px;
    padding-block: 6px;
  }
  .opening__intro .text-link svg {
    width: 18px;
    height: 18px;
  }
  .space-view {
    height: 365px;
  }
  .space-view__picture img {
    object-position: 51% 50%;
  }
  .space-view__caption {
    bottom: 17px;
    left: 17px;
    font-size: 10px;
    gap: 8px;
  }
  .space-view__hint {
    display: none;
  }
  .hotspot__trigger {
    width: 33px;
    height: 33px;
    outline-width: 4px;
  }
  .hotspot__detail {
    width: 210px;
    padding: 16px;
    left: -60px;
    bottom: calc(100% + 13px);
  }
  .hotspot__detail::after {
    left: 69px;
  }
  .hotspot[data-hotspot="1"] .hotspot__detail {
    left: auto;
    right: -35px;
  }
  .hotspot[data-hotspot="1"] .hotspot__detail::after {
    left: auto;
    right: 44px;
  }
  .hotspot__label {
    font-size: 14px;
  }
  .hotspot__detail p {
    font-size: 11px;
  }
  .hotspot__detail a {
    font-size: 10px;
  }
  .space-tab {
    display: block;
    padding: 17px 8px 19px 0;
    font-size: 11px;
    line-height: 1.5;
    position: relative;
  }
  .space-tab + .space-tab {
    padding-left: 13px;
  }
  .space-tab__number {
    display: block;
    font-size: 9px;
    margin-top: 0;
    margin-bottom: 7px;
  }
  .space-tab small {
    display: none;
  }
  .space-tab > svg {
    position: absolute;
    top: 18px;
    right: 13px;
    width: 15px;
    height: 15px;
  }
  .space-tab:last-child > svg {
    right: 0;
  }
  .introduction {
    padding-top: 68px;
    padding-bottom: 69px;
    display: block;
  }
  .introduction__aside {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
  }
  .introduction__aside p {
    display: none;
  }
  .introduction__symbol {
    width: 27px;
    height: 27px;
    margin: 0;
  }
  .small-label {
    font-size: 10px;
  }
  .introduction h2 {
    font-size: 39px;
  }
  .introduction__copy {
    display: block;
    margin-top: 24px;
    margin-bottom: 18px;
  }
  .introduction__copy p {
    font-size: 12px;
    line-height: 1.9;
  }
  .introduction__copy p + p {
    margin-top: 17px;
  }
  .text-link {
    font-size: 12px;
  }
  .collection-section {
    padding: 61px 0 37px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .section-heading > div,
  .section-heading > p {
    margin-top: 22px;
  }
  .section-heading > div > p,
  .section-heading > p {
    font-size: 12px;
  }
  .section-heading .text-link {
    margin-top: 12px;
  }
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 33px 17px;
  }
  .collection-item--room {
    grid-column: 1/-1;
  }
  .collection-item--room .collection-item__image {
    height: 370px;
  }
  .collection-item--light {
    padding-top: 0;
  }
  .collection-item--light .collection-item__image,
  .collection-item--outdoor .collection-item__image {
    height: 230px;
  }
  .collection-item--light img {
    padding: 0;
  }
  .collection-item__title {
    margin-top: 15px;
  }
  .collection-item--room h3 {
    font-size: 24px;
  }
  .collection-item__title h3 {
    font-size: 17px;
  }
  .collection-item__title > span {
    font-size: 10px;
  }
  .image-link {
    width: 32px;
    height: 32px;
    bottom: 12px;
    right: 12px;
  }
  .image-link svg {
    width: 17px;
    height: 17px;
  }
  .range-links {
    display: block;
    margin-top: 38px;
    padding-top: 20px;
  }
  .range-links > span {
    font-size: 10px;
    display: block;
    margin-bottom: 12px;
  }
  .range-links a {
    padding: 13px 0;
    font-size: 12px;
    border-bottom: 1px solid #c4d4e0;
  }
  .range-links a:last-child {
    border: 0;
  }
  .tailored {
    display: flex;
    flex-direction: column;
  }
  .tailored__content {
    padding: 63px 20px 53px;
  }
  .tailored h2 {
    font-size: 41px;
  }
  .tailored__content > p {
    font-size: 12px;
    margin-top: 24px;
  }
  .tailored__details {
    max-width: none;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .tailored details summary {
    font-size: 13px;
  }
  .tailored__image {
    min-height: 410px;
  }
  .tailored__image img {
    object-position: 60% 50%;
  }
  .tailored__image-note {
    flex-direction: row;
    left: 20px;
    right: 20px;
    bottom: 20px;
    gap: 15px;
    padding: 15px;
    font-size: 10px;
  }
  .process {
    padding-top: 66px;
    padding-bottom: 53px;
  }
  .process .section-heading {
    margin-bottom: 34px;
  }
  .process .section-heading h2 {
    font-size: 36px;
  }
  .process-list {
    gap: 19px;
  }
  .process-list h3 {
    font-size: 16px;
    margin-top: 24px;
  }
  .process-list p {
    font-size: 11px;
  }
  .closing {
    padding: 58px 0;
  }
  .closing__inner {
    display: block;
  }
  .closing h2 {
    font-size: 45px;
  }
  .closing p {
    font-size: 12px;
    margin-top: 20px;
  }
  .closing__link {
    font-size: 17px;
    width: 100%;
    margin-top: 36px;
    padding: 24px 0;
  }
  .closing__link span br {
    display: none;
  }
  .closing__link svg {
    width: 34px;
    height: 34px;
  }
  .footer {
    padding-top: 45px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
    padding-bottom: 34px;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
  .footer__name {
    font-size: 18px;
  }
  .footer__brand > p {
    margin-top: 16px;
  }
  .footer__col h4 {
    font-size: 10px;
    margin-bottom: 15px;
  }
  .footer__col > a,
  .footer__col > p {
    font-size: 10px;
  }
  .footer__col:last-child {
    grid-column: 1/-1;
  }
  .footer__bottom {
    font-size: 8px;
    gap: 14px;
    align-items: flex-start;
  }
  .footer__bottom > a {
    gap: 6px;
    white-space: nowrap;
  }
}
/* Readable supporting text and a complete opening at common laptop heights. */
.nav__link {
  font-size: 13px;
}
.opening__intro p {
  font-size: 15px;
}
.opening__intro .text-link {
  font-size: 13px;
}
.space-view {
  height: clamp(330px, calc(100svh - 495px), 560px);
}
.space-view__caption {
  font-size: 13px;
}
.space-view__hint {
  font-size: 12px;
}
.space-tab {
  font-size: 16px;
}
.space-tab small {
  font-size: 12px;
}
.introduction__copy p,
.section-heading > div > p,
.section-heading > p,
.tailored__content > p,
.closing p {
  font-size: 15px;
}
.introduction__aside p,
.small-label {
  font-size: 12px;
}
.collection-item__title > span {
  font-size: 13px;
}
.range-links > span {
  font-size: 12px;
}
.range-links a {
  font-size: 13px;
}
.tailored details summary {
  font-size: 15px;
}
.tailored details p,
.process-list p {
  font-size: 14px;
}
.tailored__image-note {
  font-size: 12px;
}
.text-link {
  font-size: 14px;
}
.hotspot__trigger:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
  box-shadow: 0 0 0 5px var(--paper);
}
@media (min-width: 851px) and (max-height: 820px) {
  .opening__heading {
    padding-block: 32px;
  }
  .opening h1 {
    font-size: clamp(62px, 6vw, 84px);
  }
  .space-view {
    height: clamp(300px, calc(100svh - 420px), 430px);
  }
  .space-tab {
    padding-block: 19px;
  }
}
@media (min-width: 681px) and (max-width: 850px) {
  .opening__intro p {
    font-size: 13px;
  }
  .opening__intro .text-link {
    font-size: 12px;
  }
  .space-view {
    height: 410px;
  }
  .space-tab {
    font-size: 13px;
  }
  .space-tab small {
    font-size: 10px;
  }
  .range-links a {
    font-size: 12px;
  }
}
@media (max-width: 680px) {
  .opening__intro {
    display: block;
    padding-top: 22px;
  }
  .opening__intro p {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.7;
  }
  .opening__intro .text-link {
    max-width: none;
    font-size: 13px;
    margin-top: 12px;
    gap: 18px;
    min-height: 36px;
  }
  .space-view {
    height: 335px;
  }
  .space-view__caption {
    font-size: 11px;
  }
  .space-tab {
    font-size: 12px;
    padding-top: 16px;
    padding-bottom: 18px;
  }
  .space-tab__number {
    font-size: 10px;
  }
  .hotspot__trigger {
    width: 44px;
    height: 44px;
  }
  .hotspot__detail a {
    font-size: 12px;
    min-height: 36px;
  }
  .hotspot__detail p {
    font-size: 12px;
  }
  .introduction__copy p,
  .section-heading > div > p,
  .section-heading > p,
  .tailored__content > p,
  .closing p {
    font-size: 14px;
  }
  .text-link {
    font-size: 13px;
  }
  .collection-item__title > span {
    font-size: 12px;
  }
  .tailored details p,
  .process-list p {
    font-size: 13px;
  }
  .tailored details summary {
    font-size: 14px;
  }
  .tailored__image-note {
    font-size: 11px;
  }
  .footer__col > a,
  .footer__col > p {
    font-size: 12px;
  }
  .footer__col > a {
    min-height: 30px;
  }
  .footer__col h4 {
    font-size: 11px;
  }
  .footer__brand > p {
    font-size: 12px;
  }
  .footer__bottom {
    font-size: 10px;
  }
  .footer__bottom > a {
    min-height: 30px;
  }
  .range-links a {
    min-height: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .collection-item:hover .collection-item__image img {
    transform: none;
  }
}
/* Typography refinement: stronger lettering, legible copy, an optical wordmark. */
:root {
  --muted: #496578;
}
.brand__mark,
.footer__name {
  font-family: var(--font-editorial);
  font-size: 21px;
  font-weight: 600;
  font-style: normal;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 18;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.brand__sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-top: 5px;
}
h1 em,
h2 em,
.interior h1 em,
.interior h2 em {
  font-weight: 500;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 42;
}
.opening__intro p {
  color: #496578;
}
.footer__col h4,
.footer__brand > p {
  color: #ccdfec;
}
@media (max-width: 850px) {
  .brand__mark,
  .footer__name {
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .brand__mark {
    font-size: 18px;
  }
  .brand__sub {
    font-size: 8px;
    margin-top: 4px;
  }
  .introduction__copy p,
  .section-heading > div > p,
  .section-heading > p,
  .tailored__content > p,
  .closing p {
    font-size: 15px;
  }
  .opening__intro p {
    font-size: 14px;
  }
  .process-list p {
    font-size: 14px;
  }
}
