:root {
  --ink: #111111;
  --paper: #f4f0ec;
  --paper-deep: #e7e0da;
  --white: #fffdfb;
  --berry: #cd4a74;
  --berry-dark: #a72f59;
  --muted: #726b66;
  --line: rgba(17, 17, 17, 0.17);
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary,
select {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--berry);
}

:focus-visible {
  outline: 3px solid #f4b4c9;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(96px, 12vw, 168px);
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--berry);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: min-height 0.35s var(--ease), color 0.35s ease, background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  min-height: 74px;
  color: var(--ink);
  background: rgba(244, 240, 236, 0.9);
  border-color: rgba(17, 17, 17, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand-mark {
  position: relative;
  font-size: 1.55rem;
}

.brand-mark::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--berry);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}

.is-scrolled .nav-cta,
.menu-open .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.nav-cta:hover {
  color: var(--white);
  background: var(--berry);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #181818;
  isolation: isolate;
}

.hero-image,
.hero-wash,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
  scale: 1.03;
  animation: hero-in 1.8s var(--ease) both;
}

.hero-wash {
  z-index: -2;
  background:
    radial-gradient(circle at var(--spot-x, 74%) var(--spot-y, 52%), rgba(205, 74, 116, 0.2), transparent 27%),
    linear-gradient(90deg, rgba(12, 10, 10, 0.86) 0%, rgba(12, 10, 10, 0.55) 45%, rgba(12, 10, 10, 0.12) 78%),
    linear-gradient(0deg, rgba(12, 10, 10, 0.7) 0%, transparent 42%);
}

.hero-grain {
  z-index: -1;
  opacity: 0.12;
  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='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

@keyframes hero-in {
  from { opacity: 0; scale: 1.1; }
  to { opacity: 1; scale: 1.03; }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 60px;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 52px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #4f4945;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--berry);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.76);
}

.hero h1,
.section-heading h2,
.vision-copy h2,
.rhythm h2,
.interest h2,
.questions-heading h2 {
  margin: 0;
  font-size: clamp(3.7rem, 8.5vw, 8.2rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.hero h1 {
  max-width: 900px;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: #f0b3c6;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lede {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--berry);
  box-shadow: 0 14px 50px rgba(107, 20, 51, 0.28);
}

.button-primary:hover {
  background: var(--berry-dark);
}

.button-ink {
  color: var(--white);
  background: var(--ink);
}

.button-ink:hover {
  background: #2a2928;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  font-size: 0.94rem;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  transition: color 0.25s ease, gap 0.3s var(--ease);
}

.text-link:hover {
  gap: 20px;
  color: var(--berry);
}

.light-link {
  color: rgba(255, 255, 255, 0.88);
}

.hero-notes {
  display: grid;
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-notes > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-notes span,
.hero-notes small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.hero-notes strong {
  font-size: 0.9rem;
}

.hero-notes small {
  grid-column: 2;
  margin-top: 4px;
  line-height: 1.4;
}

.concept-tag {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-index {
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(260px, 0.7fr);
  gap: 80px;
  align-items: end;
  padding-top: 44px;
}

.display-copy {
  max-width: 940px;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6.7rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.display-copy em {
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.manifesto-body {
  padding-bottom: 8px;
}

.manifesto-body p {
  margin: 0 0 32px;
  color: #5c5550;
  font-size: 1.05rem;
}

.word-ribbon {
  overflow: hidden;
  color: var(--white);
  background: var(--berry);
  transform: rotate(-1.2deg) scale(1.03);
}

.word-ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
  animation: ribbon 24s linear infinite;
}

.word-ribbon span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

.word-ribbon i {
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
}

@keyframes ribbon {
  to { transform: translateX(-50%); }
}

.spaces {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.45fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.vision-copy h2,
.questions-heading h2 {
  font-size: clamp(3.2rem, 6.8vw, 6.6rem);
  line-height: 0.92;
}

.section-heading > p {
  max-width: 370px;
  margin: 0 0 8px;
  color: #5c5550;
  font-size: 1.05rem;
}

.space-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  perspective: 1400px;
}

.space-card {
  position: relative;
  display: flex;
  min-height: 690px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  transition: transform 0.25s ease-out;
  transform-style: preserve-3d;
}

.space-card::before {
  position: absolute;
  top: -110px;
  right: -120px;
  width: 310px;
  height: 310px;
  content: "";
  background: var(--berry);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(2px);
  transition: scale 0.6s var(--ease), opacity 0.4s ease;
}

.space-card:hover::before {
  opacity: 0.2;
  scale: 1.25;
}

.space-card-light {
  background: #ded8d3;
}

.space-card-dark {
  color: var(--white);
  background: var(--ink);
}

.space-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.space-number {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.space-card svg {
  width: 76px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.4;
}

.space-card-copy {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.card-kicker {
  margin: 0 0 16px;
  color: var(--berry-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.space-card-dark .card-kicker {
  color: #eda8bf;
}

.space-card h3 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.space-card-copy > p:not(.card-kicker) {
  max-width: 450px;
  margin: 24px 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 1.02rem;
}

.space-card-dark .space-card-copy > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.space-card ul {
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
  border-top: 1px solid currentColor;
}

.space-card li {
  position: relative;
  padding: 12px 0 12px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.22);
}

.space-card-dark li {
  border-color: rgba(255, 255, 255, 0.2);
}

.space-card li::before {
  position: absolute;
  top: 19px;
  left: 1px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--berry);
  border-radius: 50%;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  font-size: 0.92rem;
  font-weight: 800;
  border-top: 1px solid currentColor;
}

.card-link span {
  color: var(--berry);
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease);
}

.card-link:hover span {
  transform: translate(4px, -4px);
}

.availability-note {
  max-width: 720px;
  margin: 32px 0 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.room-gallery {
  overflow: hidden;
  background: var(--white);
}

.room-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.room-gallery-heading h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.8vw, 6.6rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.room-gallery-heading h2 em {
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.room-gallery-heading > p {
  max-width: 440px;
  margin: 0 0 8px;
  color: #5c5550;
  font-size: 1.05rem;
}

.room-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(0, 0.93fr);
  gap: clamp(24px, 4.2vw, 64px);
  align-items: start;
}

.room-shot {
  min-width: 0;
  margin: 0;
}

.room-shot-offset {
  margin-top: 132px;
}

.room-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8d0ca;
}

.room-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  pointer-events: none;
}

.room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s ease;
}

.room-shot:hover .room-photo img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.room-concept-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.76);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.room-shot figcaption {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1.2fr);
  gap: 28px;
  align-items: start;
  padding-top: 22px;
}

.room-shot figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--berry-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.room-shot figcaption h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.room-shot figcaption p {
  margin: 3px 0 0;
  color: #625b56;
  font-size: 0.9rem;
}

.room-gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 86px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.room-gallery-footer p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-style: italic;
}

.vision {
  background: #d8d0ca;
}

.vision .shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.vision-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 32px 0 42px;
  color: #554e49;
  font-size: 1.05rem;
}

.vision-key {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.22);
}

