/* Extracted site styles from index.html */
:root {
  --forest-green: #1E3F2B;
  --peach: #EFC8A4;
  --cream: #F8F5EF;
  --teal: #2A6F6A;
  --gold-ochre: #D9A441;
  --garnet: #7B2F3A;
  --sage: #A8B398;
  --accent: #944592;
  --accent-dark: #7d3b7b;   /* hover */
  --accent-soft: rgba(148, 69, 146, 0.12);

  --font-header: 'Special Elite', serif;
  --font-body: 'Lora', serif;

  /* neutrals */
  --paper: #ffffff;
  --line: #e9e3da;
  --shadow: 0 8px 22px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--forest-green);
  background: var(--cream);
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration-color: transparent;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover {
  color: var(--accent-dark);
  text-decoration-color: currentColor;
}

img { max-width: 100%; height: auto; border-radius: 8px; }

/* ------------------------------
   HEADER (NO GRADIENT)
------------------------------ */
header {
  background: var(--cream);
  text-align: center;
  padding: 2.5rem 1rem 1.75rem;
  border-bottom: 2px solid var(--sage);
}

.site-logo {
  max-width: 160px;
  border-radius: 14px;
  border: 3px solid var(--forest-green);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  margin-bottom: 1rem;
  background: var(--paper);
}

header h1 {
  font-family: var(--font-header);
  font-size: 2.9rem;
  margin: 0;
}

.tagline {
  font-style: italic;
  margin: 0.4rem 0 1.4rem;
  color: var(--teal);
}

nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: var(--forest-green);
  font-weight: bold;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  transition: 0.25s ease;
}
nav a:hover {
  background-color: var(--accent);
  color: #fff;
  transform: scale(1.04);
}

/* ------------------------------
   SECTIONS = PAPER CARDS
------------------------------ */
section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 2.5rem 1.25rem;
  max-width: 900px;
  margin: 2rem auto;
}
h2 {
  font-family: var(--font-header);
  color: var(--forest-green);
  padding-bottom: 0.4rem;
  margin-top: 0;
  border-bottom: 2px solid var(--accent);
}

/* ------------------------------
   HERO (SOLID, NO GRADIENT)
------------------------------ */
#hero {
  background: var(--peach);
  border: 1px solid #e6c1a0;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 4rem 1.25rem 3.25rem;
}

.hero-title {
  font-family: var(--font-header);
  font-size: 2.5rem;
  margin: 0 0 0.7rem;
}

.hero-subtitle {
  max-width: 780px;
  margin: 0 auto 1.8rem;
  color: #2a2521;
  font-size: 1.15rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  text-decoration: none;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  display: inline-block;
  transition: 0.2s ease;
}

.btn:hover {
  transform: scale(1.04);
  opacity: 0.96;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  background: var(--paper);
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ------------------------------
   ABOUT
------------------------------ */
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.about-photo {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--forest-green);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  background: var(--paper);
}

.about-text { flex: 1; min-width: 260px; }

/* ------------------------------
   BLOG CARD
------------------------------ */
#blog .blog-card {
  background: var(--cream);
  border: 2px solid var(--peach);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1rem;
}

/* ------------------------------
   OFFERINGS
------------------------------ */
.offerings-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-left: 0;
}

