@charset "utf-8";

:root {
  --vellum: #f6f6f6;
  --paper: #ffffff;
  --ink: #000000;
  --gallery: #0a0a0a;
  --silver: #b3b3b3;
  --gold: #bc9c5c;
  --serif: "Bodoni 72", "Bodoni Moda", "Didot", "Playfair Display", Georgia, serif;
  --sans: Arial, Helvetica, Inter, system-ui, sans-serif;
  --max: 1280px;
  --side: clamp(24px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--vellum); }
body {
  margin: 0;
  background: var(--vellum);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--max));
  padding: 30px var(--side) 0;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 28px;
  align-items: start;
  pointer-events: none;
}

.topbar > * { pointer-events: auto; }

.seal {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  background: color-mix(in srgb, var(--vellum) 86%, transparent);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 38px);
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: .02em;
}

.nav a, .bag, .corner-cta, .contact-links a {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}

.nav a:hover, .bag:hover, .corner-cta:hover, .contact-links a:hover,
.index-card:hover h3 {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.bag {
  font-size: 13px;
  background: color-mix(in srgb, var(--vellum) 86%, transparent);
}

main {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  padding: 118px var(--side) 64px;
  display: grid;
  grid-template-columns: 44px minmax(360px, 1fr) minmax(330px, 470px);
  grid-template-rows: 1fr auto;
  gap: 42px;
  align-items: end;
  position: relative;
}

.hero-aside {
  align-self: stretch;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 14px 5px 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.edition {
  margin: 0 0 26px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(88px, 15vw, 196px);
  line-height: .75;
  font-weight: 400;
  letter-spacing: -.07em;
}

h1 span { display: block; }

.gold-rule {
  width: min(100%, 620px);
  height: 1px;
  background: var(--gold);
  margin: 34px 0 28px;
}

.hero-copy {
  max-width: 520px;
  margin: 0;
  font-size: clamp(17px, 1.5vw, 22px);
}

.hero-muse {
  margin: 0;
  width: 100%;
  min-height: min(72svh, 680px);
  background: var(--paper);
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  position: relative;
}

.hero-muse::before,
.hero-muse::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.hero-muse::before { top: 0; }
.hero-muse::after { bottom: 0; }

.hero-muse img {
  display: block;
  width: min(100%, 520px);
  max-height: min(72svh, 700px);
  object-fit: contain;
}

.corner-cta {
  grid-column: 2 / 3;
  justify-self: start;
  font-size: 14px;
}

.index-strip, .room-layout, .notes, .contact {
  padding: 72px var(--side);
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head.left { text-align: left; }

.section-head h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  font-style: italic;
}

.section-head span {
  display: block;
  height: 1px;
  background: var(--gold);
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.index-card {
  min-height: 315px;
  padding: 38px;
  display: grid;
  align-content: space-between;
}

.index-card + .index-card { border-left: 1px solid var(--ink); }
.index-card span, .selection-row article p, .note-list span {
  font-family: var(--sans);
  font-size: 12px;
}
.index-card h3 {
  margin: 44px 0 18px;
  font-size: 30px;
  line-height: 1.02;
  font-weight: 400;
}
.index-card p { margin: 0; max-width: 260px; }

.selection-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
}

.selection-row article {
  padding: 44px 36px 54px;
  min-height: 290px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.selection-row article + article { border-left: 1px solid var(--ink); }
.selection-row h3 {
  margin: 70px 0 18px;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 400;
}
.selection-row small { font-size: 16px; }

.gallery-band {
  min-height: 560px;
  margin: 36px 0 0;
  padding: 76px var(--side);
  background: var(--gallery);
  color: var(--paper);
  display: grid;
  grid-template-columns: minmax(300px, .9fr) 1fr;
  gap: 70px;
  align-items: center;
}

.cover-stack {
  min-height: 380px;
  position: relative;
}
.cover {
  position: absolute;
  width: 220px;
  aspect-ratio: 3/4;
  border: 1px solid var(--paper);
  display: grid;
  place-items: center;
  font-size: 92px;
  background: var(--gallery);
}
.cover-a { left: 18%; top: 0; }
.cover-b { left: 38%; top: 70px; color: var(--gold); border-color: var(--gold); }
.plate-kicker, .gallery-copy p {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  margin: 0;
}

.gallery-copy h2 {
  margin: 26px 0 26px;
  font-size: clamp(64px, 8vw, 118px);
  line-height: .78;
  font-weight: 400;
  letter-spacing: -.045em;
}
.gallery-copy span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  margin-bottom: 26px;
}
.gallery-copy small {
  display: block;
  max-width: 440px;
  font-size: 18px;
}

.notes {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 62px;
}
.notes h2, .contact h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.04em;
}
.notes-title p {
  margin: 30px 0 0;
  font-style: italic;
  font-size: 20px;
}
.note-list {
  border-top: 1px solid var(--ink);
}
.note-list p {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 18px;
}

.contact {
  min-height: 520px;
  display: grid;
  align-content: center;
  text-align: center;
  border-top: 1px solid var(--gold);
}
.contact-links {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
}

.pager {
  position: fixed;
  right: 22px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  z-index: 30;
}
.pager::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 104px;
  height: 1px;
  background: var(--ink);
}

@media (max-width: 880px) {
  .topbar { position: static; transform: none; padding: 24px; width: 100%; grid-template-columns: 42px 1fr; }
  .nav { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; }
  .bag { justify-self: end; }
  .hero { padding: 28px 24px 54px; grid-template-columns: 1fr; min-height: auto; }
  .hero-aside { display: none; }
  .black-plate { min-height: 360px; }
  .corner-cta { grid-column: auto; }
  .index-strip, .room-layout, .notes, .contact { padding: 54px 24px; }
  .index-grid, .selection-row, .gallery-band, .notes { grid-template-columns: 1fr; }
  .index-card + .index-card, .selection-row article + article { border-left: 0; border-top: 1px solid var(--ink); }
  .selection-row { border-left: 0; border-right: 0; }
  .gallery-band { gap: 30px; padding: 54px 24px; }
  .cover-a { left: 5%; }
  .cover-b { left: 32%; }
  .pager { display: none; }
}
