/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1e1a17;
  background-color: #f5efe7;
  line-height: 1.6;
}

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

/* Hero */

.hero {
  position: relative;
  min-height: 80vh;
  color: #111;
  background-image: url("assets/artwork.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245, 239, 231, 0.92), rgba(245, 239, 231, 0.85), rgba(245, 239, 231, 0.96));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-cover {
  flex: 0 0 260px;
}

.hero-cover img {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #a34f3b;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.hero h2 {
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 480px;
  margin: 0 0 1.2rem;
}

.hero-sub {
  max-width: 520px;
  margin-bottom: 1.8rem;
  font-size: 0.98rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.08s ease, color 0.08s ease;
  white-space: nowrap;
}

.btn.primary {
  background-color: #111;
  color: #f5efe7;
  border-color: #111;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.btn.ghost {
  background-color: rgba(255, 255, 255, 0.8);
  color: #111;
  border-color: rgba(17, 17, 17, 0.16);
}

.btn.ghost:hover {
  background-color: #111;
  color: #f5efe7;
}

.btn.large {
  padding: 0.9rem 1.6rem;
  font-size: 0.98rem;
}

/* Sections */

.section {
  padding: 3.5rem 1.5rem;
}

.section.muted {
  background-color: #f0e5d8;
}

.section-inner {
  max-width: 920px;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 640px;
  text-align: center;
}

.section h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section p {
  margin: 0 0 1rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.callout,
.note {
  background-color: #f5efe7;
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  font-size: 0.95rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.callout h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.callout ul {
  padding-left: 1.1rem;
  margin: 0;
}

.callout li {
  margin-bottom: 0.35rem;
}

/* Release / Coming soon */

.coming-soon {
  margin-top: 1.4rem;
}

.pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.25);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Essays */

.essays-link a {
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.3);
}

.essays-link a:hover {
  border-bottom-color: #111;
}

/* Author */

.author-block {
  align-items: center;
  column-gap: 3.5rem;           /* gives more breathing room between photo + text */
}

.author-photo {
  max-width: 320px;             /* was 220px – main change */
  width: 100%;                  /* let it fill that max width */
}

.author-photo img {
  width: 100%;                  /* ensure it actually uses the container width */
  height: auto;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.tagline {
  font-size: 0.9rem;
  color: #6e5c4f;
}

/* Footer */

.footer {
  background-color: #1b1713;
  color: #f5efe7;
  padding: 2.2rem 1.5rem 2.6rem;
}

.footer-inner {
  max-width: 920px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.footer p {
  margin: 0 0 0.9rem;
}

.footer-cta {
  max-width: 620px;
  color: #d9cec3;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    padding-top: 3.2rem;
    padding-bottom: 3.6rem;
  }

  .hero {
    background-attachment: scroll;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-cover {
    order: -1;
  }

  .section-inner.narrow {
    text-align: left;
  }

   .author-photo {
    max-width: 260px;
    margin: 0 auto 1.5rem;   /* center photo above text on narrow screens */
  }

  .author-block {
    row-gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}