:root {
  --parchment: #f4ead5;
  --parchment-dark: #e8d9b4;
  --ink: #2a2520;
  --accent: #7a1f1f;
  --accent-light: #a23a3a;
  --grad-start: #f08a3a;
  --grad-end: #5b2a6b;
  --shadow: 0 6px 18px rgba(60, 40, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--parchment);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(160, 110, 60, 0.08), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(160, 110, 60, 0.08), transparent 50%);
  color: var(--ink);
  font-family: 'Patrick Hand', 'Comic Sans MS', cursive;
  font-size: 20px;
  line-height: 1.6;
  min-height: 100vh;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 32px;
}

.hero__cover {
  display: block;
  max-width: 320px;
  width: 80%;
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 12px 24px rgba(60, 30, 20, 0.35));
}

.hero__title {
  font-family: 'Sacramento', cursive;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 5rem);
  color: var(--accent);
  margin: 8px 0 0;
  line-height: 1;
}

.hero__byline {
  font-family: 'Sacramento', cursive;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  color: var(--ink);
  margin: 8px 0 0;
}

.hero__byline em {
  font-style: normal;
  display: block;
}

/* CTA */
.cta-wrap {
  text-align: center;
  margin: 32px 0 48px;
}

.cta {
  display: inline-block;
  padding: 18px 48px;
  font-family: 'Patrick Hand', cursive;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, var(--grad-start) 0%, var(--accent-light) 50%, var(--grad-end) 100%);
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover,
.cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(60, 40, 20, 0.28);
}

.cta:active {
  transform: translateY(0);
}

/* Sections */
.section {
  margin: 48px 0;
}

.section__title {
  font-family: 'Sacramento', cursive;
  font-size: clamp(2rem, 6vw, 2.75rem);
  color: var(--accent);
  margin: 0 0 16px;
  text-align: center;
}

.section__body {
  font-size: 1.1rem;
  margin: 0;
}

/* Book section with map accent */
.about-book {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.about-book__map {
  display: block;
  max-width: 220px;
  width: 60%;
  height: auto;
  margin: 0 auto;
  transform: rotate(-3deg);
  filter: drop-shadow(0 8px 16px rgba(60, 40, 20, 0.25));
}

/* Wanted accent */
.wanted {
  text-align: center;
  margin: 32px 0;
}

.wanted__img {
  display: inline-block;
  max-width: 320px;
  width: 75%;
  height: auto;
  transform: rotate(2deg);
  filter: drop-shadow(0 8px 16px rgba(60, 40, 20, 0.3));
}

.wanted__caption {
  font-family: 'Sacramento', cursive;
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 8px;
}

/* Author section */
.about-author {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
}

.about-author__photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  text-align: center;
  padding: 32px 16px;
  font-size: 0.95rem;
  color: rgba(42, 37, 32, 0.7);
  border-top: 1px dashed rgba(122, 31, 31, 0.25);
  margin-top: 48px;
}

footer a {
  color: var(--accent);
}

/* Desktop tweaks */
@media (min-width: 720px) {
  .about-book {
    grid-template-columns: 220px 1fr;
    text-align: left;
  }

  .about-book__map {
    margin: 0;
  }

  .about-book .section__title {
    grid-column: 1 / -1;
  }

  .about-author {
    grid-template-columns: 200px 1fr;
    text-align: left;
    align-items: center;
  }

  .about-author .section__title {
    grid-column: 1 / -1;
    text-align: center;
  }
}
