:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface2:#f6faf7;
  --text:#0f1b14;
  --muted:#4c5f55;
  --border:#dbe7df;

  /* Naturalma-inspired greens */
  --brand:#2f7d32;
  --brand2:#8bc34a;
  --brand3:#1f5f2a;

  --shadow:0 10px 28px rgba(16, 24, 40, 0.08);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background:
    radial-gradient(1000px 450px at 20% -10%, rgba(139,195,74,.18), transparent 60%),
    radial-gradient(900px 420px at 90% 0%, rgba(47,125,50,.12), transparent 55%),
    var(--bg);
}
a{color:var(--brand);text-decoration:none}
a:hover{color:var(--brand3);text-decoration:underline}

.container{max-width:980px;margin:0 auto;padding:26px 18px 56px}

.header{
  position:sticky;top:0;z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.75);
  border-bottom:1px solid rgba(219,231,223,.85);
}
.header-inner{max-width:980px;margin:0 auto;padding:14px 18px;display:flex;align-items:center;justify-content:space-between;gap:16px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:34px;width:auto;display:block}
.nav{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
@media (max-width: 520px){
  .header-inner{padding:10px 12px}
  .brand img{height:28px}
  .badge{padding:7px 10px;font-size:12px}
}

.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.8);
  color:var(--muted);
  font-size:13px;
}
.badge:hover{border-color:rgba(47,125,50,.35);text-decoration:none}

.card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.h1{font-size:clamp(26px, 3.2vw, 34px);letter-spacing:-.2px;line-height:1.12;margin:0 0 10px}
.h2{font-size:clamp(16px, 2.2vw, 18px);margin:22px 0 10px}
.p{color:var(--muted);line-height:1.65;margin:0 0 12px}

.kv{display:grid;grid-template-columns:1fr;gap:12px;margin-top:12px}
@media (min-width: 800px){
  .kv{grid-template-columns:1fr 1fr}
}

input,button,textarea{font:inherit}
.form{display:grid;gap:12px;margin-top:12px}
.field{display:grid;gap:6px}
label{font-size:13px;color:var(--muted)}
input{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(246,250,247,.9);
  color:var(--text);
  outline:none;
}
input:focus{border-color:rgba(47,125,50,.5);box-shadow:0 0 0 4px rgba(47,125,50,.12)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(47,125,50,.25);
  background: linear-gradient(180deg, rgba(139,195,74,.38), rgba(47,125,50,.22));
  color: #0b1a11;
  cursor:pointer;
  font-weight:700;
}
.btn:hover{border-color:rgba(47,125,50,.45)}
.btn:disabled{opacity:.6;cursor:not-allowed}

.hr{height:1px;background:var(--border);margin:18px 0}
.small{font-size:12.5px;color:var(--muted)}

.note{
  border:1px solid rgba(47,125,50,.18);
  background: rgba(47,125,50,.06);
  padding:12px 14px;
  border-radius:14px;
}
.note.error{
  border-color: rgba(220,38,38,.25);
  background: rgba(220,38,38,.06);
}

.hidden{display:none}

.footer{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:12px;
}

/* Article typography */
article.card{padding:22px}
article.card ul{margin:10px 0 0;padding-left:18px;color:var(--muted)}
article.card strong{color:var(--text)}

.hero{
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(139,195,74,.12), rgba(255,255,255,.7));
  box-shadow: var(--shadow);
  padding: 14px;
}
/* Show the full image smaller, centered above the content */
.hero img{
  display:block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(219,231,223,.9);
  background: #fff;
}
.hero .caption{padding:10px 6px 0;font-size:12px;color:var(--muted);text-align:center}
@media (max-width: 520px){
  .hero{padding:10px}
  .hero img{width: 100%}
  .hero .caption{display:none}
}
