:root {
  --bg: #0b0a0d;
  --bg-alt: #131019;
  --surface: #1a1620;
  --surface-2: #221d29;
  --text: #ece6da;
  --text-dim: #a79e93;
  --text-faint: #756c63;
  --accent: #9a2b2b;
  --accent-bright: #c94141;
  --border: rgba(236, 230, 218, 0.1);
  --border-bright: rgba(236, 230, 218, 0.22);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1240px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75em 1.25em;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; color: var(--text-dim); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-bright);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border: 1px solid var(--border-bright);
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn--solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn--solid:hover { background: var(--accent-bright); border-color: var(--accent-bright); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__mark { display: block; }
.site-header__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.05;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.site-nav {
  display: flex;
  gap: 1.9rem;
}
.site-nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .site-nav.is-open { max-height: 420px; }
  .site-nav a {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(154, 43, 43, 0.16), transparent 60%),
    linear-gradient(180deg, #0b0a0d 0%, #131019 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero__eyebrow {
  position: relative;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero__title {
  position: relative;
  font-size: clamp(3rem, 10vw, 6.5rem);
  margin: 0;
  color: var(--text);
}
.hero__rule {
  position: relative;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1.6rem auto;
}
.hero__sub {
  position: relative;
  max-width: 40em;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 1.05rem;
}

.featured-strip {
  position: relative;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 200px));
  gap: 1.75rem;
  justify-content: center;
}
.featured-strip__item { text-align: left; }
.featured-strip__cover {
  border-radius: 3px;
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.7);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.featured-strip__item:hover .featured-strip__cover {
  transform: translateY(-6px);
  box-shadow: 0 35px 60px -15px rgba(0,0,0,0.85);
}
.featured-strip__label {
  margin-top: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.featured-strip__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section__head {
  text-align: center;
  max-width: 46em;
  margin: 0 auto 3rem;
}
.section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); }

/* Book grid */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 2.5rem 1.75rem;
}
.book-card { display: block; }
.book-card__cover-wrap {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.65);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book-card:hover .book-card__cover-wrap {
  transform: translateY(-6px);
  box-shadow: 0 30px 55px -12px rgba(0,0,0,0.8);
}
.book-card__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}
.book-card__year {
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

/* Book detail */
.book-detail {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 760px) {
  .book-detail { grid-template-columns: 1fr; }
}
.book-detail__cover {
  border-radius: 4px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.7);
}
.book-detail__note {
  display: inline-block;
  margin-bottom: 1rem;
  margin-right: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  border: 1px solid var(--accent);
  padding: 0.35em 0.8em;
  border-radius: 2px;
}
.book-detail__blurb { font-size: 1.05rem; color: var(--text); }
.book-detail__quotes {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  border-top: 1px solid var(--border);
}
.book-detail__quotes li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
}
.book-detail__quotes cite {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.editions {
  margin-top: 2.5rem;
}
.editions__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.9rem;
}
.editions__strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.editions__strip img {
  width: 74px;
  border-radius: 2px;
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.6);
  transition: transform 0.25s ease;
}
.editions__strip a:hover img { transform: translateY(-4px); }
.editions__caption {
  font-size: 0.65rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 0.35rem;
  max-width: 74px;
}

/* Lightbox */
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 5, 7, 0.92);
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox__figure {
  margin: 0;
  max-width: min(90vw, 700px);
  text-align: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 30px 70px -15px rgba(0,0,0,0.8);
}
.lightbox__caption {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid var(--border-bright);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { background: var(--surface); }

/* Story list */
.story-list-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.story-list {
  columns: 2;
  column-gap: 3rem;
  padding-left: 1.2rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 2;
}
@media (max-width: 640px) { .story-list { columns: 1; } }

/* Audiobook */
.audiobook {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
}
@media (max-width: 640px) {
  .audiobook { grid-template-columns: 1fr; }
}
.audiobook__cover { border-radius: 4px; box-shadow: 0 20px 45px -12px rgba(0,0,0,0.7); }
.audiobook__links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Press */
.quote-wall {
  columns: 2;
  column-gap: 2.5rem;
}
@media (max-width: 700px) { .quote-wall { columns: 1; } }
.quote-wall__item {
  break-inside: avoid;
  margin-bottom: 2.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
}
.quote-wall__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text);
  margin: 0 0 0.6rem;
}
.quote-wall__source {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Bio */
.bio-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 760px) { .bio-layout { grid-template-columns: 1fr; } }
.bio-photo {
  border-radius: 4px;
  filter: grayscale(1) contrast(1.05);
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.7);
}
.bio-copy p { color: var(--text); font-size: 1.05rem; }

.awards {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.awards__group { margin-bottom: 1.5rem; }
.awards__name {
  font-size: 1rem;
  color: var(--accent-bright);
  margin-bottom: 0.6rem;
}
.awards__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.awards__list li {
  color: var(--text);
  font-size: 0.95rem;
  padding: 0.35rem 0;
}

/* News */
.news-list { max-width: 46em; }
.news-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.news-item__date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 0.6rem;
  display: block;
}
.news-item p { color: var(--text); }
.video-embed {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  margin-top: 1.2rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.6);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Poetry */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}
.collection-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}
.collection-card__title {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.collection-card__count {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.poetry-list { list-style: none; margin: 0; padding: 0; }
.poetry-list li + li { margin-top: 0.15rem; }
.poetry-list__item {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}
.poetry-list li:last-child .poetry-list__item { border-bottom: 0; }
.poetry-list__item:hover { color: var(--accent-bright); }
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  border: 1px dashed var(--border-bright);
  border-radius: 6px;
  color: var(--text-dim);
}
.poem-body {
  font-family: var(--font-display);
  font-size: 1.2rem;
  white-space: pre-line;
  max-width: 36em;
  color: var(--text);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
@media (max-width: 760px) { .contact-layout { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.3rem; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 3px;
  padding: 0.85em 1em;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background: var(--bg-alt);
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-footer__brand {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.site-footer__nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.site-footer__nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.site-footer__nav a:hover { color: var(--text); }
.site-footer__social { display: flex; gap: 0.9rem; }
.site-footer__social a { color: var(--text-faint); }
.site-footer__social a:hover { color: var(--text); }
.site-footer__copy {
  width: 100%;
  font-size: 0.75rem;
  color: var(--text-faint);
  margin: 0;
  order: 10;
}
