
:root {
  --moss: #1f3a2a;
  --leaf: #3f6b4a;
  --mist: #e7efe4;
  --bark: #2a2118;
  --sand: #f4efe6;
  --muted: #5e6b60;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Literata", Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font-body);
  color: var(--bark);
  background:
    radial-gradient(90% 60% at 100% 0%, #d5e4d2 0%, transparent 50%),
    linear-gradient(180deg, var(--sand) 0%, #ebe4d6 100%);
  line-height: 1.55;
}
a { color: var(--leaf); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--moss); }
.site-header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(31,58,42,.12);
  background: rgba(244,239,230,.85);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 10;
}
.brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--moss);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.nav a {
  color: var(--bark); text-decoration: none; font-size: .95rem;
  border-bottom: 2px solid transparent; padding-bottom: .1rem;
}
.nav a:hover, .nav a.is-active { border-bottom-color: var(--leaf); color: var(--moss); }
main { padding: 0 0 4rem; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: min(88vh, 820px);
}
.hero__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 6vw, 4.5rem);
  max-width: 32rem;
}
.hero__copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--moss);
}
.hero__copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 28ch;
}
.hero__visual { margin: 0; overflow: hidden; background: var(--moss); }
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.section {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 0;
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--moss);
  margin: 0 0 1.25rem;
  font-weight: 600;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.card {
  display: block; text-decoration: none; color: inherit;
  background: #fff8ef; border: 1px solid rgba(31,58,42,.1);
}
.card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.card span {
  display: block; padding: .85rem 1rem 1.1rem;
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--moss);
}
.prose {
  max-width: 42rem;
  font-size: 1.08rem;
}
.prose figure { margin: 1.5rem 0; }
.prose img { max-width: 100%; height: auto; display: block; }
.prose p { margin: 0 0 1rem; }
.page-head { margin-bottom: 1.5rem; }
.page-head h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--moss);
}
.meta { color: var(--muted); font-size: .92rem; margin-top: .4rem; }
.site-footer {
  margin-top: 3rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid rgba(31,58,42,.12);
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { min-height: 55vh; order: -1; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
