:root {
  --ink: #171713;
  --ink-soft: #24231d;
  --parchment: #ded8ca;
  --paper: #eee9df;
  --bone: #f5f0e6;
  --brass: #b89a62;
  --brass-light: #d7c497;
  --green: #173c34;
  --clay: #9b4f37;
  --line-dark: rgba(23, 23, 19, 0.19);
  --line-light: rgba(245, 240, 230, 0.24);
  --sans: "Archivo", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: auto; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
button { border: 0; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
figure, p, h1, h2, h3 { margin: 0; }
::selection { color: var(--bone); background: var(--clay); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--bone);
  transform: translateY(-150%);
  transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }

.grain {
  position: fixed;
  inset: -50%;
  z-index: 9000;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: grain-shift 0.22s steps(2) infinite;
}
@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(2%, -3%, 0); }
  50% { transform: translate3d(-3%, 2%, 0); }
  75% { transform: translate3d(3%, 4%, 0); }
  100% { transform: translate3d(-2%, -2%, 0); }
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.boot-panel { position: absolute; top: 0; bottom: 0; width: 50.5%; background: var(--ink); }
.boot-panel--left { left: 0; }
.boot-panel--right { right: 0; }
.boot-mark { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; color: var(--bone); }
.boot-mark span { font-family: var(--serif); font-size: clamp(4rem, 9vw, 8rem); line-height: 0.8; letter-spacing: -0.08em; }
.boot-mark small { margin-top: 18px; color: var(--brass-light); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; }
.no-js .boot { display: none; }

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(245, 240, 230, 0.55);
  border-radius: 50%;
  color: var(--bone);
  background: rgba(23, 23, 19, 0.16);
  backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.28);
  transition: opacity 0.35s var(--ease-out), transform 0.45s var(--ease-out), background 0.3s;
}
.cursor span { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.cursor.is-visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.cursor.is-link { color: var(--ink); border-color: var(--brass-light); background: var(--brass-light); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  width: 100%;
  align-items: center;
  gap: 3vw;
  padding: 24px 30px;
  color: var(--bone);
  mix-blend-mode: difference;
  transition: transform 0.6s var(--ease-out);
}
.site-header.is-hidden { transform: translateY(-100%); }
.wordmark { display: inline-flex; width: max-content; align-items: center; gap: 12px; font-size: 0.78rem; font-weight: 600; letter-spacing: -0.02em; }
.wordmark-monogram { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 1rem; }
.header-note { font-size: 0.56rem; line-height: 1.5; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.62; }
.desktop-nav { display: flex; gap: 26px; }
.desktop-nav a, .header-enquire { position: relative; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.desktop-nav a::after, .header-enquire::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.desktop-nav a:hover::after, .header-enquire:hover::after { transform: scaleX(1); transform-origin: left; }
.header-enquire span { margin-left: 7px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: currentColor; transition: transform 0.45s var(--ease-out); }
.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 6vw 40px;
  color: var(--bone);
  background: var(--green);
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: visibility 0s 0.8s, clip-path 0.8s var(--ease-in-out);
}
.menu-open .mobile-menu { visibility: visible; clip-path: inset(0); transition-delay: 0s; }
.mobile-menu-label { color: var(--brass-light); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { display: grid; grid-template-columns: 40px 1fr; padding: 14px 0; border-bottom: 1px solid rgba(245,240,230,.18); font-family: var(--serif); font-size: clamp(3.2rem, 15vw, 6rem); line-height: 0.9; letter-spacing: -0.055em; }
.mobile-menu nav span { padding-top: 7px; font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.12em; }
.mobile-contact { width: max-content; color: var(--brass-light); font-size: 0.72rem; letter-spacing: 0.05em; }

.magnetic { will-change: transform; }
.section-index { font-size: 0.61rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--bone);
  background: var(--ink);
  isolation: isolate;
}
.hero-picture { position: absolute; inset: 0; overflow: hidden; }
.hero-picture img { transform: scale(1.08); filter: saturate(0.82) brightness(0.66) contrast(1.05); }
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,13,.58), transparent 42%, rgba(17,17,13,.1)), linear-gradient(0deg, rgba(17,17,13,.8), transparent 45%, rgba(17,17,13,.1)); }
.hero-type { position: absolute; inset: 50% 0 auto; z-index: 2; transform: translateY(-50%); pointer-events: none; }
.hero-word { overflow: hidden; font-size: clamp(6.2rem, 16.2vw, 16.8rem); font-weight: 400; line-height: 0.72; letter-spacing: -0.095em; text-transform: uppercase; white-space: nowrap; }
.hero-word span { display: block; }
.hero-word--top { padding-left: 1.4vw; }
.hero-word--bottom { padding-right: 2.5vw; text-align: right; }
.hero-kicker { position: absolute; top: 20%; left: 2.2vw; z-index: 3; font-family: var(--serif); font-size: clamp(1.5rem, 2vw, 2.5rem); font-style: italic; }
.hero-intro { position: absolute; right: 2.4vw; bottom: 12%; z-index: 3; width: min(370px, 27vw); font-size: clamp(0.75rem, .85vw, .9rem); line-height: 1.65; }
.hero-index { position: absolute; bottom: 4.5%; left: 2.2vw; z-index: 3; display: flex; width: 210px; align-items: center; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid rgba(245,240,230,.56); font-size: 0.61rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.hero-index i { font-style: normal; }
.hero-edition { position: absolute; right: 2.4vw; bottom: 4.5%; z-index: 3; font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase; }

.manifesto {
  position: relative;
  min-height: 112svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--parchment);
}
.manifesto-copy { position: relative; z-index: 4; width: 92vw; margin: 0 auto; padding: 15vh 0 13vh; }
.manifesto-copy > .section-index { margin-left: 15vw; }
.manifesto-title { max-width: 1500px; margin: 9vh auto 0; font-size: clamp(4.7rem, 8.6vw, 9.5rem); font-weight: 300; line-height: 0.82; letter-spacing: -0.085em; text-align: center; }
.manifesto-title em { color: var(--clay); font-family: var(--serif); font-weight: 500; }
.manifesto-foot { display: grid; width: min(68vw, 1120px); grid-template-columns: minmax(270px, 430px) 180px; align-items: end; justify-content: space-between; gap: 8vw; margin: 11vh auto 0; }
.manifesto-foot > p { position: relative; padding-top: 22px; font-size: clamp(.85rem, 1vw, 1rem); line-height: 1.75; }
.manifesto-foot > p::before { position: absolute; top: 0; left: 0; width: 74px; height: 1px; background: var(--clay); content: ""; }
.manifesto-location { display: grid; padding: 15px 0 2px; border-top: 1px solid rgba(23,23,19,.42); }
.manifesto-location span, .manifesto-location small { font-size: .54rem; line-height: 1.65; letter-spacing: .15em; text-transform: uppercase; }
.manifesto-location span { color: var(--clay); }
.manifesto-location strong { margin: 8px 0 5px; font-family: var(--serif); font-size: clamp(2rem, 2.5vw, 3rem); font-weight: 500; line-height: .85; }
.manifesto-location small { color: rgba(23,23,19,.62); }
.manifesto-orbit { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.orbit-image { position: absolute; overflow: hidden; box-shadow: 0 22px 70px rgba(23,23,19,.16); }
.orbit-image--one { top: 13%; right: 5%; width: 11.5vw; height: 15.5vw; transform: rotate(6deg); }
.orbit-image--two { top: 5%; left: 3.5%; width: 12vw; height: 16.5vw; transform: rotate(-5deg); }
.orbit-image--three { right: 4%; bottom: 2%; width: 14vw; height: 20vw; transform: rotate(3deg); }
.project-journal { padding: clamp(100px, 14vh, 170px) 3vw clamp(110px, 16vh, 190px); overflow: hidden; color: var(--ink); background: var(--paper); border-top: 1px solid var(--line-dark); }
.project-journal-head { display: grid; grid-template-columns: .55fr 1.45fr; align-items: start; gap: 4vw; margin-bottom: 11vh; }
.project-journal-head h2 { max-width: 1240px; font-size: clamp(4.5rem, 8vw, 8.7rem); font-weight: 300; line-height: .8; letter-spacing: -.078em; }
.project-journal-head h2 em { color: var(--clay); font-family: var(--serif); font-weight: 500; }
.project-journal-head > p:last-child { grid-column: 2; width: min(420px, 60%); margin-left: auto; color: rgba(23,23,19,.68); font-size: .82rem; line-height: 1.75; }
.project-mosaic { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: min(62vh, 680px) min(40vh, 440px); gap: clamp(14px, 1.4vw, 28px); }
.project-tile { position: relative; overflow: hidden; background: #c9c1b3; box-shadow: 0 24px 70px rgba(23,23,19,.15); transform-origin: center center; will-change: transform, clip-path, opacity; }
.project-tile::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,17,13,.68), transparent 45%); content: ""; }
.project-tile img { transform: scale(1.08); transition: filter .6s; will-change: transform; }
.project-tile:hover img { transform: scale(1.075); filter: saturate(1.08); }
.project-tile figcaption { position: absolute; right: 20px; bottom: 18px; left: 20px; z-index: 2; color: var(--bone); }
.project-tile figcaption span { display: block; margin-bottom: 6px; color: var(--brass-light); font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; }
.project-tile figcaption strong { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 2.4rem); font-weight: 400; }
.project-tile--bedroom { grid-column: 1 / span 7; grid-row: 1 / span 2; }
.project-tile--pavilion { grid-column: 8 / -1; grid-row: 1; }
.project-tile--passage { grid-column: 8 / span 2; grid-row: 2; }
.project-tile--pool { grid-column: 10 / -1; grid-row: 2; }

