:root {
  --black: #0b0a0b;
  --ink: #111012;
  --wine: #3a181f;
  --rose: #b78b91;
  --ivory: #eee9df;
  --gray: #a49da0;
  --line: rgba(238, 233, 223, 0.15);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--black);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.2;
  background: radial-gradient(circle at 88% 16%, rgba(86, 31, 42, 0.38), transparent 28%),
    radial-gradient(circle at 7% 64%, rgba(68, 49, 49, 0.2), transparent 24%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 0.96; }
h1 { margin-bottom: 28px; font-size: clamp(68px, 10vw, 134px); letter-spacing: -0.055em; }
h2 { margin-bottom: 22px; font-size: clamp(48px, 6vw, 82px); letter-spacing: -0.045em; }
h3 { margin-bottom: 18px; font-size: 54px; letter-spacing: -0.03em; }
em { color: var(--rose); font-weight: 400; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.eyebrow, .small-label {
  margin-bottom: 20px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.small-label { color: var(--gray); }
.section { padding: 112px max(7vw, 28px); border-top: 1px solid var(--line); }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 20px max(5vw, 24px);
  border-bottom: 1px solid var(--line);
}
.wordmark { font-family: var(--serif); font-size: 22px; letter-spacing: 0.04em; }
.site-nav { display: flex; gap: 34px; color: var(--gray); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; }
.site-nav a { padding: 4px 0; transition: color 180ms ease; }
.site-nav a:hover, .site-nav a.active { color: var(--ivory); }
.menu-toggle { display: none; }
.hero { display: grid; min-height: 760px; grid-template-columns: 1.2fr 0.8fr; }
.hero-copy { align-self: center; max-width: 790px; padding: 74px 4vw 80px 7vw; }
.tagline { max-width: 610px; margin-bottom: 22px; color: var(--ivory); font-family: var(--serif); font-size: 30px; font-style: italic; line-height: 1.16; }
.intro, .page-heading > p:last-child, .about-copy p { max-width: 570px; color: var(--gray); }
.button-row, .feature-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 36px; }
.button { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; transition: 180ms ease; }
.button-primary { padding: 14px 22px; border: 1px solid var(--rose); background: rgba(183, 139, 145, 0.08); }
.button-primary:hover { color: var(--black); background: var(--rose); }
.button-text { padding: 10px 0; color: var(--gray); }
.button-text:hover { color: var(--ivory); }
.button-text span { margin-left: 5px; color: var(--rose); }
.hero-art { position: relative; min-height: 630px; overflow: hidden; }
.hero-art::before, .about-art::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, var(--black), transparent 26%), linear-gradient(0deg, var(--black), transparent 25%);
}
.hero-art img, .about-art img { width: 100%; height: 100%; object-fit: cover; opacity: 0.72; filter: saturate(0.68); }
.hero-glow { position: absolute; right: 0; bottom: 0; z-index: 2; width: 60%; height: 35%; background: rgba(83, 32, 39, 0.24); filter: blur(55px); }
.margin-note { position: absolute; right: 28px; bottom: 28px; z-index: 3; color: var(--rose); font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.1; text-align: right; }
.featured { display: grid; gap: 6vw; grid-template-columns: 1fr 1.05fr; }
.feature-card { display: flex; flex-direction: column; justify-content: space-between; padding: 38px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(58, 24, 31, 0.48), rgba(18, 15, 17, 0.3)); }
.feature-card p, .coming-grid p, .contact-note p { color: var(--gray); }
.coming-grid { display: grid; gap: 8vw; grid-template-columns: 1.1fr 0.8fr; align-items: end; }
.coming-grid div { max-width: 490px; padding-bottom: 12px; }
.elsewhere h2 { margin-bottom: 30px; }
.link-list { border-top: 1px solid var(--line); }
.link-list a { display: flex; justify-content: space-between; padding: 20px 2px; border-bottom: 1px solid var(--line); color: var(--ivory); transition: 180ms ease; }
.link-list a span:last-child { color: var(--gray); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; }
.link-list a:hover { padding-left: 12px; color: var(--rose); }
.site-footer { display: flex; justify-content: space-between; padding: 24px max(5vw, 24px); border-top: 1px solid var(--line); color: var(--gray); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer p { margin: 0; }
.page-heading { max-width: 1050px; padding: 124px max(7vw, 28px) 88px; }
.page-heading h1 { font-size: clamp(74px, 11vw, 146px); }
.book-list { padding-top: 0; border-top: 0; }
.collection-heading { padding: 18px 0 42px; }
.collection-heading h2 { margin-bottom: 14px; }
.collection-heading > p:last-child:not(.eyebrow) { max-width: 560px; color: var(--gray); }
.book-card { display: grid; gap: 8vw; grid-template-columns: minmax(240px, 360px) minmax(0, 580px); align-items: center; padding: 76px 0; border-top: 1px solid var(--line); }
.book-card:nth-child(even) { margin-left: 8vw; }
.book-cover { position: relative; overflow: hidden; aspect-ratio: 2 / 3; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34); }
.book-cover::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.38)); }
.book-cover img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.65); }
.cover-copy { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 30px 25px; text-shadow: 0 2px 9px #000; }
.cover-copy span { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
.cover-copy strong { font-family: var(--serif); font-size: clamp(35px, 4vw, 51px); font-weight: 500; line-height: 0.85; }
.book-copy h2 { font-size: clamp(50px, 6vw, 78px); }
.book-copy > p:not(.eyebrow) { max-width: 510px; margin-bottom: 30px; color: var(--gray); }
.book-milestone { margin-top: -12px; color: var(--rose) !important; font-family: var(--serif); font-size: 19px; font-style: italic; }
.status { display: inline-block; padding: 12px 18px; border: 1px solid var(--line); color: var(--rose); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }
.works-in-progress { padding-top: 92px; background: linear-gradient(135deg, rgba(58, 24, 31, 0.2), transparent 48%); }
.wip-grid { display: grid; gap: 1px; grid-template-columns: repeat(3, 1fr); margin-top: 12px; background: var(--line); }
.wip-card { display: flex; min-height: 430px; flex-direction: column; align-items: flex-start; padding: 32px; background: var(--black); }
.wip-card h3 { font-size: clamp(38px, 3.5vw, 52px); }
.wip-card > p:not(.eyebrow) { margin-bottom: 28px; color: var(--gray); }
.wip-card .status { margin-top: auto; }
.about-layout { display: grid; min-height: 720px; grid-template-columns: minmax(340px, 0.82fr) 1.18fr; }
.about-art { position: relative; min-height: 680px; overflow: hidden; }
.about-copy { align-self: center; max-width: 790px; padding: 80px 7vw; }
.about-copy h1 { font-size: clamp(64px, 8vw, 112px); }
.about-copy .lead { color: var(--ivory); font-family: var(--serif); font-size: 28px; line-height: 1.3; }
.quote { text-align: center; }
.quote p { margin: 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 70px); line-height: 1.04; }
.links-heading { padding-bottom: 52px; }
.contact-links { padding-top: 0; border-top: 0; }
.contact-links a { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 28px 0; border-top: 1px solid var(--line); font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); transition: color 180ms ease; }
.contact-links a:last-child { border-bottom: 1px solid var(--line); }
.contact-links small { margin-right: 22px; color: var(--rose); font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em; }
.contact-links strong { color: var(--gray); font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-links a:hover { color: var(--rose); }
.contact-note { padding-top: 70px; padding-bottom: 84px; background: linear-gradient(135deg, rgba(58, 24, 31, 0.38), transparent 55%); }
.contact-note h2 { margin-bottom: 12px; }
.contact-note .button { margin-top: 14px; }
.not-found { max-width: 1040px; padding: 18vh max(7vw, 28px) 80px; }
.not-found h1 { font-size: clamp(72px, 11vw, 146px); }
.not-found > p:not(.eyebrow) { max-width: 510px; margin-bottom: 30px; color: var(--gray); }
@media (max-width: 760px) {
  h1 { font-size: 74px; }
  .section { padding: 78px 24px; }
  .site-header { position: relative; min-height: 72px; }
  .wordmark { font-size: 20px; }
  .menu-toggle { display: grid; gap: 4px; width: 32px; padding: 5px; border: 0; background: none; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; background: var(--ivory); }
  .site-nav { position: absolute; top: 72px; right: 0; left: 0; z-index: 6; display: none; padding: 20px 24px 24px; border-bottom: 1px solid var(--line); background: rgba(11, 10, 11, 0.97); }
  .site-nav.open { display: grid; gap: 16px; }
  .hero { display: block; }
  .hero-copy { padding: 88px 24px 62px; }
  .tagline { font-size: 25px; }
  .hero-art { min-height: 440px; }
  .featured, .coming-grid { display: block; }
  .feature-card { margin-top: 38px; padding: 26px; }
  .coming-grid div { padding-top: 10px; }
  .site-footer { display: block; padding: 22px 24px; }
  .site-footer p + p { margin-top: 5px; }
  .page-heading { padding: 88px 24px 62px; }
  .page-heading h1 { font-size: 78px; }
  .book-list { padding-top: 0; }
  .collection-heading { padding-bottom: 28px; }
  .book-card { display: block; padding: 58px 0; }
  .book-card:nth-child(even) { margin-left: 0; }
  .book-cover { max-width: 310px; margin-bottom: 34px; }
  .about-layout { display: block; }
  .about-art { min-height: 420px; }
  .about-copy { padding: 72px 24px; }
  .about-copy h1 { font-size: 68px; }
  .about-copy .lead { font-size: 24px; }
  .quote { padding-right: 20px; padding-left: 20px; }
  .contact-links a { display: block; padding: 22px 0; }
  .contact-links strong { display: block; margin-top: 2px; margin-left: 37px; }
  .works-in-progress { padding-top: 68px; }
  .wip-grid { display: block; background: transparent; }
  .wip-card { min-height: 0; margin-top: 1px; padding: 28px 0; border-top: 1px solid var(--line); background: transparent; }
  .wip-card .status { margin-top: 0; }
}