.vision-key span,
.vision-key strong {
  display: block;
}

.vision-key span {
  margin-bottom: 4px;
  color: var(--berry-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vision-key strong {
  font-size: 0.84rem;
}

.comparison-wrap {
  min-width: 0;
}

.comparison {
  --split: 34%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #918b87;
  box-shadow: 0 30px 70px rgba(48, 38, 34, 0.22);
  touch-action: pan-y;
}

.comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.comparison-line {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
  pointer-events: none;
}

.comparison-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
}

.comparison input {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-label {
  position: absolute;
  z-index: 4;
  top: 20px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.before-label { left: 20px; }
.after-label { right: 20px; }

.concept-note {
  margin: 12px 0 0;
  color: #625b56;
  font-size: 0.72rem;
  text-align: right;
}

.rhythm {
  color: var(--white);
  background: var(--ink);
}

.section-heading.compact {
  display: block;
  max-width: 900px;
  margin-bottom: 80px;
}

.rhythm h2 {
  font-size: clamp(3.2rem, 6.8vw, 6.4rem);
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.rhythm-item {
  min-height: 300px;
  padding: 28px 26px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.rhythm-item:last-child {
  border-right: 0;
}

.rhythm-item > span {
  display: block;
  margin-bottom: 96px;
  color: #e69ab3;
  font-size: 0.72rem;
  font-weight: 800;
}

.rhythm-item h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.rhythm-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.interest {
  color: var(--white);
  background: var(--berry);
}

.interest-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.interest h2 {
  font-size: clamp(3.8rem, 7vw, 7.2rem);
}

.interest h2 em {
  color: var(--white);
}

.interest-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.interest-form {
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(91, 14, 42, 0.28);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.interest-form label {
  display: block;
  margin-bottom: 26px;
}

.interest-form label > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #4f4945;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.interest-form label small {
  color: #968e88;
  font-size: inherit;
  font-weight: 600;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 2px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.33);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.interest-form textarea {
  min-height: 90px;
  resize: vertical;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: var(--berry);
}

.interest-form input::placeholder,
.interest-form textarea::placeholder {
  color: #a19a95;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
}

.form-footer p {
  max-width: 190px;
  margin: 0;
  color: #746d68;
  font-size: 0.72rem;
}

.form-footer button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: var(--berry-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.questions {
  background: var(--paper);
}

.questions-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 86px;
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 48px 28px 0;
  margin: -8px 0 0;
  color: #625b56;
}

.site-footer {
  padding-top: 76px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 70px;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-top > div > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.85rem;
}

.footer-call {
  max-width: 650px;
  font-size: clamp(2.5rem, 5vw, 5.3rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
  transition: color 0.25s ease;
}

.footer-call span {
  display: inline-block;
  color: var(--berry);
  transition: transform 0.3s var(--ease);
}

.footer-call:hover {
  color: #f0b3c6;
}

.footer-call:hover span {
  transform: translate(8px, -8px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  min-height: 76px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  justify-self: end;
  color: rgba(255, 255, 255, 0.72);
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

@media (max-width: 1000px) {
  :root {
    --shell: min(100% - 44px, 900px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .hero-notes {
    display: none;
  }

  .manifesto-grid,
  .section-heading,
  .room-gallery-heading,
  .vision .shell,
  .interest-shell,
  .questions-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .section-heading,
  .room-gallery-heading,
  .vision .shell,
  .interest-shell,
  .questions-grid {
    gap: 48px;
  }

  .manifesto-body {
    max-width: 600px;
  }

  .section-heading > p {
    max-width: 560px;
  }

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

  .room-gallery-heading > p {
    max-width: 620px;
  }

  .room-shot-offset {
    margin-top: 80px;
  }

  .room-shot figcaption {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vision-copy {
    max-width: 720px;
  }

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

  .rhythm-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rhythm-item:nth-child(2) {
    border-right: 0;
  }

  .rhythm-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .footer-top {
    display: grid;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 34px);
    --header-height: 72px;
  }

  body {
    padding-bottom: 64px;
  }

  .section {
    padding-block: 88px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-open {
    min-height: 68px;
    padding: 0 17px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4.25px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 104px 24px 34px;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s var(--ease);
  }

  .site-header.menu-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 12px 0;
    font-size: clamp(2.1rem, 10vw, 3.3rem);
    font-weight: 650;
    letter-spacing: -0.05em;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: auto;
  }

  .hero {
    min-height: 820px;
  }

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

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(12, 10, 10, 0.45), rgba(12, 10, 10, 0.3) 26%, rgba(12, 10, 10, 0.88) 78%),
      linear-gradient(90deg, rgba(12, 10, 10, 0.44), transparent);
  }

  .hero-inner {
    min-height: 820px;
    padding-top: 130px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.8rem);
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
  }

  .concept-tag {
    display: none;
  }

  .manifesto-grid {
    padding-top: 32px;
  }

  .display-copy {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .room-gallery-heading h2,
  .vision-copy h2,
  .questions-heading h2,
  .rhythm h2 {
    font-size: clamp(2.9rem, 13vw, 5rem);
  }

  .space-cards {
    grid-template-columns: 1fr;
  }

  .space-card {
    min-height: 610px;
    padding: 28px;
  }

  .space-card h3 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .availability-note {
    text-align: left;
  }

  .room-gallery-heading {
    margin-bottom: 44px;
  }

  .room-gallery-grid {
    grid-template-columns: 1fr;
  }

  .room-shot-offset {
    margin-top: 24px;
  }

  .room-shot figcaption {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .room-gallery-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 56px;
  }

  .vision-key {
    grid-template-columns: 1fr;
  }

  .comparison-label {
    top: 12px;
    padding: 6px 8px;
  }

  .before-label { left: 12px; }
  .after-label { right: 12px; }

  .comparison-line span {
    width: 44px;
    height: 44px;
  }

  .rhythm-grid {
    grid-template-columns: 1fr;
  }

  .rhythm-item,
  .rhythm-item:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .rhythm-item:last-child {
    border-bottom: 0;
  }

  .rhythm-item > span {
    margin-bottom: 56px;
  }

  .interest h2 {
    font-size: clamp(3.5rem, 15vw, 5.5rem);
  }

  .interest-form {
    width: calc(100% + 12px);
    margin-left: -6px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer p {
    max-width: none;
  }

  .questions-grid {
    gap: 36px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 1rem;
  }

  .footer-top {
    padding-bottom: 56px;
  }

  .footer-call {
    font-size: 2.8rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 24px;
  }

  .footer-bottom a {
    justify-self: start;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 20px;
    color: var(--white);
    background: var(--berry);
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 -10px 30px rgba(44, 10, 22, 0.18);
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
