
:root {
  --forest: #2f5d50;
  --forest-dark: #244a40;
  --cream: #f7f1e3;
  --cream-deep: #efe6d6;
  --ink: #2a2a2a;
  --muted: #5c5c5c;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.announcement {
  background: var(--forest);
  color: #fff;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  padding: 0.65rem 1rem;
  font-weight: 500;
}
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 2rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(47,93,80,0.12);
}
.logo { border-radius: 50%; }
.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
}
.nav a:hover { color: var(--forest); }
.utilities { display: flex; gap: 0.85rem; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.utilities a { color: var(--forest); font-weight: 600; }
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 2rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.eyebrow {
  color: var(--forest);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--forest-dark);
  margin: 0 0 1rem;
}
.lede { color: var(--muted); max-width: 32rem; line-height: 1.6; }
.btn {
  display: inline-block;
  margin-top: 1.25rem;
  background: var(--forest);
  color: #fff !important;
  padding: 0.85rem 1.4rem;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
}
.btn:hover { background: var(--forest-dark); }
.btn-ghost {
  background: transparent;
  color: var(--forest) !important;
  border: 1px solid var(--forest);
  margin-top: 0.75rem;
  padding: 0.55rem 1rem;
}
.script {
  margin-top: 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  color: var(--forest);
  font-size: 1.15rem;
}
.hero-media img {
  width: 100%;
  height: min(520px, 70vw);
  object-fit: cover;
  border-radius: 2px;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--cream-deep);
  text-align: center;
}
.value img { width: 48px; height: 48px; object-fit: contain; margin: 0 auto 0.5rem; }
.value h3 { margin: 0; font-size: 0.95rem; color: var(--forest-dark); font-family: "Cormorant Garamond", Georgia, serif; }
.value p { margin: 0.25rem 0 0; font-size: 0.8rem; color: var(--muted); }
.favorites, .story { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-kicker {
  text-align: center;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--forest);
  font-weight: 600;
}
.favorites h2, .story h2 {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  color: var(--forest-dark);
  margin: 0.35rem 0 1.75rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.card { text-align: center; }
.card img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  background: #fff;
}
.card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  margin: 0.75rem 0 0;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.story h2 { text-align: left; }
.story .section-kicker { text-align: left; }
.story-copy p { line-height: 1.65; color: var(--muted); }
.site-footer {
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.footer-logo { margin: 0 auto 1rem; border-radius: 50%; background: var(--cream); }
.site-footer nav { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.site-footer a { color: #fff; opacity: 0.92; }
.tagline { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; margin: 0; }
@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr; justify-items: center; }
  .hero, .story, .values, .grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
}
