:root {
  --ink: #0c1016;
  --ink-soft: #141a22;
  --paper: #f3eee4;
  --ivory: #f7f3ea;
  --sage: #8fa392;
  --muted: #9aa3b0;
  --line: color-mix(in oklab, var(--paper) 14%, transparent);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { color-scheme: dark; background: var(--ink); }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; outline: 1px solid color-mix(in oklab, var(--paper) 10%, transparent); outline-offset: -1px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; text-wrap: balance; letter-spacing: -0.03em; margin: 0; }
p { text-wrap: pretty; }
.kicker {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.wrap { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .wrap { padding: 0 2rem; } }

header.site {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  background: color-mix(in oklab, var(--ink) 88%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
header.site .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.25rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand svg { width: 2rem; height: 2rem; }
.brand strong { font-family: var(--display); font-size: 1.35rem; font-weight: 500; }
nav.desk { display: none; gap: 2rem; }
nav.desk a {
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); padding: 0.5rem 0;
}
nav.desk a:hover, nav.desk a.on { color: var(--paper); }
nav.desk a.on { box-shadow: 0 1px 0 var(--sage); }
.menu-btn {
  background: none; border: 0; color: var(--paper); width: 44px; height: 44px; cursor: pointer;
}
nav.mob {
  display: none; flex-direction: column; gap: 0.25rem; padding: 0.5rem 1.25rem 2rem;
  background: var(--ink);
}
nav.mob.open { display: flex; }
nav.mob a { font-family: var(--display); font-size: 2rem; padding: 0.6rem 0; }
@media (min-width: 768px) {
  nav.desk { display: flex; }
  .menu-btn, nav.mob { display: none !important; }
}

.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--ink);
}
.hero.short { min-height: 88dvh; }
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center;
}
.hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,16,22,0.78) 0%, rgba(12,16,22,0.12) 48%, rgba(12,16,22,0.28) 100%);
}
.hero .copy { position: relative; z-index: 1; padding: 7rem 0 4rem; width: 100%; }
.hero h1 { font-size: clamp(3.2rem, 11vw, 8rem); line-height: 0.88; }
.hero .tag { margin-top: 1.25rem; font-family: var(--display); font-style: italic; font-size: clamp(1.65rem, 3vw, 2.35rem); color: color-mix(in oklab, var(--paper) 90%, transparent); max-width: 28rem; }
.hero .kicker { color: var(--sage); }

.btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  height: 3rem; padding: 0 1.4rem; border-radius: 12px;
  font: 500 0.9rem/1 var(--sans); letter-spacing: 0.02em;
}
.btn.primary { background: var(--paper); color: var(--ink); }
.btn.ghost { box-shadow: 0 0 0 1px color-mix(in oklab, var(--paper) 28%, transparent); }
.btn:hover { opacity: 0.92; }

section.block { padding: 5rem 0; }
@media (min-width: 640px) { section.block { padding: 7rem 0; } }
.soft { background: var(--ink-soft); }
.grid-2 { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.display { font-size: clamp(2.2rem, 5.5vw, 4.5rem); line-height: 1.02; }
.lede { color: var(--muted); font-size: 1.15rem; line-height: 1.5; max-width: 36rem; }
.body { color: var(--muted); line-height: 1.6; max-width: 36rem; }
figcaption { margin-top: 0.75rem; font-size: 0.75rem; letter-spacing: 0.04em; color: #6e7784; }
.frame { overflow: hidden; border-radius: 18px; background: #1c2430; }
.frame img { width: 100%; height: 100%; object-fit: cover; }

.doors { display: grid; gap: 1.25rem; }
@media (min-width: 1024px) { .doors { grid-template-columns: 1fr 1fr; } }
.door {
  position: relative; overflow: hidden; border-radius: 28px; min-height: 28rem;
  display: flex; align-items: flex-end;
}
.door img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.door .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,16,22,0.92), rgba(12,16,22,0.2) 55%, rgba(12,16,22,0.25)); }
.door .txt { position: relative; padding: 2rem; }
.door h3 { font-size: 2.75rem; }
.live {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
  height: 2.75rem; padding: 0 0.9rem; border-radius: 8px;
  background: color-mix(in oklab, var(--ink) 70%, transparent);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center;
}

.tree { text-align: center; max-width: 48rem; margin: 0 auto; }
.node {
  display: inline-block; border: 1px solid var(--line); border-radius: 18px;
  padding: 1.25rem 1.75rem; background: var(--ink-soft);
}
.stem { width: 1px; height: 2.5rem; background: color-mix(in oklab, var(--paper) 28%, transparent); margin: 0 auto; }
.rooms { display: grid; gap: 1rem; margin-top: 0; }
@media (min-width: 640px) { .rooms { grid-template-columns: 1fr 1fr; } }
.room {
  text-align: left; border: 1px solid var(--line); border-radius: 18px;
  padding: 1.5rem; background: var(--ink-soft);
}
.room:hover { border-color: color-mix(in oklab, var(--paper) 28%, transparent); }

.principles { display: grid; gap: 1px; background: var(--line); }
@media (min-width: 640px) { .principles.three { grid-template-columns: repeat(3, 1fr); } .principles.two { grid-template-columns: 1fr 1fr; } }
.principles article { background: var(--ink-soft); padding: 2rem; }
.principles h3 { font-size: 1.5rem; margin-top: 0.75rem; }
.num { font-family: var(--display); font-size: 1.85rem; color: color-mix(in oklab, var(--sage) 80%, transparent); }

.cta-band { position: relative; overflow: hidden; }
.cta-band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.cta-band .dim { position: absolute; inset: 0; background: color-mix(in oklab, var(--ink) 70%, transparent); }
.cta-band .inner { position: relative; text-align: center; max-width: 44rem; margin: 0 auto; }

footer.site { border-top: 1px solid var(--line); }
footer.site .grid {
  display: grid; gap: 3rem; padding: 4rem 0;
}
@media (min-width: 1024px) { footer.site .grid { grid-template-columns: 5fr 7fr; } }
.cols { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 640px) { .cols { grid-template-columns: 1fr 1fr 1fr; } }
footer.site ul { list-style: none; padding: 0; margin: 0.75rem 0 0; }
footer.site li { margin: 0.4rem 0; }
footer.site .fine {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  border-top: 1px solid var(--line); padding: 1.25rem 0; font-size: 0.75rem; color: #6e7784;
}

form.note { display: grid; gap: 1.25rem; }
label span { display: block; margin-bottom: 0.5rem; }
input, textarea, select {
  width: 100%; background: var(--ink-soft); color: var(--paper); border: 0;
  border-radius: 8px; padding: 0.85rem 1rem;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--paper) 12%, transparent);
  font: 400 1rem/1.4 var(--sans);
}
textarea { min-height: 8rem; resize: vertical; }
.checks { display: grid; gap: 0.5rem; }
@media (min-width: 640px) { .checks { grid-template-columns: repeat(3, 1fr); } .two { grid-template-columns: 1fr 1fr; } }
.chip {
  height: 3rem; border: 0; border-radius: 8px; cursor: pointer;
  background: var(--ink-soft); color: var(--muted);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--paper) 12%, transparent);
  font: 500 0.85rem var(--sans);
}
.chip.on { background: var(--paper); color: var(--ink); box-shadow: none; }
.feats { list-style: none; padding: 0; }
.feats li { display: flex; gap: 0.7rem; margin: 0.5rem 0; }
.feats i { color: var(--sage); font-style: normal; }

main { padding-top: 0; }