.collection-story { position: relative; height: 590vh; color: var(--bone); background: var(--ink); }
.collection-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; background: var(--ink); }
.collection-rail { position: absolute; top: 50%; right: 27px; z-index: 20; display: flex; height: calc(100% - 150px); flex-direction: column; align-items: center; justify-content: space-between; padding: 12px 0; color: var(--bone); writing-mode: vertical-rl; }
.collection-rail::before { position: absolute; top: 0; bottom: 0; left: -13px; width: 1px; background: rgba(245,240,230,.25); content: ""; }
.collection-rail span { font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; }
.chapter { position: absolute; inset: 0; overflow: hidden; background: var(--ink); clip-path: inset(0); }
.chapter:not(:first-of-type) { clip-path: inset(0 100% 0 0); }
.chapter-media, .chapter-shade { position: absolute; inset: 0; }
.chapter-media img { transform: scale(1.08); filter: saturate(.82) contrast(1.05); }
.chapter-shade { background: linear-gradient(90deg, rgba(10,10,8,.82) 0%, rgba(10,10,8,.28) 49%, rgba(10,10,8,.12) 100%), linear-gradient(0deg, rgba(10,10,8,.72), transparent 55%); }
.chapter-copy { position: absolute; inset: 0; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr auto; padding: 15vh 6vw 8vh; }
.chapter-copy > p { grid-column: 1 / -1; font-size: .61rem; letter-spacing: .18em; text-transform: uppercase; }
.chapter-copy > p span { display: inline-grid; width: 34px; height: 34px; margin-right: 14px; place-items: center; border: 1px solid rgba(245,240,230,.45); border-radius: 50%; }
.chapter-copy h2 { grid-column: 1 / -1; align-self: center; font-size: clamp(5rem, 10.5vw, 11.5rem); font-weight: 300; line-height: .74; letter-spacing: -.085em; }
.chapter-copy h2 em { color: var(--brass-light); font-family: var(--serif); font-weight: 400; }
.chapter-detail { grid-column: 2; align-self: end; justify-self: end; width: min(470px, 36vw); padding-top: 18px; border-top: 1px solid rgba(245,240,230,.45); }
.chapter-detail p { max-width: 400px; color: rgba(245,240,230,.76); font-size: .82rem; line-height: 1.65; }
.chapter-detail a { display: inline-block; margin-top: 22px; color: var(--brass-light); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; }

