/* AdoZ Platform — Ambicja bez wypalenia
   Fonts: Lora (headings), Source Sans 3 (body)
   Colors:
   - Accent: #38512F
   - Text:   #3A3630
   - Page BG:#F2E4CF
   - Card:   #FEF5E7 -> #CBC2B4 (subtle gradient)
*/

:root{
  --accent:#38512F;
  --text:#3A3630;
  --bg:#F2E4CF;
  --cardA:#FEF5E7;
  --cardB:#CBC2B4;
  --muted: rgba(58,54,48,.72);
  --border: rgba(58,54,48,.18);
  --shadow: 0 18px 40px rgba(0,0,0,.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(56,81,47,.10), transparent 55%),
    radial-gradient(820px 460px at 85% 0%, rgba(56,81,47,.08), transparent 55%),
    linear-gradient(180deg, rgba(254,245,231,.55), rgba(242,228,207,1));
  font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.35;
}

a{ color:var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width:min(1040px, 92vw);
  margin: clamp(18px, 4vw, 44px) auto;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(56,81,47,.10);
  border: 1px solid rgba(56,81,47,.18);
  font-weight: 600;
  letter-spacing:.2px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}
.brand .dot{
  width:10px;height:10px;border-radius:99px;background:var(--accent);
  box-shadow: 0 0 0 6px rgba(56,81,47,.10);
}

h1,h2,h3{
  font-family: "Lora", Georgia, "Times New Roman", serif;
  margin: 0 0 10px 0;
  letter-spacing: -.2px;
}
h1{
  font-size: clamp(30px, 4.3vw, 48px);
  line-height:1.05;
}
.lead{
  margin: 0 0 18px 0;
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--muted);
}

.card{
  background: linear-gradient(135deg, rgba(254,245,231,1) 16%, rgba(203,194,180,1) 100%);
  border: 1px solid rgba(58,54,48,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card-inner{
  padding: clamp(16px, 3vw, 28px);
}

hr.sep{
  border:none;
  border-top:1px solid rgba(58,54,48,.14);
  margin: 18px 0;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 860px){
  .grid{ grid-template-columns: 1fr; }
}

.field label{
  display:block;
  font-weight: 700;
  margin-bottom: 6px;
}
.field .hint{
  margin-top:6px;
  font-size: 13px;
  color: rgba(58,54,48,.70);
}
.req{ color: var(--accent); }

input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(58,54,48,.22);
  background: rgba(255,255,255,.65);
  color: var(--text);
  outline: none;
  font-size: 15px;
}
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,.14);
}

.check{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  margin: 10px 0;
  font-size: 14px;
  color: rgba(58,54,48,.86);
}
.check input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.actions{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}

.btn{
  appearance:none;
  border:none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  letter-spacing: .2px;
  cursor:pointer;
  transition: transform .04s ease, filter .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--accent);
  color: #fff;
  min-width: 220px;
}
.btn-ghost{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(56,81,47,.25);
  color: var(--accent);
}

.footer-note{
  margin-top: 14px;
  font-size: 13px;
  color: rgba(58,54,48,.70);
}

.small{
  font-size: 13px;
  color: rgba(58,54,48,.70);
}

.kicker{
  font-weight:700;
  color: rgba(56,81,47,.85);
}

.video-shell{
  aspect-ratio: 16/9;
  width:100%;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(58,54,48,.16);
  background: rgba(255,255,255,.60);
}

.notice{
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(56,81,47,.20);
  background: rgba(56,81,47,.08);
  color: rgba(58,54,48,.92);
}


/* HERO IMAGE */
.hero-media{margin:18px 0 8px;}
.hero-media img{width:100%;max-height:420px;object-fit:cover;border-radius:18px;border:1px solid rgba(32,39,32,.18);box-shadow:0 18px 60px rgba(0,0,0,.12);display:block}
