@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
  --green:      #4E9D2D;
  --green-dark: #4A7729;
  --green-pale: #eef7e8;
  --white:      #ffffff;
  --off:        #f7f6f3;
  --rule:       #ddd9d3;
  --text:       #1a1a18;
  --muted:      #5c5c58;
  --light:      #8c8c88;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans:  'Source Sans 3', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
a, button { transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease; }
body { font-family: var(--sans); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--green-dark); border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 80px; display: flex; align-items: center;
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: 0.01em; display: flex; align-items: center; gap: 14px; line-height: 1.2; }
.logo-mark { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; border-radius: 4px; background: rgba(255,255,255,0.92); padding: 4px; }
.logo-mark img { width: 46px; height: 46px; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,0.65); text-decoration: none; padding: 0 20px; height: 80px; display: flex; align-items: center; border-bottom: 3px solid transparent; transition: color 0.2s ease, border-color 0.2s ease; }
.nav-links a:hover { color: var(--white); border-bottom-color: rgba(255,255,255,0.4); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--white); }
.nav-cta { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); background: var(--green); padding: 0 24px; height: 44px; display: flex; align-items: center; text-decoration: none; transition: background 0.15s; white-space: nowrap; }
.nav-cta:hover { background: var(--green-dark); filter: brightness(1.2); }

/* ── WRAPPER ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── PAGE HERO ── */
.page-hero { margin-top: 60px; position: relative; background: var(--green-dark); min-height: 420px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: var(--green-dark); }
.page-hero-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.35) 100%); pointer-events:none; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; display: block; }
.page-hero-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.page-hero-ph span { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.page-hero-content { position: relative; z-index: 3; padding: 56px 0; width: 100%; }
.page-hero-content .wrap { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; text-align: left; }
.page-hero-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,1); text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.page-hero-content h1 { font-family: var(--sans); font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 700; color: #ffffff; line-height: 1.1; max-width: 700px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.page-hero-content p { font-size: 1.05rem; font-weight: 400; color: #ffffff; max-width: 580px; line-height: 1.7; text-shadow: 0 1px 6px rgba(0,0,0,0.45); }

/* ── SECTIONS ── */
.sec { padding: 80px 0; }
.sec-sm { padding: 56px 0; }
.sec-green { background: var(--green-pale); }
.sec-dark { background: var(--green-dark); }
.sec-off { background: var(--off); }
.sec-border { border-top: 1px solid var(--rule); }

.sec-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
h2.sec-title { font-family: var(--sans); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 20px; }
h2.sec-title-lg { font-size: clamp(2.2rem, 3.5vw, 3.2rem); }
h2.sec-title-white { color: var(--white); }
.sec-intro { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 640px; }
.sec-intro-white { color: rgba(255,255,255,0.7); }

/* ── BUTTONS ── */
.btn { font-family: var(--sans); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; height: 46px; padding: 0 24px; transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease; cursor: pointer; border: none; white-space: nowrap; }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--off); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--white); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--rule); }
.divider-green { height: 4px; background: var(--green); }

/* ── FOOTER ── */
footer { background: var(--green-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.f-about .f-logo { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 8px; display: block; letter-spacing: 0.01em; }
.f-about p { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 260px; }
.f-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col a { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.15s; }
.f-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 12px; }
.f-copy { font-size: 0.75rem; color: rgba(255,255,255,0.65); }
.f-reg { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .wrap { padding: 0 20px; }
  .page-hero-content { padding: 48px 0; }
  .sec { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .f-about { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .f-about { grid-column: span 1; }
}
