:root {
  --bg: #ffffff;              /* cloud white */
  --text: #111111;
  --muted: #666666;
  --border: #e9e9e9;

  /* Adjust later to your exact “burnt purple” */
  --burnt-purple: #4b2b57;
}

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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  height: 10px;
  background: var(--burnt-purple);
}

.header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand { text-decoration: none; color: var(--text); }

.logo-placeholder {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
}

.nav a:hover { text-decoration: underline; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.search-btn {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.hero {
  padding: 28px 0 8px;
}

.hero h1 {
  font-size: 32px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.5;
}

.section {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 18px;
  margin: 0;
}

.see-all {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.see-all:hover { text-decoration: underline; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.card .kicker {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  margin-top: 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.footer-links { display: flex; gap: 14px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
  .nav { display: none; } /* later: add mobile menu */
}
/* --- Vox polish pass (BibleMapped) --- */

.header-inner { min-height: 64px; gap: 18px; }
.logo { height: 28px; width: auto; display: block; }

.nav { gap: 16px; }
.nav a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 6px;
}

.hero { padding-top: 28px; padding-bottom: 10px; }
.section { padding: 22px 0; }
.grid { gap: 14px; }
.card { padding: 14px; border-radius: 14px; }
.kicker { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer { margin-top: 34px; padding: 18px 0; }
/* --- Header layout like Vox (BibleMapped) --- */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{ flex:0 0 auto; }

.nav{
  flex:1 1 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
}

.header-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:12px;
}

/* --- BIGGER LOGO + THICKER STRIP (global override) --- */
.top-strip { height: 14px !important; }

.logo {
  height: 110px !important;
  width: auto !important;
  display: block !important;
}

.header-inner {
  min-height: 84px !important;
}

/* Keep nav from looking cramped when the logo grows */
.nav { gap: 18px !important; }
/* Make the menu look like a clean website header (Vox-ish) */
.nav a{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 4px;
}

/* On phones: keep the menu from squishing */
@media (max-width: 640px){
  .nav{ gap: 12px !important; flex-wrap: wrap; justify-content: center; }
  .nav a{ font-size: 11px; padding: 8px 3px; }
}
