/* site/assets/landing.css */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

.author-name {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.3px;
}

.domain {
  color: var(--color-text-subtle);
  font-size: 12px;
}

main {
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  padding: 64px var(--space-xl) var(--space-xl);
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
}

.hero-cover img {
  width: 180px;
  height: 270px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(60, 40, 20, 0.25);
  display: block;
}

.hero-label {
  color: var(--accent, #a87840);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  margin: 0 0 12px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero-blurb {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 24px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-invert);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.shelf {
  padding: var(--space-lg) var(--space-xl);
}

.shelf-label {
  color: var(--color-text-subtle);
  font-size: 11px;
  letter-spacing: 1.5px;
  margin: 0 0 12px;
}

.shelf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.shelf-list a {
  display: block;
  width: 52px;
}

.shelf-list img {
  width: 52px;
  height: 78px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  color: var(--color-text-subtle);
  font-size: 12px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-md);
  }
  .hero-cover img { width: 140px; height: 210px; }
  .hero-title { font-size: 26px; }
  .hero-blurb { font-size: 15px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .domain { display: none; }
  .site-footer { flex-direction: column; gap: 4px; text-align: center; }
}
