:root {
  --teal: #00cc9b;
  --gold: #d4af37;
  --mist: #f9fbf8;
  --ink: #1b1b1b;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  margin: 0;
  line-height: 1.7;
  color: var(--ink);
  background: #fdfcf9;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 24px;
}

.narrow {
  width: min(850px, 92vw);
}

.center {
  text-align: center;
}

.section {
  padding: 60px 0;
}

.bg-light {
  background: var(--mist);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(6px);
  z-index: 10;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-family: 'Pacifico', cursive;
  color: var(--teal);
  margin: 0;
  font-size: 1.7rem;
}

nav a {
  margin-right: 14px;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

nav a:last-child {
  margin-right: 0;
}

nav a:hover,
nav a.active {
  color: var(--teal);
  text-decoration: underline;
}

.hero {
  background: radial-gradient(circle at top, #ffffff, #f4fbf9);
  border-bottom: 1px solid #eee;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-cover img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 4px solid var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.subtitle {
  font-weight: bold;
  color: var(--teal);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.lead {
  margin-top: 8px;
  font-size: 1.02rem;
}

h2, h3 {
  margin-bottom: 8px;
}

h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60%;
  max-width: 160px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--teal);
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 204, 155, 0.35);
}

.btn-ghost {
  color: var(--teal);
  background: #fff;
}

.author-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.author-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.excerpt {
  font-style: italic;
  margin-bottom: 8px;
  color: #555;
}

.tiny-note {
  font-size: 0.9rem;
  color: #666;
}

.scripture {
  font-size: 1.15rem;
  font-style: italic;
  color: #333;
}

.scripture span {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.preorder-form {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.preorder-form label {
  display: grid;
  gap: 4px;
  font-size: 0.95rem;
}

.preorder-form input,
.preorder-form select,
.preorder-form textarea {
  padding: 9px 11px;
  border-radius: 8px;
  border: 1px solid #cfe7e1;
  font-family: inherit;
  font-size: 0.95rem;
  background: #ffffff;
}

.preorder-actions {
  margin-bottom: 10px;
}

.soft {
  border: 0;
  border-top: 1px solid #eee;
  margin: 24px 0;
}

.footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid #eee;
  color: #555;
  font-size: 0.9rem;
  background: #ffffff;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .author-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .author-grid img {
    justify-self: center;
  }
  nav {
    width: 100%;
  }
}
