/* Estetyka: beż + oliwka (w klimacie Twojej strony) */
:root{
  --bg: #F2E4CF;
  --card: #FEF5E7;
  --text: #3A3630;
  --muted:#6b645b;
  --accent:#38512F;
  --accent2:#607254;
  --border: rgba(56,81,47,.18);
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 10% 0%, #fff7ea 0%, var(--bg) 55%, #efe0c8 100%);
  color:var(--text);
}

.wrap{max-width:920px;margin:0 auto;padding:28px 18px 40px}

.hero{margin:10px 0 18px}
h1{font-size:clamp(28px,4vw,42px);margin:10px 0 10px;line-height:1.08;color:var(--accent)}
.lead{font-size:1.06rem;max-width:62ch;color:var(--muted);line-height:1.55}

.badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(96,114,84,.22), rgba(56,81,47,.12));
  border:1px solid var(--border);
  color:var(--accent);
  font-weight:700;
  letter-spacing:.2px;
}

.card{
  background:linear-gradient(180deg, #fff, var(--card));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

.card-soft{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  border:1px dashed rgba(56,81,47,.25);
  background:rgba(255,255,255,.55);
}

.card-soft h2{margin:0 0 10px;font-size:1.05rem;color:var(--accent)}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
@media (max-width:720px){ .grid{grid-template-columns:1fr} }

.field{display:flex;flex-direction:column;gap:6px}
label{font-weight:700;color:var(--accent)}
.req{color:#a13a2a;font-weight:800}
.hint{font-size:.88rem;color:var(--muted)}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(56,81,47,.22);
  background:rgba(255,255,255,.75);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px;resize:vertical}
input:focus,select:focus,textarea:focus{
  border-color: rgba(56,81,47,.55);
  box-shadow: 0 0 0 4px rgba(56,81,47,.12);
}
.sep{border:0;border-top:1px solid rgba(56,81,47,.14);margin:16px 0}

.checks{display:grid;gap:10px;margin:12px 0 6px}
.check{display:flex;gap:10px;align-items:flex-start;color:var(--muted);font-weight:600}
.check input{width:18px;height:18px;margin-top:2px}

.actions{display:flex;flex-direction:column;gap:10px;margin-top:10px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:100%;
  padding:14px 16px;
  border-radius:999px;
  border:1px solid rgba(56,81,47,.35);
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color:#fff;
  font-weight:800;
  text-decoration:none;
}
.btn:hover{filter:brightness(1.03)}
.mini{font-size:.92rem;color:var(--muted)}
.mini a{color:var(--accent);font-weight:800}

.errors{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(161,58,42,.35);
  background:rgba(255,240,238,.8);
  color:#7a2319;
  font-weight:700;
}

.hidden{display:none !important}
.foot{margin-top:14px}
.small{font-size:.9rem;color:var(--muted);line-height:1.5}
