:root {
  color-scheme: light;
  --ink: #11110f;
  --muted: #66645c;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #dedbd0;
  --accent: #1f8a70;
  --accent-strong: #0f5d4a;
  --warm: #ff6b4a;
  --shadow: 0 24px 70px rgba(30, 28, 22, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.82rem;
}

nav {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  min-height: calc(100vh - 78px);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(40px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 54px);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.hero p,
.community-copy p,
.book-card p,
.release-strip p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: transparent;
}

.hero-art {
  align-self: stretch;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.hero-art img {
  width: min(100%, 780px);
  max-height: 84vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(17, 17, 15, 0.12));
}

.release-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.release-strip article {
  min-height: 170px;
  padding: clamp(22px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.release-strip article:last-child {
  border-right: 0;
}

.release-strip span {
  display: block;
  margin-bottom: 28px;
  color: var(--warm);
  font-weight: 900;
}

.release-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 76px);
}

.book-list {
  display: grid;
  gap: 18px;
}

.book-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.book-card img {
  aspect-ratio: 1;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  object-fit: cover;
}

.gallery-section {
  background: var(--ink);
  color: var(--paper);
}

.gallery-section .eyebrow {
  color: #75d7bd;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

figure {
  margin: 0;
  background: var(--panel);
  border-radius: 8px;
  overflow: hidden;
}

figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: white;
}

figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-weight: 850;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.board-shell {
  display: grid;
  gap: 16px;
}

.share-form,
.posts article {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.share-form {
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(31, 138, 112, 0.16);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 800;
}

.posts {
  display: grid;
  gap: 12px;
}

.posts article p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .community-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 420px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .release-strip,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .release-strip,
  .gallery-grid,
  .book-card {
    grid-template-columns: 1fr;
  }

  .release-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .release-strip article:last-child {
    border-bottom: 0;
  }

  .book-card img {
    max-height: 280px;
    object-fit: contain;
  }
}