.archive { position: relative; height: 470vh; color: var(--bone); background: var(--ink); }
.archive-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; background: var(--ink); }
.archive-heading { position: absolute; top: 13vh; left: 3vw; z-index: 6; width: min(500px, 38vw); }
.archive-heading h2 { margin: 5vh 0 3vh; font-size: clamp(4.7rem, 7.8vw, 8rem); font-weight: 300; line-height: .77; letter-spacing: -.075em; }
.archive-heading h2 em { color: var(--brass-light); font-family: var(--serif); font-weight: 400; }
.archive-heading > p:last-child { width: min(340px, 90%); color: rgba(245,240,230,.64); font-size: .75rem; line-height: 1.65; }
.archive-track { position: absolute; top: 22vh; left: 46vw; display: flex; width: max-content; align-items: center; gap: 7vw; padding: 2vh 14vw 2vh 0; transform: rotate(2.2deg); transform-origin: left center; will-change: transform; }
.archive-card { position: relative; flex: 0 0 auto; overflow: hidden; background: var(--ink-soft); box-shadow: 0 36px 100px rgba(0,0,0,.38); }
.archive-card--portrait { width: min(28vw, 430px); height: min(61vh, 640px); }
.archive-card--landscape { width: min(46vw, 760px); height: min(48vh, 520px); }
.archive-card:nth-child(even) { margin-top: 10vh; }
.archive-card:nth-child(3) { margin-top: -5vh; }
.archive-card:nth-child(5) { margin-top: -6vh; }
.archive-card::after { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; height: 46%; background: linear-gradient(transparent, rgba(12,12,10,.88)); content: ""; pointer-events: none; }
.archive-card img { width: 100%; height: 100%; margin: 0; transform: scale(1.015); filter: saturate(.82); transition: transform 1.4s var(--ease-out), filter .6s; }
.archive-card:hover img { transform: scale(1.055); filter: saturate(1); }
.archive-card figcaption { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 60px 22px 21px; transform: rotate(-2.2deg) translate(-3px, 5px); }
.archive-card figcaption span { display: block; margin-bottom: 7px; color: var(--brass-light); font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; }
.archive-card figcaption strong { font-family: var(--serif); font-size: clamp(1.7rem, 2.3vw, 2.8rem); font-weight: 400; }
.archive-progress { position: absolute; right: 3vw; bottom: 4.2vh; left: 3vw; z-index: 7; height: 1px; background: rgba(245,240,230,.2); }
.archive-progress span { display: block; width: 100%; height: 1px; background: var(--brass-light); transform: scaleX(0); transform-origin: left; }

