:root{
  --green:#2e7d32; --green-d:#1b5e20; --leaf:#66bb6a;
  --bg:#fbfdf9; --card:#ffffff; --line:#e3ead9; --txt:#1f2a1c; --dim:#6b7d63;
}
*{ box-sizing:border-box; }
body{ margin:0; font-family:"Segoe UI","Malgun Gothic",system-ui,sans-serif;
      background:var(--bg); color:var(--txt); line-height:1.6; }
a{ color:var(--green); }
.wrap{ max-width:960px; margin:0 auto; padding:0 20px; }

/* hero — 농촌 풍경 일러스트 위에 텍스트 */
.hero{ position:relative; overflow:hidden; color:#fff; min-height:460px;
       display:flex; align-items:center; padding:40px 0; }
.hero-scene{ position:absolute; inset:0; width:100%; height:100%; }
.hero-scrim{ position:absolute; inset:0;
             background:linear-gradient(105deg, rgba(20,50,15,.62) 0%, rgba(20,50,15,.30) 45%, rgba(20,50,15,0) 70%); }
.hero-content{ position:relative; z-index:2; text-shadow:0 1px 8px rgba(0,0,0,.35); }
.hero h1{ margin:0 0 10px; font-size:34px; }
.hero p{ margin:0 0 14px; font-size:16px; opacity:.97; max-width:520px; }
.hero .en{ font-size:13px; opacity:.9; }
.hero-checks{ display:flex; flex-wrap:wrap; gap:8px 16px; margin:14px 0 22px; font-size:14px; font-weight:600; }
.cta{ display:inline-block; background:#fff; color:var(--green-d); font-weight:700;
      padding:13px 24px; border-radius:30px; text-decoration:none; margin-right:10px;
      box-shadow:0 4px 14px rgba(0,0,0,.18); }
.cta-ghost{ background:rgba(255,255,255,.16); color:#fff; border:1.5px solid rgba(255,255,255,.7);
            box-shadow:none; }

/* 농장/일자리 카드 사진 배너 (실사진 들어오면 background-image로 교체) */
.farm-photo{ height:120px; border-radius:10px 10px 0 0; margin:-18px -20px 12px; position:relative;
             display:flex; align-items:center; justify-content:center; overflow:hidden; background-size:cover; background-position:center; }
.farm-emoji{ font-size:52px; filter:drop-shadow(0 2px 4px rgba(0,0,0,.2)); }
.farm-photo .ret-tag{ position:absolute; right:10px; bottom:8px; background:rgba(0,0,0,.55); color:#fff;
                      font-size:12px; font-weight:700; padding:3px 9px; border-radius:14px; }

/* sections */
section{ padding:38px 0; border-bottom:1px solid var(--line); }
h2{ font-size:21px; margin:0 0 6px; }
.sub{ color:var(--dim); margin:0 0 20px; font-size:14px; }

/* timeline */
.timeline{ display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.timeline .stop{ background:#eef5e8; border:1px solid var(--line); border-radius:20px;
                 padding:6px 14px; font-size:13px; }
.timeline .stop.here{ background:var(--green); color:#fff; border-color:var(--green); font-weight:700; }
.timeline .arrow{ color:var(--dim); }

/* job cards */
.jobs{ display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:16px; }
.job{ background:var(--card); border:1px solid var(--line); border-radius:14px; padding:18px; }
.job h3{ margin:0 0 4px; font-size:17px; }
.job .crop{ color:var(--green-d); font-weight:600; }
.job .meta{ font-size:13px; color:var(--dim); margin:8px 0; }
.job .exp{ font-size:13px; background:#f4f8ef; border-radius:8px; padding:10px; margin:10px 0; }
.job .ev{ font-size:12px; color:var(--dim); }
.tags{ margin-top:10px; }
.tag{ display:inline-block; background:#eef5e8; color:var(--green-d); font-size:11.5px;
      padding:3px 9px; border-radius:12px; margin:2px 4px 2px 0; }
.job .apply{ display:block; text-align:center; margin-top:12px; background:var(--green);
             color:#fff; padding:9px; border-radius:8px; text-decoration:none; font-weight:600; }

/* 월 선택 칩 */
.chips{ display:flex; flex-wrap:wrap; gap:7px; }
.chip{ border:1px solid var(--line); background:#fff; border-radius:20px; padding:7px 15px;
       font-size:14px; cursor:pointer; }
.chip.on{ background:var(--green); color:#fff; border-color:var(--green); font-weight:700; }

/* 연간 캘린더 */
.calendar{ display:grid; grid-template-columns:repeat(12,1fr); gap:5px; }
.cal-m{ border-radius:8px; padding:8px 4px; text-align:center; font-size:11px; line-height:1.3;
        border:1px solid var(--line); background:#fff; }
.cal-m .mn{ font-weight:700; font-size:13px; }
.cal-m.h1{ background:#f4f8ef; }
.cal-m.h2{ background:#fff3e0; }
.cal-m.h3{ background:#ffe0b2; border-color:#ffb74d; }
.cal-m.now{ outline:2px solid var(--green); outline-offset:1px; }
@media(max-width:560px){ .calendar{ grid-template-columns:repeat(6,1fr); } }

/* demand table (analysis layer) */
table{ width:100%; border-collapse:collapse; font-size:14px; }
th,td{ padding:9px 10px; border-bottom:1px solid var(--line); text-align:left; }
th{ color:var(--dim); font-weight:600; }
.badge{ background:#fff3e0; color:#e65100; padding:2px 8px; border-radius:10px; font-size:12px; }

/* form */
form{ display:grid; gap:10px; max-width:460px; }
input,textarea,select{ padding:11px; border:1px solid var(--line); border-radius:8px; font-size:14px;
                        font-family:inherit; }
button{ background:var(--green); color:#fff; border:none; padding:12px; border-radius:8px;
        font-size:15px; font-weight:700; cursor:pointer; }
footer{ padding:28px 0; color:var(--dim); font-size:13px; }
