:root {
  --green: #95c11f;
  --green-dark: #759b0b;
  --grey: #888485;
  --grey-dark: #4b4849;
  --text: #202426;
  --muted: #6f7072;
  --line: #e7e7e7;
  --bg: #ffffff;
  --soft: #f7f9f2;
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(32, 36, 38, .11);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 1rem; background: var(--green); color: #fff; padding: .75rem 1rem; border-radius: 999px; z-index: 100; }
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; min-width: 0; }
.brand-logo { width: min(330px, 58vw); height: auto; }
.nav-menu { display: flex; gap: 1.3rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-menu a { text-decoration: none; color: var(--grey-dark); font-weight: 700; font-size: .98rem; }
.nav-menu a:hover, .nav-menu a:focus { color: var(--green-dark); }
.nav-toggle { display: none; border: 0; border-radius: 999px; background: var(--green); color: #fff; padding: .72rem 1rem; font-weight: 800; }

.section { padding: clamp(74px, 10vw, 132px) 0; }
.hero { overflow: hidden; background: radial-gradient(circle at 80% 18%, rgba(149,193,31,.18), transparent 34%), linear-gradient(180deg, #fff 0%, #f9fbf4 100%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.eyebrow, .section-label { color: var(--green-dark); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 900; }
h1, h2, h3 { color: var(--grey-dark); }
h1 { font-size: clamp(2.75rem, 7.4vw, 5.85rem); line-height: .96; margin: .7rem 0 1.25rem; letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.55rem); line-height: 1.05; margin: .45rem 0 1rem; letter-spacing: -.035em; }
h3 { margin: 0 0 .7rem; font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.lead { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.34rem); max-width: 680px; }
.motto { display: inline-block; margin: 1rem 0 0; padding: .85rem 1rem; border-left: 5px solid var(--green); background: #fff; color: var(--grey-dark); box-shadow: 0 10px 35px rgba(32,36,38,.07); border-radius: 0 16px 16px 0; font-weight: 800; }
.motto span { color: var(--green-dark); }
.button-row { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: .85rem 1.25rem; border-radius: 999px; text-decoration: none; font-weight: 900; border: 2px solid transparent; cursor: pointer; font: inherit; }
.button.primary { background: var(--green); color: #fff; box-shadow: 0 13px 28px rgba(149,193,31,.28); }
.button.primary:hover { background: var(--green-dark); }
.button.secondary { background: #fff; color: var(--green-dark); border-color: rgba(149,193,31,.42); }
.button.secondary:hover { border-color: var(--green); box-shadow: 0 12px 30px rgba(32,36,38,.08); }
.hero-image { position: relative; }
.hero-image::before { content: ""; position: absolute; inset: 7% -4% 2% 14%; background: linear-gradient(135deg, rgba(149,193,31,.9), rgba(136,132,133,.22)); border-radius: 45% 55% 50% 50%; transform: rotate(-6deg); }
.image-frame { position: relative; border-radius: 36px; background: #fff; box-shadow: var(--shadow); overflow: hidden; border: 1px solid rgba(136,132,133,.18); }
.image-frame img { width: 100%; height: auto; object-fit: contain; }

.about, .events { background: #fff; }
.split { display: grid; grid-template-columns: .32fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.content-block { max-width: 790px; }
.highlight { margin-top: 1.4rem; font-weight: 900; color: var(--green-dark); font-size: 1.18rem; }
.cards-section { background: var(--soft); border-block: 1px solid var(--line); }
.section-heading { max-width: 780px; margin-bottom: 2.2rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-left: 6px solid var(--green); border-radius: var(--radius); padding: 1.55rem; box-shadow: 0 18px 50px rgba(32,36,38,.07); }
.card p { color: var(--muted); }
.text-link { color: var(--green-dark); text-decoration: none; font-weight: 900; border-bottom: 2px solid rgba(149,193,31,.35); }
.text-link:hover { border-color: var(--green); }

.contact { background: linear-gradient(180deg, #fff 0%, #f7f9f2 100%); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.privacy-note { color: var(--muted); padding: .9rem 1rem; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.contact-form { background: #fff; padding: clamp(1.25rem, 3vw, 2rem); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { display: grid; gap: .35rem; margin-bottom: 1rem; }
label { font-weight: 800; color: var(--grey-dark); }
input, textarea { width: 100%; border: 1px solid #cfcfcf; border-radius: 16px; padding: .9rem 1rem; font: inherit; color: var(--text); background: #fff; }
input:focus, textarea:focus { outline: 4px solid rgba(149,193,31,.22); border-color: var(--green); }
textarea { resize: vertical; }
.checkbox { display: flex; gap: .65rem; align-items: flex-start; color: var(--muted); font-weight: 500; margin: 1rem 0; }
.checkbox input { width: auto; margin-top: .35rem; accent-color: var(--green); }
.checkbox a { color: var(--green-dark); font-weight: 800; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .9rem; color: var(--muted); margin: .8rem 0 0; }

.site-footer { background: #f3f3f3; border-top: 1px solid var(--line); padding: 2rem 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 1.2rem; align-items: center; color: var(--muted); }
.footer-logo { width: min(250px, 65vw); }
.footer-inner nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-inner a { color: var(--grey-dark); font-weight: 800; text-decoration: none; }
.footer-inner a:hover { color: var(--green-dark); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.legal-page { background: #fff; }
.legal-card { max-width: 920px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius); padding: clamp(1.25rem, 4vw, 2.5rem); }
.legal-card ul { padding-left: 1.2rem; }
.legal-card .todo { background: #fff8d7; border-left: 5px solid #d4a800; padding: 1rem; border-radius: 0 14px 14px 0; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu { position: absolute; left: 20px; right: 20px; top: 88px; display: none; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1rem; box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .nav-menu a { display: block; padding: .7rem .4rem; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-image { order: 2; max-width: 560px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1140px); }
  .nav { min-height: 76px; }
  .brand-logo { width: min(245px, 58vw); }
  .nav-menu { top: 76px; }
  h1 { font-size: clamp(2.35rem, 14vw, 3.4rem); }
  .section { padding: 64px 0; }
  .button { width: 100%; }
}