.selector { position: relative; padding: 18vh 4vw 20vh; overflow: hidden; color: var(--ink); background: var(--paper); }
.selector-header { display: grid; grid-template-columns: 1fr 2fr; align-items: start; gap: 7vw; margin-bottom: 12vh; }
.selector-header h2 { max-width: 1050px; font-size: clamp(4.5rem, 8.6vw, 9.5rem); font-weight: 300; line-height: .82; letter-spacing: -.08em; }
.selector-layout { display: grid; grid-template-columns: 1fr minmax(370px, .76fr); gap: 7vw; align-items: center; }
.selector-list { border-top: 1px solid var(--line-dark); }
.selector-item { position: relative; display: grid; width: 100%; grid-template-columns: 55px 1fr auto 30px; align-items: center; gap: 16px; padding: 29px 0; border-bottom: 1px solid var(--line-dark); text-align: left; background: transparent; cursor: pointer; }
.selector-item::before { position: absolute; inset: 0; z-index: -1; background: var(--green); content: ""; transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease-out); }
.selector-item span { font-size: .58rem; letter-spacing: .12em; }
.selector-item strong { font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 4rem); font-weight: 500; line-height: .9; }
.selector-item i { font-size: .6rem; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }
.selector-item b { font-size: 1.1rem; font-weight: 400; transition: transform .4s var(--ease-out); }
.selector-item:hover, .selector-item.is-active { z-index: 1; color: var(--bone); padding-right: 18px; padding-left: 18px; }
.selector-item:hover::before, .selector-item.is-active::before { transform: scaleY(1); transform-origin: top; }
.selector-item:hover b, .selector-item.is-active b { transform: rotate(45deg); }
.selector-preview { position: relative; justify-self: center; width: min(31vw, 470px); }
.selector-preview-frame { height: min(68vh, 700px); overflow: hidden; background: var(--ink); clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%); }
.selector-preview img { transform: scale(1.05); }
.selector-preview figcaption { margin-top: 14px; font-size: .55rem; letter-spacing: .16em; text-transform: uppercase; }

