/* Lasting Word Publishing Group — light bookstore theme */

:root {
  --bg: #fdfbf6;
  --bg-alt: #f5f0e6;
  --ink: #2b2a26;
  --ink-soft: #5c584f;
  --navy: #1f3a5f;
  --gold: #b98a2e;
  --gold-dark: #9a7124;
  --amazon: #e88b1a;
  --amazon-dark: #c97612;
  --line: #e5ddcc;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(43, 42, 38, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1.05rem;
}

h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
}

img { max-width: 100%; height: auto; }

a { color: var(--gold-dark); }

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header / nav */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img { width: 46px; height: 46px; }

.brand span {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.site-nav { display: flex; gap: 1.5rem; align-items: center; }

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.15s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-amazon { background: var(--amazon); color: #fff; }
.btn-amazon:hover { background: var(--amazon-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* Hero */
.hero {
  text-align: center;
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
}

.hero img.hero-logo { width: 150px; margin-bottom: 1.5rem; }

.hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: 0.9rem; }

.hero .tagline {
  font-size: 1.2rem;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 34rem;
  margin: 0 auto;
}

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

/* Featured book */
.book-feature {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.book-cover {
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: block;
}

.book-feature p { margin-bottom: 1rem; color: var(--ink-soft); }

.book-feature .lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}

.book-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Book detail */
.book-list { list-style: none; margin: 1rem 0 1.5rem; }

.book-list li {
  padding: 0.45rem 0 0.45rem 1.7rem;
  position: relative;
  color: var(--ink-soft);
}

.book-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.book-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.book-meta div { text-align: center; }

.book-meta dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}

.book-meta dd { font-weight: 700; color: var(--navy); }

blockquote {
  border-left: 4px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-form { display: grid; gap: 1.1rem; }

.contact-form label { font-weight: 700; font-size: 0.92rem; color: var(--navy); }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  margin-top: 0.35rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #d9dee8;
  padding: 2.5rem 0;
  margin-top: 4rem;
  font-size: 0.92rem;
  text-align: center;
}

.site-footer a { color: #f0d9a8; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-nav { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1rem; flex-wrap: wrap; }

.disclosure { font-size: 0.8rem; opacity: 0.75; max-width: 40rem; margin: 1rem auto 0; }

/* Responsive */
@media (max-width: 780px) {
  .book-feature, .contact-grid { grid-template-columns: 1fr; }
  .book-feature .book-cover { max-width: 260px; margin: 0 auto; }
  .site-nav { gap: 1rem; font-size: 0.9rem; }
  .brand span { display: none; }
}
