:root {
  --bg: #ffffff;
  --bg-alt: #f3f4f6;
  --primary: #2e7d32;
  --primary-hover: #1b5e20;
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-accent: "Georgia", "Times New Roman", serif;
  --radius-pill: 9999px;
  --radius-block: 16px;
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-stretch: condensed;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-hover);
}

/* Header Layout */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bg-alt);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.desktop-nav {
  display: none;
}

.header-cta {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0 0.5rem;
  background: transparent;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.125rem;
}

.mobile-nav a.btn {
  color: #fff;
  width: fit-content;
}

@media(min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
  .desktop-nav {
    display: flex;
    gap: 2.5rem;
    order: 1;
    align-items: center;
  }
  .desktop-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: color 0.2s;
  }
  .desktop-nav a:hover {
    color: var(--primary);
  }
  .header-cta {
    display: block;
    order: 2;
    margin-left: auto;
    margin-right: 2.5rem;
  }
  .brand-logo {
    order: 3;
  }
}

/* Footer Layout */
.site-footer {
  background: var(--bg-alt);
  padding: 5rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
  }
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-brand p.tagline {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.footer-links nav, .footer-legal nav {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-links a, .footer-legal a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover, .footer-legal a:hover {
  color: var(--primary);
}

.footer-contact p {
  margin: 0 0 1rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Structural Page Blocks */
.hero-half {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  min-height: 50vh;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-alt);
}

@media(min-width: 768px) {
  .hero-half {
    flex-direction: row;
    align-items: center;
  }
  .hero-half .hero-img {
    width: 50%;
    order: 1;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    background: var(--bg-alt);
  }
  .hero-half .hero-text {
    width: 50%;
    order: 2;
    padding: 5rem;
  }
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 32ch;
}

.block-flat {
  background: var(--bg);
  border-radius: var(--radius-block);
  padding: 4rem;
}

.block-shadow {
  background: var(--bg);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-block);
  padding: 4rem;
  margin: 2rem 0;
}

.badge-accent {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--bg-alt);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
/* 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;}