.note { display: grid; min-height: 110svh; grid-template-columns: 1.04fr .96fr; color: var(--bone); background: var(--green); }
.note-image { position: relative; min-height: 100%; overflow: hidden; }
.note-image img { filter: saturate(.8) contrast(1.04); transform: scale(1.08); }
.note-copy { display: flex; flex-direction: column; justify-content: center; padding: 13vh 7vw; }
.note-copy h2 { margin: 7vh 0 5vh; font-size: clamp(4.3rem, 7vw, 7.4rem); font-weight: 300; line-height: .82; letter-spacing: -.075em; }
.note-copy h2 em { color: var(--brass-light); font-family: var(--serif); font-weight: 400; }
.note-copy > p:not(.section-index) { max-width: 520px; color: rgba(245,240,230,.7); font-size: .86rem; line-height: 1.8; }
.note-steps { margin: 7vh 0 0; padding: 0; border-top: 1px solid rgba(245,240,230,.22); list-style: none; }
.note-steps li { display: grid; grid-template-columns: 50px 1fr; padding: 19px 0; border-bottom: 1px solid rgba(245,240,230,.22); font-family: var(--serif); font-size: 1.45rem; }
.note-steps span { padding-top: 5px; color: var(--brass-light); font-family: var(--sans); font-size: .55rem; letter-spacing: .12em; }

.visit { position: relative; min-height: 115svh; overflow: hidden; color: var(--bone); background: var(--ink); }
.visit-media { position: absolute; inset: 0; }
.visit-media img { filter: saturate(.76) brightness(.62) contrast(1.04); transform: scale(1.11); }
.visit::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(12,12,10,.68) 0%, rgba(12,12,10,.18) 56%, rgba(12,12,10,.5) 100%), linear-gradient(0deg, rgba(12,12,10,.82) 0%, transparent 54%, rgba(12,12,10,.22) 100%); content: ""; }
.visit-curtain { position: absolute; top: 0; bottom: 0; z-index: 2; width: 19vw; background: var(--ink); }
.visit-curtain--left { left: 0; }
.visit-curtain--right { right: 0; }
.visit-content { position: relative; z-index: 3; display: grid; width: 100%; min-height: 115svh; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto 1fr auto; padding: clamp(92px, 11vh, 130px) 4vw 7vh; }
.visit-content > .section-index { grid-column: 1 / span 4; }
.visit-coordinate { grid-column: 11 / -1; justify-self: end; font-size: .54rem; line-height: 1.7; letter-spacing: .16em; text-align: right; text-transform: uppercase; }
.visit-headline { grid-column: 2 / span 9; align-self: center; margin-top: 2vh; }
.visit-content h2 { font-weight: 300; letter-spacing: -.085em; }
.visit-content h2 span { display: block; font-size: clamp(6.4rem, 11.2vw, 12rem); line-height: .66; }
.visit-content h2 em { display: block; margin: -.02em 0 0 8vw; color: var(--brass-light); font-family: var(--serif); font-size: clamp(4.8rem, 7.3vw, 8.6rem); font-weight: 400; line-height: .8; white-space: nowrap; }
.visit-headline > p { width: min(360px, 30vw); margin: 5vh 0 0 9vw; color: rgba(245,240,230,.68); font-size: .76rem; line-height: 1.75; }
.visit-details { grid-column: 2 / -1; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 5vw; padding-top: 3vh; border-top: 1px solid rgba(245,240,230,.42); }
.visit-address > span { display: block; margin-bottom: 10px; color: var(--brass-light); font-size: .52rem; letter-spacing: .15em; text-transform: uppercase; }
.visit-content address { color: rgba(245,240,230,.72); font-size: .72rem; font-style: normal; line-height: 1.7; }
.visit-actions { display: flex; align-items: center; gap: 30px; }
.round-cta { position: relative; display: grid; width: 112px; height: 112px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--ink); background: var(--brass-light); font-size: .58rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.round-cta i { position: absolute; right: 23px; bottom: 20px; font-size: .9rem; font-style: normal; }
.text-link { padding-bottom: 8px; border-bottom: 1px solid rgba(245,240,230,.5); font-size: .62rem; letter-spacing: .08em; }

.footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 40px; padding: 44px 3vw; color: var(--bone); background: #0d0d0b; }
.footer-mark { font-family: var(--serif); font-size: 2.1rem; }
.footer p, .footer div { color: rgba(245,240,230,.55); font-size: .55rem; line-height: 1.6; letter-spacing: .12em; text-transform: uppercase; }
.footer div { display: flex; justify-content: space-between; }
.footer div a { color: var(--brass-light); }

.reveal-up, .reveal-title, .reveal-clip { will-change: transform, opacity, clip-path; }

/* Keep every section usable if a public motion dependency is unavailable. */
.motion-fallback .collection-story,
.motion-fallback .archive { height: auto; }
.motion-fallback .collection-stage,
.motion-fallback .archive-stage { position: relative; height: auto; overflow: visible; }
.motion-fallback .collection-rail,
.motion-fallback .archive-progress { display: none; }
.motion-fallback .chapter,
.motion-fallback .chapter:not(:first-of-type) { position: relative; min-height: 100svh; clip-path: none; }
.motion-fallback .archive { padding: 120px 0; }
.motion-fallback .archive-heading,
.motion-fallback .archive-track { position: relative; top: auto; left: auto; width: auto; transform: none; }
.motion-fallback .archive-heading { padding: 0 5vw; }
.motion-fallback .archive-track { display: grid; gap: 60px; padding: 80px 5vw 0; }
.motion-fallback .archive-card { width: min(720px, 90vw); margin: 0; transform: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; padding: 18px 20px; }
  .header-note, .desktop-nav, .header-enquire { display: none; }
  .menu-toggle { display: block; }
  .hero-word { font-size: clamp(5.8rem, 18vw, 10rem); }
  .hero-kicker { top: 19%; left: 5vw; }
  .hero-intro { right: 5vw; bottom: 13%; width: min(360px, 48vw); }
  .hero-index { left: 5vw; }
  .hero-edition { right: 5vw; }
  .manifesto { min-height: 112svh; }
  .manifesto-title { font-size: clamp(4rem, 10.5vw, 7rem); }
  .manifesto-copy > .section-index { margin-left: 18vw; }
  .manifesto-foot { width: 66vw; grid-template-columns: minmax(250px, 1fr) 150px; }
  .orbit-image--one { width: 15vw; height: 21vw; }
  .orbit-image--two { width: 16vw; height: 22vw; }
  .orbit-image--three { width: 18vw; height: 25vw; }
  .project-journal-head { grid-template-columns: 1fr; }
  .project-journal-head h2, .project-journal-head > p:last-child { grid-column: 1; }
  .project-journal-head > p:last-child { margin-left: 0; }
  .project-mosaic { grid-template-rows: min(58vh, 620px) min(36vh, 400px); }
  .chapter-copy { padding-right: 9vw; }
  .chapter-detail { width: min(430px, 48vw); }
  .archive-heading { width: 46vw; }
  .archive-track { left: 52vw; }
  .archive-card--portrait { width: 40vw; }
  .archive-card--landscape { width: 59vw; }
  .selector-layout { grid-template-columns: 1fr .72fr; gap: 5vw; }
  .selector-preview { width: 34vw; }
  .selector-item { grid-template-columns: 42px 1fr 24px; }
  .selector-item i { display: none; }
  .note { grid-template-columns: 1fr; }
  .note-image { min-height: 72svh; }
  .note-copy { padding: 12vh 7vw; }
  .visit-curtain { width: 16vw; }
}

