:root {
  --color-green: #16a34a;
  --color-yellow: #fde047;
  --color-white: #ffffff;
  --color-dark: #064e3b;
  --radius-lg: 1.5rem;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Georgia", serif;
  --spacing-fluid: clamp(1.5rem, 5vw, 4rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand-name, .footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  padding: clamp(1rem, 3vw, 2rem);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-dark);
}

.brand-link svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: var(--color-green);
}

.brand-name {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-cta {
  display: inline-block;
  background-color: var(--color-yellow);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-green);
  transition: all 0.2s ease;
}

.btn-cta:hover {
  background-color: var(--color-green);
  color: var(--color-white);
}

.burger-btn {
  background: var(--color-white);
  border: 2px solid var(--color-green);
  color: var(--color-dark);
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.burger-btn:hover {
  background: var(--color-yellow);
}

.burger-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Bottom Sheet Nav */
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 2px solid var(--color-green);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2000;
  box-shadow: 0 -10px 40px rgba(6, 78, 59, 0.1);
}

.bottom-sheet.open {
  transform: translateY(0);
}

.bottom-sheet-content {
  padding: var(--spacing-fluid);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 2px solid var(--color-green);
  color: var(--color-dark);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.close-btn:hover {
  background: var(--color-yellow);
}

.close-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-green);
}

/* Footer */
.site-footer {
  background-color: var(--color-green);
  color: var(--color-white);
  padding: var(--spacing-fluid);
  margin-top: 4rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand .footer-title {
  font-size: 2rem;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}

.footer-brand .tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--color-yellow);
}

.contact-link svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-legal {
    justify-content: flex-end;
  }
}

.footer-legal a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.footer-legal a:hover {
  opacity: 1;
  border-bottom-color: var(--color-yellow);
  color: var(--color-yellow);
}
/* 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 --- */
@media (max-width: 768px) {
  .footer-legal {
    justify-content: flex-end;
  }
  .btn-cta {
   display: none;
  }
}