/* ---------- Fonts ---------- */
@font-face {
  font-family: "Doves Headline";
  src: url("/assets/fonts/doves-headline.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1, h2, .site-title {
  font-family: "Doves Headline", Georgia, serif;
  letter-spacing: 0.01em; /* optional, very light */
}



/* ---------- Variables ---------- */

:root {
  --pt-green: #4C7D4A;
  --pt-ink: #111111;
  --pt-paper: #F4F1EA;      /* soft “bone” background */
  --pt-accent: #8A5A3E;     /* optional rust/oxide accent */
  --pt-max-width: 900px;
  --pt-radius: 4px;
  --pt-shadow-soft: 0 8px 20px rgba(0,0,0,0.06);
}

/* ---------- Global ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               "Source Serif 4", serif;
  color: var(--pt-ink);
  background: var(--pt-paper);
  line-height: 1.6;
}

a {
  color: var(--pt-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- Layout ---------- */

.page {
  max-width: var(--pt-max-width);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

/* ---------- Header ---------- */

.site-header {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}

.site-header-inner {
  max-width: var(--pt-max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  height: 52px;
  width: auto;
  display: block;
}

.site-title-block {
  flex: 1;
}

.site-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.site-tagline {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
}

.site-nav {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.site-nav a {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.site-nav a:hover {
  background: rgba(76,125,74,0.08);
  text-decoration: none;
}

/* ---------- Content Cards ---------- */

.section-card {
  background: #fff;
  border-radius: var(--pt-radius);
  box-shadow: var(--pt-shadow-soft);
  padding: 1.5rem 1.5rem 1.75rem;
  margin-top: 1.5rem;
}

.section-card h1,
.section-card h2,
.section-card h3 {
  margin-top: 0;
  color: var(--pt-ink);
}

/* ---------- Simple CTA for newsletter (placeholder) ---------- */

.newsletter-cta {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--pt-radius);
  border: 1px dashed rgba(76,125,74,0.35);
  background: rgba(76,125,74,0.04);
  font-size: 0.9rem;
}

.newsletter-cta strong {
  color: var(--pt-green);
}

.newsletter-button {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: none;
  background: var(--pt-green);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

.newsletter-button:hover {
  filter: brightness(1.05);
}

/* ---------- Footer ---------- */

.site-footer {
  max-width: var(--pt-max-width);
  margin: 2rem auto 1.5rem;
  padding: 0 1.25rem;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.6);
}

