:root {
  --bg: #eff5ed;
  --panel: rgba(255,255,255,.82);
  --ink: #172217;
  --muted: #667062;
  --green: #2f7d42;
  --green-dark: #205b31;
  --line: rgba(24,35,24,.10);
  --shadow: 0 24px 70px rgba(32,91,49,.18);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 10%, rgba(94,164,73,.28), transparent 32rem), radial-gradient(circle at 90% 90%, rgba(85,127,67,.24), transparent 28rem), var(--bg);
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1040px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0; }
.login-card, .app { border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(22px); border-radius: 30px; box-shadow: var(--shadow); }
.login-card { width: min(430px, 100%); margin: 8vh auto 0; padding: 30px; text-align: center; }
.logo { width: 92px; height: 92px; object-fit: cover; border-radius: 24px; box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.eyebrow { margin: 0 0 8px; color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 12px; font-size: clamp(2.1rem, 6vw, 4.8rem); line-height: .9; letter-spacing: -.075em; }
h2 { margin-bottom: 8px; font-size: 1.08rem; }
.muted, .hero p, .page-head p, .card p, .info-card span { color: var(--muted); line-height: 1.6; }
.form { display: grid; gap: 14px; margin-top: 24px; text-align: left; }
label { display: grid; gap: 7px; color: #3f4a3d; font-weight: 700; font-size: .88rem; }
input:not(.nav-toggle) { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 14px 15px; font: inherit; background: rgba(255,255,255,.8); outline: none; }
input:focus { border-color: rgba(47,125,66,.55); box-shadow: 0 0 0 4px rgba(47,125,66,.12); }
button { border: 0; border-radius: 16px; padding: 14px 18px; background: var(--green); color: white; font: inherit; font-weight: 800; cursor: pointer; }
.error { min-height: 1.2em; margin: 0; color: #b42318; font-weight: 700; font-size: .9rem; text-align: center; }
.app { overflow: hidden; }
.topbar { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 14px; }
.brand small { display: block; color: var(--muted); font-size: .82rem; font-weight: 600; }
.menu { display: flex; align-items: center; gap: 8px; }
.menu a { border-radius: 999px; padding: 10px 14px; color: var(--green-dark); font-weight: 800; }
.menu a:hover, .menu a.active { background: rgba(47,125,66,.12); }
.menu .logout { background: var(--green); color: #fff; }
.nav-toggle, .hamburger { display: none; }
.hero, .page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: 42px 32px 28px; }
.hero > div:first-child, .page-head { display: block; }
.season-pill { flex: none; border: 1px solid var(--line); border-radius: 999px; padding: 12px 16px; background: rgba(255,255,255,.62); font-weight: 800; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0 18px 18px; }
.card, .info-card, figure { border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.68); }
.card { min-height: 168px; padding: 20px; }
.card.wide { grid-column: span 3; min-height: 150px; background: linear-gradient(135deg, rgba(47,125,66,.13), rgba(255,255,255,.72)); }
.tag { display: inline-flex; margin-bottom: 16px; border-radius: 999px; padding: 6px 10px; background: rgba(47,125,66,.12); color: var(--green-dark); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0 18px 18px; }
figure { margin: 0; overflow: hidden; }
.photo { display: grid; place-items: center; aspect-ratio: 4 / 3; font-size: clamp(3rem, 10vw, 5rem); background: linear-gradient(135deg, rgba(47,125,66,.16), rgba(255,255,255,.7)); }
figcaption { padding: 14px 16px 16px; font-weight: 800; }
.list-cards { display: grid; gap: 12px; padding: 0 18px 18px; }
.info-card { display: grid; grid-template-columns: 180px 1fr; gap: 16px; padding: 18px; }
.info-card strong { color: var(--green-dark); }
@media (max-width: 760px) {
  .shell { width: min(100% - 20px, 960px); padding: 10px 0; }
  .login-card { margin-top: 3vh; padding: 22px; border-radius: 24px; }
  .topbar { align-items: center; }
  .hamburger { display: grid; gap: 4px; cursor: pointer; padding: 10px; border-radius: 14px; background: rgba(47,125,66,.10); }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--green-dark); }
  .menu { display: none; position: absolute; left: 12px; right: 12px; top: calc(100% + 8px); z-index: 5; padding: 10px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: 0 18px 50px rgba(32,91,49,.18); }
  .nav-toggle:checked ~ .menu { display: grid; }
  .menu a { width: 100%; }
  .hero, .page-head { display: block; padding: 30px 20px 20px; }
  .season-pill { display: inline-flex; margin-top: 8px; }
  .grid, .photo-grid { grid-template-columns: 1fr; padding: 0 10px 10px; }
  .card.wide { grid-column: auto; }
  .list-cards { padding: 0 10px 10px; }
  .info-card { grid-template-columns: 1fr; gap: 6px; }
}
