:root {
  --cream: #FBF7F0;
  --sand: #E8DFD2;
  --terracotta: #C45C3E;
  --terracotta-dark: #A34830;
  --sage: #6B8F71;
  --sage-dark: #55755A;
  --charcoal: #2C2A26;
  --muted: #5C574F;
  --white: #ffffff;
  --max: 1100px;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(44, 42, 38, 0.08);
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.55;
}
a { color: var(--terracotta-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0; flex-wrap: wrap;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 700; color: var(--charcoal);
  text-decoration: none;
}
.logo span { color: var(--terracotta); }
.nav { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; align-items: center; }
.nav a {
  color: var(--muted); font-size: 0.88rem; font-weight: 600;
  text-decoration: none;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--terracotta); }
.btn {
  display: inline-block; border-radius: 999px; padding: 0.65rem 1.15rem;
  background: var(--terracotta); color: var(--white) !important;
  font-weight: 700; text-decoration: none !important; border: none; cursor: pointer;
  font: inherit;
}
.btn:hover { background: var(--terracotta-dark); }
.btn-ghost {
  background: transparent; color: var(--terracotta) !important;
  border: 1.5px solid var(--terracotta);
}
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem;
  align-items: center; padding: 2.5rem 0 1.5rem;
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; margin: 0 0 0.75rem;
}
.lead { color: var(--muted); font-size: 1.08rem; margin: 0 0 1.25rem; }
.hero-art {
  background: linear-gradient(145deg, var(--sand), #f3ebe0);
  border-radius: 22px; min-height: 260px; padding: 1.5rem;
  display: flex; align-items: flex-end; box-shadow: var(--shadow);
  border: 1px solid #dfd4c4;
}
.badge {
  background: var(--white); border-radius: 12px; padding: 0.9rem 1rem;
  box-shadow: var(--shadow); max-width: 17rem;
}
.badge strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.25rem; }
.section { padding: 2rem 0; }
.section h2, .page-hero h1 {
  font-family: var(--font-serif); font-size: clamp(1.7rem, 3vw, 2.2rem); margin: 0 0 0.4rem;
}
.sub { color: var(--muted); margin: 0 0 1.25rem; }
.pillar-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.85rem;
}
.pillar-card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 0.4rem; color: inherit;
  text-decoration: none; min-height: 100%;
}
.pillar-card:hover { border-color: #d4b8a8; text-decoration: none; }
.pillar-card .icon {
  width: 2rem; height: 2rem; border-radius: 999px;
  background: #edf3ee; color: var(--sage-dark);
  display: grid; place-items: center; font-weight: 700; font-size: 0.85rem;
}
.pillar-card h3 { font-family: var(--font-serif); font-size: 1.02rem; margin: 0; color: var(--charcoal); }
.pillar-card p { margin: 0; color: var(--muted); font-size: 0.9rem; flex: 1; }
.more { color: var(--terracotta); font-weight: 700; font-size: 0.88rem; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.story-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--sand); overflow: hidden; box-shadow: var(--shadow);
}
.story-card .thumb { height: 130px; background: linear-gradient(120deg, #d8c8b4, #c5d5c8); }
.story-card .body { padding: 1rem; }
.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  color: var(--sage-dark); text-transform: uppercase; letter-spacing: 0.04em;
}
.story-card h3 { font-family: var(--font-serif); font-size: 1.05rem; margin: 0.35rem 0; }
.story-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.newsletter {
  background: var(--sage); color: var(--white);
  border-radius: 20px; padding: 1.5rem 1.75rem; margin: 1rem 0 2rem;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 1rem; align-items: center;
}
.newsletter h2 { margin: 0 0 0.35rem; font-family: var(--font-serif); color: var(--white); font-size: 1.5rem; }
.newsletter p { margin: 0; opacity: 0.92; }
.newsletter-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 180px; border: none; border-radius: 999px;
  padding: 0.75rem 1rem; font: inherit;
}
.page-hero { padding: 2rem 0 0.5rem; }
.page-hero p { color: var(--muted); max-width: 42rem; }
.hub-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.hub-list li {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: 12px; padding: 1rem 1.1rem; margin-bottom: 0.7rem;
}
.site-footer {
  border-top: 1px solid var(--sand); padding: 2rem 0 2.5rem;
  color: var(--muted); font-size: 0.92rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.25rem;
}
.site-footer a { color: var(--muted); }
.site-footer h4 { margin: 0 0 0.5rem; color: var(--charcoal); font-size: 0.95rem; }
.fine { font-size: 0.82rem; color: #7a746a; margin-top: 1.25rem; }
@media (max-width: 960px) {
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .story-grid, .footer-grid, .hero, .newsletter { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
