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

:root {
  --cream: #f7f3ec;
  --green-soft: #b8cba8;
  --green-mid: #7a9e6a;
  --green-deep: #3a5c2e;
  --text-dark: #1e2a1a;
  --text-mid: #4a6040;
  --text-light: #8aaa78;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
}

.stripe-bg {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}
.stripe-bg svg { width: 100%; height: 100%; }

.site { position: relative; z-index: 1; }

nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 3rem;
  border-bottom: 1px solid rgba(120,160,90,0.25);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(247,243,236,0.88);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400;
  letter-spacing: 0.04em; color: var(--green-deep); text-decoration: none;
}

.nav-right { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  color: var(--text-mid); transition: color 0.3s;
}
.nav-links a:hover { color: var(--green-deep); }

.hero {
  min-height: 88vh; display: flex; flex-direction: column;
  justify-content: center; padding: 6rem 3rem 4rem; max-width: 900px;
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 2rem;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 11vw, 140px); font-weight: 300;
  line-height: 0.92; letter-spacing: -0.02em;
  color: var(--green-deep); margin-bottom: 2.5rem;
}

.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: var(--text-mid); max-width: 480px; margin-bottom: 3rem;
  font-style: italic;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  padding: 12px 28px; background: var(--green-deep); color: var(--cream);
  border: none; border-radius: 2px; cursor: pointer;
  letter-spacing: 0.04em; text-decoration: none; display: inline-block; transition: all 0.3s;
}
.btn-primary:hover { background: var(--text-dark); }

.btn-secondary {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400;
  padding: 12px 28px; background: transparent; color: var(--green-deep);
  border: 1px solid var(--green-soft); border-radius: 2px; cursor: pointer;
  letter-spacing: 0.04em; text-decoration: none; display: inline-block; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--green-deep); }

.info-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin: 4rem 3rem; border: 1px solid rgba(120,160,90,0.2);
  border-radius: 4px; overflow: hidden;
  background: rgba(255,255,255,0.4); backdrop-filter: blur(8px);
}

.info-card {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(120,160,90,0.2);
}
.info-card:last-child { border-right: none; }

.info-label {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.5rem;
}

.info-value {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 400; color: var(--text-dark);
}

.below-fold { position: relative; min-height: 200px; }

.blog-section { padding: 2rem 3rem 4rem; }

.blog-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 3rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(120,160,90,0.2);
}
.blog-title {
  font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light);
}
.blog-subtitle { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--text-light); opacity: 0.7; }

.posts { display: flex; flex-direction: column; }

.post {
  display: grid; grid-template-columns: 120px 1fr; gap: 2rem;
  padding: 2.5rem 0; border-bottom: 1px solid rgba(120,160,90,0.15);
  cursor: pointer; transition: all 0.2s; text-decoration: none; color: inherit;
}
.post:hover .post-title { color: var(--green-deep); }

.post-date { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--text-light); letter-spacing: 0.06em; padding-top: 6px; }
.post-tag {
  display: inline-block; font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-mid);
  background: rgba(120,160,90,0.12); padding: 3px 8px; border-radius: 20px; margin-bottom: 0.6rem;
}
.post-title {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400;
  line-height: 1.2; color: var(--text-dark); margin-bottom: 0.6rem; transition: color 0.2s;
}
.post-excerpt { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text-mid); max-width: 560px; }

.content-section {
  padding: 4rem 3rem; border-top: 1px solid rgba(120,160,90,0.15);
}

.content-section-title {
  font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 2rem;
}
.about-text {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300;
  line-height: 1.7; color: var(--text-dark); max-width: 640px; font-style: italic;
}

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 640px; }
.contact-item { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-label { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); }
.contact-value { font-size: 15px; color: var(--text-dark); text-decoration: none; transition: color 0.2s; }
.contact-value:hover { color: var(--green-deep); }

footer {
  padding: 2rem 3rem; border-top: 1px solid rgba(120,160,90,0.15);
  display: flex; justify-content: space-between; align-items: center;
}

.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 300; color: var(--text-light); }
.footer-copy { font-family: 'Space Mono', monospace; font-size: 9px; color: var(--text-light); opacity: 0.6; }

/* Single article page */
.article {
  padding: 3rem 3rem 6rem; max-width: 720px;
}
.article-back {
  display: inline-block; font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: 0.06em; color: var(--text-light); text-decoration: none; margin-bottom: 2.5rem;
}
.article-back:hover { color: var(--green-deep); }
.article-tag { margin-bottom: 1rem; }
.article-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 52px); font-weight: 400;
  line-height: 1.1; color: var(--green-deep); margin-bottom: 1rem;
}
.article-date { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--text-light); letter-spacing: 0.06em; }
.article-cover { width: 100%; border-radius: 4px; margin-top: 2rem; display: block; }
.article-credit {
  font-family: 'Space Mono', monospace; font-size: 11px; color: var(--text-light);
  margin-top: 0.8rem; padding-top: 1.5rem; border-top: 1px solid rgba(120,160,90,0.2);
}
.article-body {
  font-size: 16px; line-height: 1.8; color: var(--text-dark); margin-top: 2.5rem;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400;
  color: var(--green-deep); margin: 2.5rem 0 1rem;
}
.article-body p { margin-bottom: 1.4rem; }
.article-body ul { margin: 0 0 1.4rem 1.4rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body a { color: var(--green-deep); }

@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .info-cards { grid-template-columns: 1fr; margin: 2rem 1.5rem; }
  .info-card { border-right: none; border-bottom: 1px solid rgba(120,160,90,0.2); }
  .blog-section, .content-section, .article { padding: 2rem 1.5rem; }
  .post { grid-template-columns: 1fr; gap: 0.5rem; }
  footer { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
