@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --ink: #0a0a0a;
  --paper: #f1efe9;
  --soft: #d8d3c9;
  --accent: #b4432f;
  --line: rgba(10,10,10,.16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { width: 100%; display: block; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  transition: opacity .8s ease, visibility .8s ease;
}
.intro.hide { opacity: 0; visibility: hidden; }
.intro-word {
  font-size: clamp(48px, 11vw, 170px);
  letter-spacing: -.07em;
  animation: introPulse 1.4s ease both;
}
@keyframes introPulse {
  0% { opacity: 0; transform: scale(.94); filter: blur(12px); }
  45% { opacity: 1; transform: scale(1); filter: blur(0); }
  100% { opacity: 1; transform: scale(1); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0; left: 0; right: 0;
  height: 74px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  mix-blend-mode: difference;
  color: white;
}
.brand {
  font-size: 20px;
  letter-spacing: -.04em;
  font-weight: 500;
}
.nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}
.nav a { position: relative; }
.nav a:after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav a:hover:after { transform: scaleX(1); transform-origin: left; }
.menu-button {
  display: none;
  justify-self: end;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 28px 34px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.hero-kicker {
  margin-bottom: 4vh;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 1100px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(74px, 12.8vw, 190px);
  line-height: .79;
  letter-spacing: -.055em;
}
.hero-bottom {
  position: absolute;
  z-index: 2;
  left: 28px; right: 28px; bottom: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.hero-bottom p {
  width: min(430px, 45vw);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(241,239,233,.68);
}
.arrow-link {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}
.arrow-link span { font-size: 22px; transition: transform .25s ease; }
.arrow-link:hover span { transform: translate(5px,5px); }

.hero-orbit {
  position: absolute;
  width: min(48vw, 690px);
  aspect-ratio: 1;
  right: -7vw;
  top: 7vh;
  opacity: .72;
}
.orbit-ring {
  position: absolute;
  inset: 2%;
  border: 1px solid rgba(241,239,233,.24);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}
.orbit-ring:before,
.orbit-ring:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--paper);
}
.orbit-ring:before { width: 9px; height: 9px; left: 14%; top: 14%; }
.orbit-ring:after { width: 4px; height: 4px; right: 7%; bottom: 25%; }
.orbit-object {
  position: absolute;
  width: 43%;
  height: 57%;
  left: 31%; top: 22%;
  background:
    radial-gradient(circle at 38% 27%, rgba(255,255,255,.18), transparent 14%),
    linear-gradient(145deg, #3c3c3c 0%, #111 43%, #262626 100%);
  border-radius: 47% 53% 31% 69% / 39% 35% 65% 61%;
  filter: drop-shadow(0 50px 45px rgba(0,0,0,.6));
  transform: rotate(19deg);
}
.orbit-object:after {
  content: "";
  position: absolute;
  width: 49%; height: 43%;
  left: 27%; top: 27%;
  border-radius: 50%;
  background: var(--ink);
  transform: rotate(-12deg);
}
@keyframes spin { to { transform: rotate(360deg); } }

.statement {
  padding: 120px 28px 160px;
  display: grid;
  grid-template-columns: 1fr 7fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.section-number {
  padding-top: 12px;
  font-size: 11px;
  letter-spacing: .12em;
}
.statement-large {
  max-width: 1200px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 7.5vw, 106px);
  line-height: .98;
  letter-spacing: -.04em;
}
.statement-large em { color: var(--accent); font-weight: 400; }
.statement-small {
  grid-column: 2;
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 330px));
  justify-content: end;
  gap: 70px;
}
.statement-small p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.objects-section { padding: 110px 28px 150px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
.eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.section-heading h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 10vw, 138px);
  line-height: .8;
  letter-spacing: -.055em;
}
.collection-count { font-size: 12px; }

.objects-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 70px 20px;
}
.object-card { grid-column: span 4; }
.object-card.object-large { grid-column: span 7; }
.object-card.object-wide { grid-column: span 8; margin-left: 10%; }

.object-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.object-image {
  position: relative;
  overflow: hidden;
  background: #ded9cf;
}
.object-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.2,.7,.1,1);
}
.object-large .object-image img { aspect-ratio: 1.23 / 1; }
.object-wide .object-image img { aspect-ratio: 1.45 / 1; }
.object-open:hover img { transform: scale(1.025); }
.status {
  position: absolute;
  top: 12px; right: 12px;
  padding: 8px 10px;
  background: rgba(241,239,233,.93);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.status.sold { background: rgba(10,10,10,.9); color: white; }
.status.reserved { background: var(--accent); color: white; }
.status.upcoming { background: transparent; color: white; border: 1px solid rgba(255,255,255,.45); }

.object-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
  margin-top: 12px;
}
.object-id {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.object-meta h3 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
}
.price {
  align-self: end;
  font-size: 11px;
  white-space: nowrap;
}

