@font-face {
  font-family: "Mausoleum";
  src: url("assets/fonts/mausoleum-extra-light.otf") format("opentype");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Mausoleum";
  src: url("assets/fonts/mausoleum-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("assets/fonts/hanken-grotesk-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("assets/fonts/hanken-grotesk-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --paper: #ece9e3;
  --paper-soft: #f3f0ea;
  --ink: rgb(87, 65, 59);
  --ink-dark: rgb(67, 49, 45);
  --line: rgba(87, 65, 59, 0.28);
  --page: clamp(18px, 3.1vw, 58px);
  --gap: clamp(10px, 1.15vw, 22px);
  --header: 48px;
  --cell-h: clamp(190px, 23.6vw, 420px);
  --display: "Mausoleum", Georgia, serif;
  --body: "Hanken Grotesk", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image: url("assets/images/texture-paper.jpg");
  background-repeat: repeat;
  background-size: 760px 760px;
  background-blend-mode: multiply;
  color: var(--ink);
  font: 400 clamp(14px, 0.96vw, 17px) / 1.48 var(--body);
}

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

figure,
p,
dl,
dd {
  margin: 0;
}

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

button {
  color: inherit;
}

button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.facts dd,
.download-list strong {
  margin: 0;
  font-family: var(--display);
  font-weight: 200;
  letter-spacing: 0.025em;
  line-height: 0.91;
  text-transform: uppercase;
}

.eyebrow,
.section-mark,
figcaption,
.image-number,
.download-meta,
.private-label,
.primary-nav {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.masthead {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: max-content;
}

.primary-nav {
  display: flex;
  gap: 0;
  background: rgba(236, 233, 227, 0.96);
  backdrop-filter: blur(14px);
}

.section-nav-links {
  display: flex;
}

.mobile-menu-trigger {
  display: none;
}

.section-nav-links > a {
  position: relative;
  padding: 17px clamp(13px, 1.25vw, 24px) 15px;
  border-right: 1px solid var(--line);
}

.section-nav-links > a:last-child {
  border-right: 0;
}

.section-nav-links > a::after {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: clamp(13px, 1.25vw, 24px);
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.section-nav-links > a:hover::after,
.section-nav-links > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  position: relative;
  display: flex;
  border-left: 1px solid var(--line);
}

.language-trigger {
  display: flex;
  min-width: 58px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 17px 14px 15px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.language-trigger:hover,
.language-trigger:focus-visible {
  background: rgba(87, 65, 59, 0.07);
}

.language-chevron {
  font-size: 11px;
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  z-index: 2;
  min-width: 158px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(243, 240, 234, 0.98);
  box-shadow: 0 14px 30px rgba(67, 49, 45, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  visibility: hidden;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  white-space: nowrap;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="page"] {
  background: rgba(87, 65, 59, 0.08);
}

.language-menu a[aria-current="page"]::after {
  margin-left: 18px;
  content: "✓";
}

.hero {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  min-height: 100svh;
  padding: calc(var(--header) + var(--gap)) var(--page) var(--page);
}

.hero-copy {
  display: flex;
  min-height: calc(100svh - var(--header) - var(--page) - var(--gap));
  flex-direction: column;
  padding: clamp(28px, 4vw, 72px) clamp(0px, 1.2vw, 22px) 4px 0;
}

.hero-copy h1 {
  margin-top: clamp(54px, 8vh, 112px);
  font-size: clamp(61px, 6.35vw, 122px);
}

html[lang="de"] .hero-copy h1 {
  font-size: clamp(58px, 5.85vw, 112px);
}

.hero-footer {
  margin-top: auto;
}

.hero-footer p {
  max-width: 31em;
  margin-bottom: 28px;
  font-size: clamp(16px, 1.18vw, 21px);
  line-height: 1.42;
}

.underlined-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.underlined-link span {
  transition: transform 180ms ease;
}

.underlined-link:hover span {
  transform: translateY(3px);
}

.hero-figure {
  position: relative;
  grid-column: 2 / 4;
  min-height: calc(100svh - var(--header) - var(--page) - var(--gap));
  overflow: hidden;
  background: #d8d2c8;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: calc(100% - 20px);
  padding: 10px 12px;
  background: rgba(236, 233, 227, 0.92);
  backdrop-filter: blur(8px);
}

.figure:not(.full-view) figcaption {
  display: none;
}

.image-number {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.residence-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto minmax(260px, 1fr);
  gap: clamp(48px, 7vw, 130px) var(--gap);
  align-items: stretch;
  padding: clamp(120px, 15vw, 280px) var(--page);
}

.section-mark {
  padding-top: 4px;
}

.intro-heading {
  grid-column: 2 / 4;
  grid-row: 1;
}

.intro-heading .section-mark {
  margin-bottom: clamp(52px, 6vw, 112px);
}

.intro-heading .eyebrow {
  margin-bottom: 30px;
}

.intro-heading h2 {
  max-width: 12em;
  font-size: clamp(62px, 7.6vw, 146px);
}

.intro-space {
  grid-column: 3;
  grid-row: 2;
  min-height: 80px;
}

.intro-copy {
  grid-column: 2;
  grid-row: 2;
  max-width: 35em;
  font-size: clamp(16px, 1.23vw, 22px);
  line-height: 1.5;
}

.facts {
  display: grid;
  grid-column: 1;
  grid-row: 1 / 3;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts div {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(14px, 1.3vw, 24px) 12px clamp(14px, 1.3vw, 24px) 0;
  border-bottom: 1px solid var(--line);
}

.facts div:last-child {
  border-bottom: 0;
}

.facts dt {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts dd {
  margin-top: 14px;
  font-size: clamp(34px, 3.15vw, 60px);
}

.stair-balcony-space {
  grid-column: 3;
  grid-row: 1 / 3;
}

.visual-chapter,
.plans-section {
  padding-top: clamp(64px, 9vw, 170px);
}

.chapter-header {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
  padding: 0 var(--page) clamp(76px, 9vw, 168px);
}

.chapter-header h2 {
  grid-column: 2 / 4;
  font-size: clamp(58px, 7vw, 134px);
}

.chapter-header > p:last-child {
  grid-column: 3;
  max-width: 34em;
  margin-top: clamp(30px, 4vw, 72px);
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.5;
}

.chapter-header.reverse h2 {
  grid-column: 1 / 3;
  grid-row: 2;
}

.chapter-header.reverse .section-mark {
  grid-column: 1;
}

.chapter-header.reverse > p:last-child {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
}

.chapter-header.compact h2 {
  max-width: 11em;
  font-size: clamp(54px, 6.2vw, 118px);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: var(--cell-h);
  column-gap: var(--gap);
  row-gap: clamp(18px, 2.5vw, 46px);
  padding: 0 var(--page);
}

.tile {
  min-width: 0;
  min-height: 0;
}

.span-2c {
  grid-column: span 2;
}

.span-3c {
  grid-column: 1 / -1;
}

.span-2r,
.tall,
.portrait {
  grid-row: span 2;
}

.span-3r {
  grid-row: span 3;
}

.breathing-wide {
  grid-column: 1 / 3;
}

.breathing-space {
  grid-column: 3;
}

.figure {
  position: relative;
  overflow: hidden;
  background: #d8d2c8;
}

.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.figure:hover img {
  transform: scale(1.018);
}

.texture img,
.detail img {
  object-position: center;
}

.text-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 2.7vw, 50px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-tile h3 {
  margin: auto 0;
  font-size: clamp(38px, 4.25vw, 82px);
}

.text-tile > p:last-child {
  max-width: 29em;
  font-size: clamp(13px, 0.92vw, 16px);
}

.ground-grid,
.private-grid,
.renewal-grid,
.stair-grid {
  margin-top: var(--gap);
}

.plan-browser {
  margin: var(--gap) var(--page) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-instruction {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 13px clamp(18px, 2vw, 36px);
  border-bottom: 1px solid var(--line);
  background: #ddd9d1;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-instruction strong {
  font-weight: 700;
}

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

.plan-tabs button {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 18px clamp(18px, 2vw, 36px);
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: 500 10px / 1.2 var(--body);
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.plan-tabs button:last-child {
  border-right: 0;
}

.plan-tabs button span {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 200;
  letter-spacing: 0.025em;
}

.plan-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--paper-soft);
}

.plan-tabs button:hover:not([aria-selected="true"]) {
  background: rgba(75, 52, 45, 0.07);
}

.plan-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: clamp(520px, 68svh, 860px);
}

.plan-copy {
  position: relative;
  display: flex;
  grid-column: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 56px);
  border-right: 1px solid var(--line);
}

.plan-copy .eyebrow {
  margin-bottom: 17px;
}

.plan-copy h3 {
  font-size: clamp(41px, 4.5vw, 86px);
}

.plan-copy [data-plan-copy] {
  max-width: 26em;
  margin-top: 20px;
  font-size: 13px;
}

.plan-pdf-link {
  width: max-content;
  max-width: 100%;
  margin-top: clamp(48px, 7vh, 90px);
}

.plan-number {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 72px);
  font-weight: 200;
}

.plan-figure {
  display: grid;
  grid-column: 2 / 4;
  place-items: center;
  padding: clamp(16px, 2.4vw, 46px);
  background: #fff;
  overflow: visible;
}

.plan-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 130ms ease;
}

.plan-figure img.is-changing {
  opacity: 0;
}

.is-lightbox-trigger {
  cursor: zoom-in;
}

.is-lightbox-trigger:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #4b342d;
  color: var(--paper-soft);
  overflow: hidden;
}

.image-lightbox::backdrop {
  background: #4b342d;
}

body.is-lightbox-open {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.lightbox-shell {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: clamp(12px, 1.5vw, 24px);
}

.lightbox-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.lightbox-close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.lightbox-close span {
  font: 300 26px / 0.8 var(--display);
}

.lightbox-stage {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.75vw, 48px) clamp(38px, 6vw, 112px);
  touch-action: pan-y;
}

.lightbox-stage.is-portrait {
  padding: clamp(6px, 1.25vw, 20px) clamp(24px, 4vw, 72px);
}

.lightbox-image {
  display: block;
  flex: 0 1 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(243, 240, 234, 0.45);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background-color 180ms ease, color 180ms ease;
}

.lightbox-nav:hover {
  background: var(--paper-soft);
  color: #4b342d;
}

.lightbox-prev {
  left: clamp(12px, 2vw, 32px);
}

.lightbox-next {
  right: clamp(12px, 2vw, 32px);
}

.territory-section {
  padding: clamp(140px, 16vw, 300px) var(--page) clamp(120px, 14vw, 260px);
}

.territory-header {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  align-items: end;
  padding-bottom: clamp(90px, 11vw, 200px);
}

.territory-header .section-mark {
  grid-column: 1;
}

.territory-header h2 {
  grid-column: 1 / 3;
  grid-row: 2;
  margin-top: clamp(60px, 7vw, 130px);
  font-size: clamp(62px, 7.2vw, 138px);
}

.territory-lead {
  grid-column: 3;
  grid-row: 2;
  max-width: 34em;
  padding-bottom: 6px;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.5;
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  column-gap: var(--gap);
  row-gap: clamp(78px, 9vw, 170px);
  align-items: start;
}

.territory-image {
  position: relative;
  overflow: hidden;
  background: #d8d2c8;
}

.territory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.territory-image:hover img {
  transform: scale(1.018);
}

.territory-primary {
  grid-column: 1 / 3;
  grid-row: 1;
  aspect-ratio: 16 / 10;
}

.territory-primary img {
  object-position: center 54%;
}

.territory-detail {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 1;
}

.territory-context {
  grid-column: 1 / 3;
  grid-row: 3;
  aspect-ratio: 4 / 3;
}

.territory-story {
  min-height: 100%;
  padding: clamp(22px, 2.7vw, 50px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.territory-story h3 {
  margin: clamp(62px, 6vw, 112px) 0 30px;
  font-size: clamp(39px, 4vw, 76px);
}

.territory-story > p:last-of-type {
  max-width: 32em;
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.52;
}

.territory-unesco {
  grid-column: 3;
  grid-row: 1;
}

.territory-space {
  grid-column: 1;
  grid-row: 2;
  min-height: clamp(180px, 22vw, 420px);
}

.territory-flavours {
  grid-column: 3;
  grid-row: 2;
}

.territory-connections {
  grid-column: 3;
  grid-row: 3;
}

.distance-table {
  width: 100%;
  margin-top: clamp(48px, 5vw, 90px);
  border-collapse: collapse;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.distance-table caption {
  padding-bottom: 12px;
  text-align: left;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.distance-table th,
.distance-table td {
  padding: 11px 8px 11px 0;
  border-top: 1px solid var(--line);
  font-weight: 400;
  text-align: left;
}

.distance-table th {
  width: 54%;
}

.seasons-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(130px, 15vw, 280px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seasons-intro {
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 4vw, 72px) clamp(24px, 3vw, 54px) clamp(36px, 4vw, 72px) 0;
}

.seasons-intro h3 {
  margin: clamp(56px, 7vw, 126px) 0 30px;
  font-size: clamp(45px, 4.7vw, 90px);
}

.seasons-intro > p:last-child {
  max-width: 29em;
  margin-top: auto;
  line-height: 1.5;
}

.season-list {
  display: grid;
  grid-column: 2 / 4;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.season-list article {
  display: flex;
  min-height: clamp(210px, 20vw, 360px);
  flex-direction: column;
  padding: clamp(24px, 3vw, 54px);
  border-left: 1px solid var(--line);
}

.season-list article:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.season-list span {
  font: 200 clamp(22px, 2.3vw, 44px) / 1 var(--display);
  letter-spacing: 0.025em;
}

.season-list h4 {
  margin: auto 0 20px;
  font: 200 clamp(34px, 3.5vw, 68px) / 0.92 var(--display);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.season-list p {
  max-width: 28em;
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.48;
}

.documents-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 86svh;
  border-top: 1px solid var(--line);
}

.documents-intro {
  display: flex;
  flex-direction: column;
  padding: clamp(70px, 8vw, 150px) var(--page);
}

.documents-intro h2 {
  margin: clamp(62px, 8vw, 136px) 0 36px;
  font-size: clamp(62px, 6.5vw, 124px);
}

.documents-intro > p:last-child {
  max-width: 31em;
  margin-top: auto;
}

.download-list {
  display: grid;
  grid-column: 2 / 4;
  grid-template-rows: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.download-list > a,
.private-dossier {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: clamp(28px, 3.4vw, 62px);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.download-list > a:hover {
  background: rgba(255, 255, 255, 0.34);
}

.download-list strong {
  max-width: 85%;
  font-size: clamp(43px, 5.2vw, 98px);
}

.download-arrow,
.private-label {
  position: absolute;
  right: clamp(28px, 3.4vw, 62px);
  bottom: clamp(28px, 3.4vw, 62px);
}

.download-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 17px;
  transition: transform 180ms ease, background 180ms ease;
}

.download-list a:hover .download-arrow {
  transform: translateY(4px);
  background: var(--ink);
  color: var(--paper);
}

.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: var(--gap);
  align-items: end;
  min-height: 54svh;
  padding: clamp(70px, 9vw, 170px) var(--page) var(--page);
  background: var(--ink);
  color: var(--paper-soft);
}

.site-footer h2 {
  margin-top: 28px;
  font-size: clamp(46px, 5.2vw, 100px);
}

.footer-enquiry {
  margin-top: 38px;
}

.footer-sale {
  margin-top: 34px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.site-footer > p,
.site-footer > a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.site-footer > a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1080px) {
  :root {
    --cell-h: clamp(180px, 24vw, 300px);
  }

  .hero-copy h1 {
    font-size: clamp(56px, 7.2vw, 82px);
  }

  .text-tile h3,
  .plan-copy h3 {
    font-size: clamp(36px, 4.7vw, 54px);
  }

  .text-tile {
    padding: clamp(18px, 2.2vw, 30px);
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  html[lang="de"] .hero-copy h1 {
    font-size: clamp(54px, 6.3vw, 72px);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .documents-intro h2 {
    font-size: 56px;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 48px;
    --page: 16px;
    --gap: 10px;
    --cell-h: calc((100vw - 42px) * 0.375);
  }

  body {
    font-size: 14px;
  }

  figcaption {
    display: none !important;
  }

  .primary-nav {
    font-size: 9px;
  }

  .js .mobile-menu-trigger {
    display: flex;
    min-width: 70px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 12px 13px;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-transform: inherit;
  }

  .mobile-menu-icon {
    font-size: 15px;
    line-height: 0.7;
    transition: transform 180ms ease;
  }

  .primary-nav.is-menu-open .mobile-menu-icon {
    transform: rotate(45deg);
  }

  .section-nav-links {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    z-index: 49;
    display: grid;
    padding: 10px var(--page) 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(243, 240, 234, 0.98);
    box-shadow: 0 18px 34px rgba(67, 49, 45, 0.12);
  }

  .js .section-nav-links {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    visibility: hidden;
  }

  .js .primary-nav.is-menu-open .section-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .section-nav-links > a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .section-nav-links > a:last-child {
    border-bottom: 0;
  }

  .section-nav-links > a::after {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    background: none;
    content: "↘";
  }

  .section-nav-links > a:hover::after,
  .section-nav-links > a:focus-visible::after {
    transform: none;
  }

  .language-trigger {
    min-width: 45px;
    gap: 5px;
    padding: 15px 7px 13px;
  }

  .language-switcher {
    border-left: 0;
  }

  .language-menu {
    min-width: 144px;
  }

  .hero {
    display: flex;
    min-height: 560px;
    height: 100svh;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .hero-copy {
    order: 2;
    min-height: 0;
    flex: 1 1 60%;
    padding: 22px var(--page) 16px;
  }

  .hero-copy h1 {
    margin-top: clamp(20px, 3.5vh, 34px);
    font-size: clamp(50px, 14.5vw, 68px);
  }

  .hero-footer p {
    max-width: 28em;
    margin-bottom: 15px;
    font-size: clamp(13px, 3.7vw, 15px);
  }

  .hero-figure {
    order: 1;
    width: 100%;
    min-height: 0;
    height: auto;
    flex: 0 0 40svh;
  }

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

  .residence-intro {
    display: flex;
    flex-direction: column;
    grid-template-rows: auto;
    gap: 52px 10px;
    padding: 110px var(--page);
  }

  .intro-heading,
  .intro-copy,
  .facts {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .facts {
    order: 1;
  }

  .intro-heading {
    order: 2;
  }

  .intro-copy {
    order: 3;
  }

  .intro-space {
    display: none;
  }

  .intro-heading h2,
  .chapter-header h2,
  .chapter-header.reverse h2,
  .chapter-header.compact h2 {
    font-size: clamp(50px, 14vw, 70px);
  }

  #renewal-title {
    font-size: clamp(44px, 13vw, 64px);
  }

  html[lang="de"] #private-title {
    font-size: clamp(40px, 11.2vw, 46px);
  }

  .intro-copy {
    width: 88%;
    font-size: 16px;
  }

  .facts dd {
    font-size: 34px;
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    border-bottom: 0;
  }

  .facts div {
    min-height: 112px;
    padding: 16px 14px 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .facts div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .facts div:nth-child(even) {
    padding-left: 16px;
  }

  .visual-chapter,
  .plans-section {
    padding-top: 80px;
  }

  .chapter-header,
  .chapter-header.reverse {
    gap: 38px 10px;
    padding-bottom: 80px;
  }

  .chapter-header .section-mark,
  .chapter-header.reverse .section-mark {
    grid-column: 1 / -1;
  }

  .chapter-header h2,
  .chapter-header.reverse h2 {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .chapter-header > p:last-child,
  .chapter-header.reverse > p:last-child {
    grid-column: 2;
    grid-row: auto;
    margin-top: 0;
    font-size: 14px;
  }

  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: var(--cell-h);
  }

  .span-2c,
  .span-3c {
    grid-column: 1 / -1;
  }

  .blank {
    display: none;
  }

  .figure.full-view:not(.portrait) {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .figure.span-2r,
  .figure.span-3c {
    grid-row: span 3;
  }

  .editorial-grid .figure {
    grid-column: 1 / -1;
    grid-row: span 3;
  }

  .editorial-grid .figure.portrait {
    grid-row: span 4;
  }

  .text-tile {
    grid-column: 1 / -1;
    grid-row: span 3;
    padding: 28px 22px;
  }

  .text-tile h3 {
    font-size: clamp(45px, 13vw, 64px);
  }

  .arrival-grid .figure:first-child {
    grid-row: span 3;
  }

  .plan-browser {
    margin-right: var(--page);
    margin-left: var(--page);
  }

  .plan-tabs button {
    min-height: 62px;
    gap: 6px;
    justify-content: center;
    padding: 9px 6px;
    font-size: 7px;
    text-align: center;
  }

  .plan-tabs button span {
    font-size: 17px;
  }

  .plan-panel {
    display: block;
    min-height: 0;
  }

  .plan-copy {
    min-height: 0;
    justify-content: flex-start;
    padding: 18px 20px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-copy .plan-number,
  .plan-copy .eyebrow {
    display: none;
  }

  .plan-copy h3 {
    font-size: 34px;
  }

  .plan-copy [data-plan-copy] {
    margin-top: 9px;
    font-size: 11px;
  }

  .plan-figure {
    height: auto;
    padding: 10px 0;
    overflow: visible;
  }

  .plan-figure img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .lightbox-shell {
    padding: 10px;
  }

  .lightbox-stage {
    padding: 18px 30px;
  }

  .lightbox-stage.is-portrait {
    padding: 6px 18px;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .plan-pdf-link {
    margin-top: 17px;
    padding-bottom: 2px;
    font-size: 8px;
  }

  .plans-section .chapter-header {
    padding-bottom: 50px;
  }

  .territory-section {
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .territory-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 90px;
  }

  .territory-header h2 {
    margin-top: 80px;
    font-size: clamp(52px, 14vw, 70px);
  }

  .territory-lead {
    width: 88%;
    margin-top: 42px;
    align-self: flex-end;
    font-size: 15px;
  }

  .territory-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .territory-primary {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    align-self: stretch;
  }

  .territory-story {
    width: 78%;
    margin-top: 64px;
    padding: 24px 20px;
  }

  .territory-story h3 {
    margin: 54px 0 26px;
    font-size: clamp(40px, 11vw, 54px);
  }

  .territory-story > p:last-of-type {
    font-size: 14px;
  }

  .territory-unesco,
  .territory-connections {
    align-self: flex-end;
  }

  .territory-space {
    min-height: clamp(76px, 22vw, 110px);
  }

  .territory-detail {
    width: 46%;
    height: auto;
    aspect-ratio: 1 / 1;
    align-self: flex-end;
  }

  .territory-flavours {
    align-self: flex-start;
  }

  .territory-context {
    width: 78%;
    height: auto;
    aspect-ratio: 4 / 3;
    align-self: flex-start;
    margin-top: clamp(102px, 29vw, 154px);
  }

  .territory-connections {
    width: 100%;
  }

  .distance-table {
    margin-top: 64px;
  }

  .seasons-panel {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 100px;
  }

  .seasons-intro {
    padding: 52px 0;
  }

  .seasons-intro h3 {
    margin: 64px 0 32px;
    font-size: clamp(44px, 12vw, 58px);
  }

  .seasons-intro > p:last-child {
    margin-top: 0;
  }

  .season-list {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
  }

  .season-list article {
    min-height: 230px;
    padding: 22px 16px;
  }

  .season-list article:nth-child(odd) {
    border-left: 0;
  }

  .season-list h4 {
    font-size: 36px;
  }

  .season-list p {
    font-size: 12px;
  }

  .documents-section {
    display: block;
  }

  .documents-intro {
    min-height: 72svh;
    padding: 80px var(--page) 50px;
  }

  .documents-intro h2 {
    font-size: 66px;
  }

  .download-list {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .download-list > a,
  .private-dossier {
    min-height: 190px;
    padding: 28px 20px;
  }

  .download-list strong {
    font-size: 48px;
  }

  .download-arrow,
  .private-label {
    right: 20px;
    bottom: 28px;
  }

  .site-footer {
    display: flex;
    min-height: 72svh;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    padding-top: 80px;
  }

  .site-footer h2 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .footer-enquiry {
    margin-top: 30px;
  }

  .site-footer > a {
    margin-top: auto;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

/* V10 Italian editorial layout ------------------------------------------------ */

.v10-page {
  --v10-cell-h: clamp(164px, 21.85vw, 420px);
}

.v10-section-title {
  width: 100%;
  padding: clamp(110px, 15vw, 285px) var(--page) clamp(46px, 6vw, 110px);
  overflow: hidden;
}

.v10-section-title h2 {
  width: max-content;
  color: #fff;
  font-size: var(--v10-title-fallback, 16vw);
  line-height: 0.76;
  white-space: nowrap;
}

.v10-section-title-territory {
  --v10-title-fallback: 15.9vw;
}

.v10-section-title-house {
  --v10-title-fallback: 23vw;
  padding-top: clamp(150px, 20vw, 380px);
}

.v10-section-title-dossier {
  --v10-title-fallback: 18.2vw;
  padding-top: clamp(110px, 14vw, 270px);
}

.v10-territory-layout,
.v10-house-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  padding: 0 var(--page);
}

.v10-territory-layout {
  grid-template-rows: repeat(6, var(--v10-cell-h));
  align-items: stretch;
}

.v10-figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d8d2c8;
}

.v10-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.v10-figure:hover img {
  transform: scale(1.018);
}

.territory-panorama {
  grid-column: 1 / -1;
  grid-row: 1 / 3;
}

.territory-panorama img {
  object-position: center 52%;
}

.territory-heading {
  grid-column: 1 / 3;
  grid-row: 3 / 5;
  align-self: stretch;
  padding: clamp(52px, 6vw, 110px) 0 clamp(32px, 4vw, 72px);
}

.territory-copy .section-mark {
  margin-bottom: clamp(42px, 5vw, 88px);
}

.territory-heading h3,
.v10-house-intro h3,
.dossier-plan-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 200;
  letter-spacing: 0.025em;
  line-height: 0.91;
  text-transform: uppercase;
}

.territory-heading h3 {
  font-size: clamp(64px, 7.8vw, 150px);
}

.territory-copy {
  display: flex;
  grid-column: 3;
  grid-row: 3 / 6;
  flex-direction: column;
  padding: clamp(52px, 6vw, 110px) 0 0 clamp(12px, 1.4vw, 28px);
}

.territory-copy > p:not(.section-mark) {
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.5;
}

.territory-copy .distance-table {
  margin-top: clamp(60px, 8vw, 150px);
}

.territory-village {
  grid-column: 1 / 3;
  grid-row: 5 / 7;
}

.v10-house-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  align-items: end;
  padding: clamp(42px, 5vw, 92px) var(--page) clamp(85px, 11vw, 200px);
}

.v10-house-intro > div {
  grid-column: 1 / 3;
}

.v10-house-intro .section-mark {
  margin-bottom: clamp(44px, 5vw, 92px);
}

.v10-house-intro h3 {
  font-size: clamp(58px, 7.4vw, 142px);
}

.v10-house-intro > p {
  grid-column: 3;
  padding-bottom: 5px;
  font-size: clamp(13px, 0.88vw, 16px);
  line-height: 1.48;
}

.v10-house-grid {
  grid-template-rows: repeat(42, var(--v10-cell-h));
  grid-auto-flow: dense;
}

.v10-copy-tile {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 48px);
  padding: clamp(18px, 2.35vw, 44px);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  overflow: hidden;
}

.v10-copy-tile h3 {
  margin: 0;
  font-size: clamp(29px, 3.55vw, 68px);
}

.v10-copy-tile > p:last-child {
  font-size: 13px;
  line-height: 1.48;
}

/* Desktop occupancy map: layout-map-correct.csv */
.house-street { grid-column: 2; grid-row: 1 / 3; }
.house-facade { grid-column: 3; grid-row: 1; }
.house-arch { grid-column: 3; grid-row: 2 / 4; }
.house-living-main { grid-column: 1 / 3; grid-row: 4 / 6; }
.house-heart { grid-column: 3; grid-row: 4 / 6; }
.house-living-leather { grid-column: 1; grid-row: 6 / 8; }
.house-living-mirror { grid-column: 2; grid-row: 6 / 8; }
.house-living-cabinet { grid-column: 3; grid-row: 6 / 8; }
.house-living-sofa { grid-column: 2 / 4; grid-row: 8 / 10; }
.house-dining-enfilade { grid-column: 1; grid-row: 10 / 12; }
.house-fireplace { grid-column: 3; grid-row: 11; }
.house-mezzanine-bath { grid-column: 2; grid-row: 12 / 14; }
.house-dining-main { grid-column: 1 / 3; grid-row: 14 / 16; }
.house-kitchen-copy { grid-column: 3; grid-row: 14 / 16; }
.house-dining-detail { grid-column: 1; grid-row: 16; }
.house-kitchen-main { grid-column: 3; grid-row: 16 / 18; }
.house-kitchen-art { grid-column: 1; grid-row: 17 / 19; }
.house-kitchen-detail { grid-column: 2; grid-row: 17 / 19; }
.house-stair-copy { grid-column: 1; grid-row: 19 / 21; }
.house-stair-rail { grid-column: 2; grid-row: 19; }
.house-stair-balcony { grid-column: 2 / 4; grid-row: 20 / 22; }
.house-stair-room { grid-column: 1; grid-row: 21 / 23; }
.house-stair-hall { grid-column: 2; grid-row: 22 / 24; }
.house-stair-sun { grid-column: 3; grid-row: 22 / 24; }
.house-parquet { grid-column: 1; grid-row: 24 / 26; }
.house-private-copy { grid-column: 2; grid-row: 24 / 26; }
.house-study-second { grid-column: 3; grid-row: 25; }
.house-bedroom-blue { grid-column: 1 / 3; grid-row: 26 / 28; }
.house-bathroom-blue { grid-column: 3; grid-row: 26; }
.house-bedroom-rug { grid-column: 3; grid-row: 28 / 30; }
.house-dressing { grid-column: 2; grid-row: 29; }
.house-bathroom-pink { grid-column: 1; grid-row: 30; }
.house-bedroom-floral { grid-column: 2 / 4; grid-row: 30 / 32; }
.house-bedroom-gold { grid-column: 1 / 3; grid-row: 32 / 34; }
.house-study-first { grid-column: 1; grid-row: 34 / 36; }
.house-enfilade { grid-column: 3; grid-row: 34 / 36; }
.house-bedroom-green { grid-column: 2 / 4; grid-row: 36 / 38; }
.house-details-copy { grid-column: 1; grid-row: 37 / 39; }
.house-rosette { grid-column: 2; grid-row: 38; }
.house-chandelier { grid-column: 3; grid-row: 38 / 40; }
.house-switch { grid-column: 1; grid-row: 39; }
.house-bathroom-stripe { grid-column: 2; grid-row: 39 / 41; }
.house-cornice { grid-column: 3; grid-row: 40; }
.house-pink-detail { grid-column: 1; grid-row: 41; }
.house-joinery { grid-column: 2 / 4; grid-row: 41 / 43; }

.house-street img,
.house-dining-enfilade img,
.house-stair-room img,
.house-stair-hall img,
.house-stair-sun img,
.house-bedroom-rug img,
.house-study-first img,
.house-enfilade img,
.house-chandelier img,
.house-bathroom-stripe img {
  object-position: center;
}

.v10-dossier {
  display: block;
  min-height: 0;
  margin-top: clamp(64px, 8vw, 150px);
  padding-bottom: 0;
  border-top: 1px solid var(--line);
}

.dossier-plan-heading {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  align-items: end;
  padding: clamp(42px, 5vw, 92px) var(--page) clamp(55px, 7vw, 130px);
}

.dossier-plan-heading .section-mark {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: clamp(44px, 5vw, 92px);
}

.dossier-plan-heading h3 {
  grid-column: 1 / 3;
  grid-row: 2;
  font-size: clamp(62px, 7.2vw, 138px);
}

.dossier-plan-copy {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  padding-bottom: 5px;
  font-size: clamp(13px, 0.88vw, 16px);
  line-height: 1.48;
}

.v10-dossier .plan-browser {
  margin-top: 0;
}

.v10-dossier .download-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  margin-top: 0;
  border-top: 1px solid var(--line);
  border-left: 0;
}

.v10-dossier .download-list > a,
.v10-dossier .private-dossier {
  min-height: clamp(300px, 27vw, 510px);
  border-right: 1px solid var(--line);
}

.v10-dossier .download-list > :last-child {
  border-right: 0;
}

@media (max-width: 1080px) {
  .v10-page {
    --v10-cell-h: clamp(158px, 21.85vw, 236px);
  }

  .v10-copy-tile {
    gap: clamp(16px, 2vw, 26px);
    padding: clamp(14px, 2vw, 24px);
  }

  .v10-copy-tile h3 {
    font-size: clamp(27px, 3.4vw, 38px);
  }

  .v10-copy-tile > p:last-child {
    font-size: 13px;
    line-height: 1.4;
  }
}

@media (max-width: 760px) {
  .v10-section-title {
    padding: 105px var(--page) 42px;
  }

  .v10-section-title-territory {
    --v10-title-fallback: 15.8vw;
  }

  .v10-section-title-house {
    --v10-title-fallback: 26vw;
    padding-top: 135px;
  }

  .v10-section-title-dossier {
    --v10-title-fallback: 18.5vw;
    padding-top: 105px;
  }

  .v10-territory-layout,
  .v10-house-grid {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .territory-panorama,
  .territory-village {
    width: 100%;
    aspect-ratio: 7 / 5;
  }

  .territory-heading {
    width: 100%;
    min-width: 0;
    padding: 68px 0 36px;
  }

  .territory-copy .section-mark {
    margin-bottom: 54px;
  }

  .territory-heading h3 {
    font-size: clamp(48px, 14.5vw, 60px);
  }

  .territory-copy {
    padding: 0 0 66px;
  }

  .territory-copy .distance-table {
    margin-top: 54px;
  }

  .v10-house-intro {
    display: block;
    padding: 24px var(--page) 90px;
  }

  .v10-house-intro .section-mark {
    margin-bottom: 58px;
  }

  .v10-house-intro h3 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .v10-house-intro > p {
    margin-top: 54px;
    font-size: 14px;
  }

  .v10-copy-tile {
    min-height: 420px;
    gap: 30px;
    padding: 28px 22px;
  }

  .v10-copy-tile h3 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .v10-copy-tile > p:last-child {
    font-size: 13px;
    line-height: 1.48;
  }

  .v10-figure {
    width: 100%;
    aspect-ratio: 7 / 5;
  }

  .house-street,
  .house-arch,
  .house-living-leather,
  .house-living-mirror,
  .house-living-cabinet,
  .house-dining-enfilade,
  .house-mezzanine-bath,
  .house-kitchen-main,
  .house-kitchen-art,
  .house-kitchen-detail,
  .house-stair-room,
  .house-stair-hall,
  .house-stair-sun,
  .house-parquet,
  .house-bedroom-rug,
  .house-study-first,
  .house-enfilade,
  .house-chandelier,
  .house-bathroom-stripe {
    aspect-ratio: 7 / 10;
  }

  .v10-dossier {
    margin-top: 80px;
    padding-bottom: 0;
  }

  .dossier-plan-heading {
    display: block;
    padding: 24px var(--page) 62px;
  }

  .dossier-plan-heading .section-mark {
    margin-bottom: 58px;
  }

  .dossier-plan-heading h3 {
    font-size: 58px;
  }

  .dossier-plan-copy {
    margin-top: 42px;
    padding-bottom: 0;
    font-size: 14px;
  }

  .v10-dossier .download-list {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .v10-dossier .download-list > a,
  .v10-dossier .private-dossier {
    min-height: 220px;
    border-right: 0;
  }
}