@media (max-width: 720px) {
  .grain { opacity: .04; animation: none; }
  .cursor { display: none; }
  .wordmark-monogram { width: 34px; height: 34px; }
  .hero { min-height: 100svh; }
  .hero-picture { inset: 0; }
  .hero-picture img { object-position: 52% center; }
  .hero-vignette { background: linear-gradient(0deg, rgba(17,17,13,.87), rgba(17,17,13,.08) 62%, rgba(17,17,13,.28)); }
  .hero-type { top: 46%; }
  .hero-word { font-size: clamp(4.25rem, 21.5vw, 7.5rem); line-height: .79; }
  .hero-word--top { padding-left: 3vw; }
  .hero-word--bottom { padding-right: 4vw; }
  .hero-kicker { top: 18%; font-size: 1.35rem; }
  .hero-intro { right: 5vw; bottom: 14%; width: 62vw; font-size: .7rem; }
  .hero-index { bottom: 4%; width: 180px; font-size: .53rem; }
  .hero-edition { bottom: 4%; font-size: .48rem; }

  .manifesto { min-height: auto; }
  .manifesto-copy { width: auto; padding: 14vh 5vw 10vh; }
  .manifesto-copy > .section-index { margin-left: 0; }
  .manifesto-title { margin-top: 18vh; font-size: clamp(3.75rem, 16.5vw, 6.4rem); line-height: .84; text-align: left; }
  .manifesto-foot { grid-template-columns: 1fr; gap: 7vh; margin-top: 12vh; padding-left: 0; }
  .manifesto-location { display: none; }
  .orbit-image--one { top: 12%; right: 5%; width: 22vw; height: 31vw; }
  .orbit-image--two { display: none; }
  .orbit-image--three { display: none; }
  .project-journal { padding: 13vh 5vw; }
  .project-journal-head { gap: 7vh; margin-bottom: 9vh; }
  .project-journal-head h2 { font-size: clamp(4rem, 16vw, 6.3rem); }
  .project-journal-head > p:last-child { width: 100%; }
  .project-mosaic { position: relative; grid-template-columns: 1fr 1fr; grid-template-rows: none; gap: 3vw; padding: 0; }
  .project-tile { min-height: 34vh; }
  .project-tile--bedroom, .project-tile--pavilion { grid-column: 1 / -1; grid-row: auto; min-height: 52vh; }
  .project-tile--passage, .project-tile--pool { grid-column: auto; grid-row: auto; }

  .collection-story { height: auto; padding: 0; }
  .collection-stage { position: relative; height: auto; overflow: visible; }
  .collection-rail { display: none; }
  .chapter, .chapter:not(:first-of-type) { position: relative; min-height: 100svh; clip-path: none !important; }
  .chapter-media img { transform: scale(1.02); }
  .chapter-shade { background: linear-gradient(0deg, rgba(10,10,8,.92), rgba(10,10,8,.12) 68%, rgba(10,10,8,.28)); }
  .chapter-copy { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: 110px 6vw 8vh; }
  .chapter-copy > p { position: absolute; top: 100px; }
  .chapter-copy h2 { font-size: clamp(4.1rem, 19vw, 6.8rem); line-height: .77; }
  .chapter-detail { width: 100%; margin-top: 7vh; }
  .chapter-detail a { margin-top: 16px; }

  .archive { height: auto; padding: 14vh 0 16vh; }
  .archive-stage { position: relative; height: auto; overflow: visible; }
  .archive-heading { position: relative; top: auto; left: auto; width: auto; padding: 0 5vw; }
  .archive-heading::before { display: none; }
  .archive-heading h2 { font-size: clamp(4.2rem, 17vw, 7rem); }
  .archive-track { position: relative; top: auto; left: auto; display: grid; width: auto; gap: 7vh; margin-top: 10vh; padding: 0 5vw; transform: none !important; }
  .archive-card, .archive-card--portrait, .archive-card--landscape { width: 76vw; height: 61vh; margin: 0 !important; transform: none !important; }
  .archive-card:nth-child(even) { justify-self: end; }
  .archive-card img { width: 100%; height: 100%; margin: 0; transform: scale(1.04); }
  .archive-card figcaption { transform: none; }
  .archive-progress { display: none; }

  .selector { padding: 14vh 5vw; }
  .selector-header { grid-template-columns: 1fr; gap: 8vh; margin-bottom: 10vh; }
  .selector-header h2 { font-size: clamp(4rem, 16vw, 6.3rem); }
  .selector-layout { grid-template-columns: 1fr; }
  .selector-preview { grid-row: 1; width: 74vw; justify-self: end; margin-bottom: 8vh; }
  .selector-preview-frame { height: 56vh; }
  .selector-item { grid-template-columns: 36px 1fr 24px; padding: 22px 0; }
  .selector-item strong { font-size: 2.25rem; }

  .note-image { min-height: 56svh; }
  .note-copy { padding: 9vh 6vw 12vh; }
  .note-copy h2 { margin-top: 5vh; }
  .note-copy h2 { font-size: clamp(4rem, 16vw, 6.4rem); }

  .visit { min-height: 108svh; }
  .visit-curtain { width: 8vw; }
  .visit-content { min-height: 108svh; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; padding: 11vh 6vw 6vh; }
  .visit-content > .section-index, .visit-headline, .visit-details { grid-column: 1; }
  .visit-coordinate { display: none; }
  .visit-headline { margin-top: 10vh; }
  .visit-content h2 span { font-size: clamp(5.3rem, 23vw, 8rem); }
  .visit-content h2 em { margin: .08em 0 0 8vw; font-size: clamp(3.7rem, 15.5vw, 6rem); white-space: normal; }
  .visit-headline > p { width: 74vw; margin: 5vh 0 0 9vw; }
  .visit-details { grid-template-columns: 1fr; gap: 3vh; padding-top: 2.5vh; }
  .visit-actions { justify-content: space-between; gap: 20px; }
  .round-cta { width: 104px; height: 104px; }

  .footer { grid-template-columns: 1fr; gap: 22px; padding: 40px 5vw; }
  .footer div { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 400px) {
  .hero-intro { width: 70vw; }
  .hero-word { font-size: 21vw; }
  .manifesto-foot { padding-left: 0; }
  .chapter-copy h2 { font-size: 18vw; }
  .selector-preview { width: 80vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .boot { display: none; }
  .hero-picture img, .chapter-media img, .visit-media img, .note-image img, .selector-preview img { transform: none !important; }
  .collection-story, .archive { height: auto; }
  .collection-stage, .archive-stage { position: relative; height: auto; }
  .chapter, .chapter:not(:first-of-type) { position: relative; min-height: 100svh; clip-path: none !important; }
  .archive { padding: 100px 0; }
  .archive-heading, .archive-track { position: relative; top: auto; left: auto; width: auto; transform: none !important; }
  .archive-heading { padding: 0 5vw; }
  .archive-track { display: grid; gap: 30px; padding: 60px 5vw 0; }
  .archive-card { width: min(720px, 90vw); margin: 0 !important; transform: none !important; }
  .grain { animation: none; }
}
