:root {
  --bg-color: #f4f6f5;
  --text-dark: #2a332c;
  --text-gray: #6b7a70;
  --green-dark: #1b3320;
  --green-mid: #2c4d32;
  --white: #ffffff;
  --border-color: #d1dcd4;
  --radius-sq: 12px;
  --spacing-base: 1.5rem;
}
body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6, .brand-name, .desktop-nav a, .mobile-nav a {
  font-family: system-ui, "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  font-stretch: condensed;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border-color);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 1.5rem;
}
.logo-wrapper svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}
.desktop-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.desktop-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.125rem;
  transition: color 0.2s ease;
}
.desktop-nav a:hover {
  color: var(--green-mid);
}
.burger-btn {
  display: none;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--green-dark);
  transition: border-color 0.2s;
}
.burger-btn:hover {
  border-color: var(--green-mid);
}
.burger-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}
.mobile-modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 51, 32, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--white);
  border: 2px solid var(--green-mid);
  border-radius: var(--radius-sq);
  padding: 4rem 2rem 3rem;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.mobile-modal.is-open .modal-content {
  transform: translateY(0);
}
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--green-dark);
}
.close-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.mobile-nav a {
  text-decoration: none;
  color: var(--green-dark);
  font-size: 1.75rem;
  font-weight: 800;
}
.site-footer {
  background: var(--white);
  border-top: 2px solid var(--border-color);
  padding: 4rem 2rem;
  margin-top: auto;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: start;
}
.footer-brand h2 {
  margin: 0 0 0.5rem;
  color: var(--green-dark);
  font-size: 1.5rem;
}
.tagline {
  color: var(--text-gray);
  margin: 0;
  font-size: 1.125rem;
}
.legal-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.site-footer a:hover {
  color: var(--green-dark);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green-dark) !important;
  font-weight: 600;
  border: 2px solid var(--border-color);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sq);
  transition: all 0.2s ease;
}
.contact-email:hover {
  border-color: var(--green-mid);
  background: var(--bg-color);
}
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .burger-btn { display: block; }
  .site-header { padding: 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
/* footer extras */
.footer__extras{margin-top:16px;}
.footer__extrasInner{display:flex;flex-wrap:wrap;gap:12px;align-items:flex-start;justify-content:space-between;}
.footer__social{display:flex;gap:10px;align-items:center;}
.footer-social{display:inline-flex;gap:8px;align-items:center;text-decoration:none;}
.footer-social__icon{display:block;}
.footer__poemWrap{max-width:520px;}
.footer-poem{opacity:0.9;font-size:0.95em;line-height:1.35;}
/* --- injected by logo step --- */
.brand{display:inline-flex;align-items:center;gap:10px}
.brand-logo{width:28px;height:28px;display:inline-block;flex:0 0 auto}
.brand-logo *{vector-effect:non-scaling-stroke}
/* --- /injected by logo step --- */
