@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap');

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

:root {
  --green:      #2e7d32;
  --green-mid:  #388e3c;
  --green-icon: #43a047;
  --white:      #ffffff;
  --light-bg:   #f7f7f7;
  --light-gray: #e2e2e2;
  --text:       #1e1e1e;
  --text-mid:   #555;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAV */
nav { background: var(--white); border-bottom: 1px solid var(--light-gray); position: sticky; top: 0; z-index: 200; box-shadow: 0 1px 5px rgba(0,0,0,.07); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; padding: 8px 0; }
.logo-badge { background: var(--green); color: var(--white); font-weight: 800; font-size: 1rem; padding: 6px 11px; border-radius: 4px; line-height: 1.2; letter-spacing: .04em; }
.logo-badge small { display: block; font-size: .52rem; font-weight: 400; text-align: right; opacity: .8; }
.nav-links { display: flex; list-style: none; }
.nav-links a { display: block; padding: 21px 15px; color: #333; text-decoration: none; font-size: .88rem; border-bottom: 3px solid transparent; transition: color .2s, border-color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); border-bottom-color: var(--green); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.hamburger span { width: 25px; height: 2px; background: #333; border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--light-gray); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 28px; color: #333; text-decoration: none; font-size: .9rem; border-bottom: 1px solid var(--light-gray); }
.mobile-menu a:hover { color: var(--green); background: var(--light-bg); }

/* PAGE HERO */
.page-hero { background: var(--green); color: var(--white); padding: 52px 28px 48px; text-align: center; }
.page-hero h1 { font-family: 'Merriweather', serif; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; }
section.content { padding: 64px 28px; }

/* TYPOGRAPHY */
.sec-title { font-family: 'Merriweather', serif; font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 700; color: var(--text); margin-bottom: 10px; }
.sec-line { width: 44px; height: 3px; background: var(--green); margin-bottom: 28px; }
.sec-line.center { margin-left: auto; margin-right: auto; }
.sec-header { text-align: center; margin-bottom: 44px; }
.sec-header .sec-line { margin-left: auto; margin-right: auto; }
p { font-size: .93rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
p strong { color: var(--text); }
h2.sub { font-family: 'Merriweather', serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 2rem 0 .7rem; }
h2.sub:first-child { margin-top: 0; }
ul.dot { list-style: none; margin: 0 0 1rem; padding: 0; }
ul.dot li { padding: 7px 0; border-bottom: 1px solid var(--light-gray); font-size: .9rem; color: var(--text-mid); display: flex; gap: 10px; }
ul.dot li:last-child { border-bottom: none; }
ul.dot li::before { content: '▸'; color: var(--green); flex-shrink: 0; }

/* BUTTONS */
.btn-green { display: inline-block; background: var(--green); color: var(--white); padding: 12px 30px; border-radius: 50px; text-decoration: none; font-size: .9rem; font-weight: 600; transition: background .2s, transform .15s; }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-outline-green { display: inline-block; border: 2px solid var(--green); color: var(--green); padding: 10px 28px; border-radius: 50px; text-decoration: none; font-size: .9rem; font-weight: 600; transition: background .2s, color .2s; }
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* LIGHTBOX */
.lb-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 1000; align-items: center; justify-content: center; }
.lb-overlay.open { display: flex; }
.lb-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lb-close { position: absolute; top: 20px; right: 28px; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; }

/* FOOTER */
footer { background: var(--green); color: rgba(255,255,255,.75); padding: 30px 24px; text-align: center; }
.footer-logo { font-weight: 800; font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.footer-copy { font-size: .77rem; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