.offerings-list li {
  list-style: none;
  background: var(--cream);
  border: 2px solid var(--sage);
  border-radius: 12px;
  padding: 1.1rem;
  transition: 0.2s ease;
}
.offerings-list li:hover {
  transform: translateY(-4px);
  border-color: var(--gold-ochre);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ------------------------------
   CTA BOX (NO GRADIENT)
------------------------------ */
.cta-box a {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.2s ease;
}
.cta-box a:hover { background: var(--accent-dark); transform: scale(1.04); }

/* ------------------------------
   PUBLICATIONS
------------------------------ */
.pub-item {
  background: var(--paper);
  border: 2px solid var(--peach);
  border-radius: 12px;
  padding: 1.5rem;
  transition: 0.2s ease;
  margin-top: 1rem;
}
.pub-item:hover { transform: translateY(-4px); border-color: var(--forest-green); box-shadow: 0 6px 16px rgba(0,0,0,0.08); }

.pub-link {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.5rem 1rem;
  background: var(--forest-green);
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

/* ------------------------------
   CONTACT
------------------------------ */
.contact-card {
  background: var(--cream);
  border: 2px solid var(--sage);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* ------------------------------
   FOOTER (NO CARD — GROUNDS PAGE)
------------------------------ */
footer.site-footer {
  background: var(--forest-green);
  color: var(--cream);
  margin-top: 3rem;
  padding: 3rem 1rem 2rem;
  box-shadow: none;
  border-radius: 0;
  border: none;
}

.footer-container { max-width: 1100px; margin: 0 auto 1.5rem; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
.footer-col { flex: 1 1 260px; min-width: 240px; }
.site-footer h3, .site-footer h4 { font-family: var(--font-header); color: var(--cream); margin-top: 0; }
.site-footer a { color: var(--peach); text-decoration: none; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--gold-ochre); text-decoration: underline; }
.footer-links { list-style: none; padding: 0; margin: 0.6rem 0 0; }
.footer-links li { margin: 0.35rem 0; }
.footer-btn { background-color: var(--peach); color: var(--forest-green); border: 2px solid var(--peach); padding: 0.75rem 1.3rem; border-radius: 10px; font-weight: 700; display: inline-block; transition: 0.25s ease; text-decoration: none; }
.footer-btn:hover { background-color: var(--gold-ochre); color: var(--forest-green); border-color: var(--gold-ochre); transform: scale(1.05); }
.footer-bottom { text-align: center; font-size: 0.92rem; opacity: 0.9; border-top: 1px solid rgba(255,255,255,0.25); padding-top: 1rem; max-width: 1100px; margin: 0 auto; }

/* Responsive */
@media (max-width: 700px) {
  header h1 { font-size: 2.3rem; }
  .hero-title { font-size: 2rem; }
  .about-container { flex-direction: column; text-align: center; }
  .about-photo { margin-bottom: 1rem; }
  section { margin: 1.25rem 0.9rem; }
}

/* Utility classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.max-w-520 { max-width: 520px; }
.center-block { display: block; margin-left: auto; margin-right: auto; }
.zine-cover { width: 100%; max-width: 520px; height: auto; display: block; margin: 0 auto; border-radius: 12px; border: 2px solid var(--accent); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.small { font-size: 0.95rem; }
.muted { opacity: 0.9; }
.font-bold { font-weight: 700; }
.text-teal { color: var(--teal); }


/* ------------------------------
   Newsletter archive styles (moved from newsletter.html)
   ------------------------------ */
:root{
  --forest:#1e4d3a;
  --peach:#f7d2b8;
  --ink:#1b1b1b;
  --stone:#f6f5f3;
}
html,body{margin:0;padding:0;font-family:"Lora",serif;color:var(--ink);background:var(--stone);} 
a{color:var(--forest);text-decoration:underline;text-underline-offset:2px;} 
.container{width:min(1000px,92vw);margin:0 auto;} 

header{position:sticky;top:0;z-index:10;background:rgba(255,255,255,.9);backdrop-filter:blur(8px);border-bottom:1px solid #e7e4df;} 
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:16px;} 
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit;} 
.brand-mark{width:40px;height:40px;border-radius:12px;background:var(--forest);display:grid;place-items:center;color:#fff;font-family:"Special Elite",serif;font-size:18px;letter-spacing:.5px;} 
.brand h1{font-family:"Special Elite",serif;font-size:18px;margin:0;letter-spacing:.5px;} 
.nav-links{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;} 
.btn{display:inline-block;padding:10px 14px;border-radius:14px;border:1px solid var(--forest);color:var(--forest);text-decoration:none;font-weight:700;} 
.btn.fill{background:var(--forest);color:#fff;border-color:var(--forest);} 

.hero{padding:46px 0 18px;} 
.eyebrow{display:inline-block;background:var(--peach);color:#532b12;font-weight:800;padding:6px 10px;border-radius:999px;letter-spacing:.3px;} 
.hero h2{font-family:"Special Elite",serif;font-size:clamp(28px,5vw,44px);line-height:1.1;margin:14px 0 10px;} 
.hero p{font-size:clamp(16px,2.5vw,18px);margin:0;max-width:70ch;color:#333;} 

.subscribe{background:linear-gradient(135deg,var(--peach),#ffe9db);border:1px solid #f7dcca;border-radius:20px;padding:18px;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;} 
.subscribe h4{margin:0;font-size:20px;} 
.subscribe p{margin:6px 0 0;color:#3b2a1c;} 
.subscribe .copy{max-width:70ch} 

.archive{padding:20px 0 70px;display:grid;gap:14px;} 
.card{background:#fff;border:1px solid #ece8e2;border-radius:18px;padding:16px 18px;} 
.meta-top{display:flex;align-items:baseline;justify-content:space-between;gap:12px;flex-wrap:wrap;} 
.meta time{font-size:12px;color:#666;letter-spacing:.3px;text-transform:uppercase;} 
.meta h3{margin:10px 0 6px;font-size:22px;line-height:1.2;} 
.meta p{margin:0;color:#444;max-width:80ch;} 
.chips{margin-top:10px;display:flex;flex-wrap:wrap;gap:8px;} 
.chip{font-size:12px;background:#f3f0ec;color:#5a4d42;border-radius:999px;padding:4px 10px;border:1px solid #e8e2da;} 
.actions{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;} 

footer{border-top:1px solid #e7e4df;padding:30px 0 50px;font-size:14px;color:#4a4a4a;} 