.principle {
  min-height: 90vh;
  padding: 50px 28px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 5fr 2fr;
  align-items: center;
  background: var(--accent);
  color: var(--paper);
  overflow: hidden;
}
.principle-word {
  font-family: var(--serif);
  font-size: clamp(180px, 35vw, 560px);
  letter-spacing: -.09em;
  line-height: .7;
  margin-left: -2vw;
}
.principle-copy {
  align-self: end;
  padding-bottom: 26px;
  font-size: 15px;
  line-height: 1.75;
}

.newsletter {
  padding: 150px 28px;
  background: #d7d0c2;
}
.newsletter h2 {
  max-width: 950px;
  font-size: clamp(60px, 9.7vw, 138px);
  line-height: .88;
}
.notify-form {
  max-width: 900px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--ink);
}
.notify-form input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 18px 0;
  font-size: clamp(19px, 2.2vw, 32px);
}
.notify-form input::placeholder { color: rgba(10,10,10,.46); }
.notify-form button {
  border: 0;
  background: transparent;
  padding: 18px 0 18px 28px;
  cursor: pointer;
}
.notify-form button span { margin-left: 15px; }
.form-note, .form-message {
  margin: 12px 0 0;
  font-size: 11px;
  opacity: .65;
}
.form-message { opacity: 1; min-height: 18px; }

footer {
  padding: 40px 28px 24px;
  background: var(--ink);
  color: var(--paper);
}
.footer-brand {
  font-family: var(--serif);
  font-size: clamp(110px, 24vw, 360px);
  line-height: .75;
  letter-spacing: -.07em;
  margin-left: -.02em;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 60px;
  padding-top: 18px;
  border-top: 1px solid rgba(241,239,233,.25);
  font-size: 11px;
}
.footer-line {
  margin-top: 60px;
  text-align: right;
  color: rgba(241,239,233,.48);
  font-size: 12px;
}

.object-dialog {
  width: min(1180px, calc(100vw - 30px));
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
}
.object-dialog::backdrop {
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
}
.dialog-close {
  position: absolute;
  z-index: 2;
  top: 15px; right: 18px;
  border: 0;
  background: rgba(241,239,233,.92);
  padding: 9px 11px;
  cursor: pointer;
}
.dialog-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  min-height: 75vh;
}
.dialog-image-wrap { background: #d8d3c9; }
.dialog-image-wrap img { height: 100%; object-fit: cover; }
.dialog-content { padding: 70px 48px 45px; }
.dialog-topline {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.dialog-content h2 {
  margin: 50px 0 20px;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 76px);
  line-height: .91;
  font-weight: 400;
  letter-spacing: -.04em;
}
.dialog-lead { max-width: 430px; font-size: 15px; line-height: 1.65; }
.object-details { margin: 48px 0 36px; }
.object-details div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.object-details div:last-child { border-bottom: 1px solid var(--line); }
.object-details dt { font-size: 11px; opacity: .55; }
.object-details dd { margin: 0; font-size: 12px; }
.dialog-price {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 30px;
}
.inquire-button {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.inquire-button:hover { background: transparent; color: var(--ink); }
.dialog-footnote { font-size: 10px; opacity: .52; }

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 18px; }
  .nav {
    display: none;
    position: fixed;
    left: 14px; right: 14px; top: 70px;
    padding: 28px;
    flex-direction: column;
    background: var(--paper);
    color: var(--ink);
    mix-blend-mode: normal;
  }
  .nav.open { display: flex; }
  .menu-button { display: block; }
  .hero { padding: 110px 18px 24px; }
  .hero h1 { font-size: clamp(70px, 21vw, 120px); }
  .hero-bottom { left: 18px; right: 18px; bottom: 24px; display: block; }
  .hero-bottom p { width: 80%; margin-bottom: 25px; }
  .hero-orbit { width: 85vw; right: -35vw; top: 25vh; opacity: .58; }

  .statement { padding: 80px 18px 110px; grid-template-columns: 1fr; }
  .statement-large, .statement-small { grid-column: 1; }
  .statement-small { grid-template-columns: 1fr; gap: 24px; margin-top: 50px; }

  .objects-section { padding: 80px 18px 100px; }
  .section-heading { align-items: start; }
  .collection-count { margin-top: 12px; }
  .objects-grid { display: block; }
  .object-card,
  .object-card.object-large,
  .object-card.object-wide {
    width: 100%;
    margin: 0 0 70px;
  }
  .object-image img,
  .object-large .object-image img,
  .object-wide .object-image img { aspect-ratio: 4/5; }

  .principle {
    min-height: 72vh;
    padding: 30px 18px;
    grid-template-columns: 1fr;
    align-content: space-between;
  }
  .principle-word { font-size: 52vw; }
  .principle-copy { padding: 0; }

  .newsletter { padding: 95px 18px; }
  .notify-form { grid-template-columns: 1fr; margin-top: 55px; }
  .notify-form button { padding-left: 0; text-align: left; }

  footer { padding: 36px 18px 20px; }
  .footer-brand { font-size: 28vw; }
  .footer-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-image-wrap img { max-height: 55vh; }
  .dialog-content { padding: 42px 22px 32px; }
  .object-details div { grid-template-columns: 90px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .intro { display: none; }
}
