:root {
  --space: #14192a;
  --space-soft: #202943;
  --greenhouse: #24483f;
  --greenhouse-bright: #77a890;
  --leaf: #b8d7a7;
  --paper: #fff7e8;
  --paper-deep: #f2dfbf;
  --lamp: #ffc66d;
  --coral: #ff8d78;
  --ink: #2f2a27;
  --muted: #765f55;
  --white: #fffdf7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 198, 109, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(119, 168, 144, 0.2), transparent 28rem),
    linear-gradient(180deg, var(--space) 0%, #182036 320px, var(--paper) 321px);
  font-family: "Karla", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 253, 247, 0.72) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 198, 109, 0.34) 0 1px, transparent 1.5px);
  background-size: 86px 86px, 132px 132px;
  background-position: 12px 18px, 54px 44px;
  opacity: 0.38;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, .brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 25, 42, 0.86);
  border-bottom: 1px solid rgba(255, 253, 247, 0.12);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 22px;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 253, 247, 0.7);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
  background: radial-gradient(circle at 36% 34%, var(--lamp) 0 18%, var(--coral) 19% 37%, transparent 38%);
  box-shadow: inset 0 0 0 6px rgba(20, 25, 42, 0.38);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 8px;
  border: 1px solid rgba(255, 253, 247, 0.66);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  left: 6px;
  bottom: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 247, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(255, 253, 247, 0.12);
  color: var(--white);
}

.page-hero {
  padding: 76px 0 52px;
  color: var(--white);
}

.eyebrow {
  color: var(--lamp);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 860px;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.96;
}

.page-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

main { padding: 34px 0 72px; }
.section { margin-top: 42px; }
.section:first-child { margin-top: 0; }

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  color: var(--greenhouse);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.section-head p {
  max-width: 720px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
}

.panel {
  border: 1px solid rgba(36, 72, 63, 0.16);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 18px 40px rgba(36, 72, 63, 0.1);
  overflow: hidden;
}

.panel.pad { padding: 26px; }

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

.book-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px;
}

.book-row + .book-row {
  border-top: 1px solid rgba(36, 72, 63, 0.12);
}

.book-cover {
  overflow: hidden;
  border-radius: 18px;
  background: var(--space-soft);
  box-shadow: 0 16px 30px rgba(20, 25, 42, 0.18);
}

.book-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.placeholder-cover {
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 22px;
  color: rgba(255, 253, 247, 0.78);
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 198, 109, 0.36), transparent 28%),
    linear-gradient(160deg, var(--space-soft), var(--greenhouse));
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
}

.meta {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.book-row h3,
.card h3 {
  margin-top: 6px;
  color: var(--greenhouse);
  font-size: 28px;
  line-height: 1.05;
}

.book-row p,
.card p,
.panel p,
.press-list li {
  color: var(--muted);
  font-size: 16px;
}

.book-row p { margin-top: 12px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chips span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--greenhouse);
  background: rgba(184, 215, 167, 0.34);
  font-size: 12px;
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: normal;
}

.button.primary {
  color: var(--white);
  background: var(--greenhouse);
}

.button.ghost {
  color: var(--greenhouse);
  border-color: rgba(36, 72, 63, 0.24);
  background: rgba(36, 72, 63, 0.06);
}

.card {
  padding: 24px;
  border: 1px solid rgba(36, 72, 63, 0.14);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.76);
}

.card p { margin-top: 10px; }

.feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.quote-panel {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 198, 109, 0.2), transparent 22rem),
    linear-gradient(135deg, var(--greenhouse), var(--space-soft));
}

.quote-panel p,
.quote-panel li {
  color: rgba(255, 253, 247, 0.84);
}

.quote-panel h2,
.quote-panel h3 {
  color: var(--white);
}

.press-list {
  margin-top: 14px;
  padding-left: 20px;
}

.press-list li + li {
  margin-top: 8px;
}

footer {
  padding: 38px 0 52px;
  color: rgba(255, 253, 247, 0.72);
  background: var(--space);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

footer p {
  max-width: 560px;
  font-size: 13px;
}

footer a {
  color: var(--lamp);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 198, 109, 0.4);
  text-underline-offset: 3px;
}

@media (max-width: 820px) {
  .grid,
  .feature,
  .book-row {
    grid-template-columns: 1fr;
  }

  .book-cover {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav-inner {
    min-height: 64px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }
  .brand { font-size: 20px; }
  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 13px;
  }
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 {
    font-size: clamp(36px, 13vw, 56px);
    line-height: 1;
  }
  .page-hero p { font-size: 17px; }
  main { padding: 26px 0 58px; }
  .section { margin-top: 34px; }
  .panel.pad,
  .book-row,
  .card { padding: 18px; }
  .book-row { gap: 18px; }
  .book-cover { max-width: 240px; }
  .book-row h3,
  .card h3 { font-size: 24px; }
  .actions .button {
    flex: 1 1 140px;
    min-width: 0;
  }
  .chips span { font-size: 11px; }
  .footer-inner { display: block; }
  footer p { margin-top: 14px; }
}
