/* ---------- Base ---------- */
:root{
  --cream:#e8dbc1;
  --ink:#111;
  --muted:#2b2b2b;
  --green:#6fb08a;
  --green-d:#5aa579;
  --radius:14px;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--ink);
  background:var(--cream);
}

/* ---------- Header photo strip (separate from content) ---------- */
.forest-header {
  width: 100%;
  aspect-ratio: 16 / 5;       /* controls height based on width */ 
  background-size: cover;
  background-position: center;
}
/* ---------- Content area ---------- */
.content{
  width:min(980px, 94vw);
  margin:0 auto;
  padding: clamp(18px, 3vw, 28px) 0 56px;
}

/* Brand */
.brand{
  margin: 18px 12px 8px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: clamp(10px, 2.5vw, 18px);
  font-family:'Bungee', system-ui, sans-serif;
  letter-spacing: 2px;
  font-size: clamp(32px, 4.2vw, 56px);
}
.brand-globe{
  display:grid;
  place-items:center;
  width: clamp(58px, 7vw, 86px);
  height: clamp(58px, 7vw, 86px);
  border-radius:50%;
  background:#f6f6f6;
  box-shadow: 0 8px 22px rgba(0,0,0,.25), inset 0 2px 6px rgba(0,0,0,.22);
  font-size: 0.9em; /* emoji scales inside */
}

/* Copy */
.intro, .lead{ text-align:center; }
.intro{ font-size: clamp(18px, 2.1vw, 22px); line-height:1.45; }
.lead{ font-size: clamp(18px, 2.2vw, 24px); margin-top: 10px; }
.intro strong{ font-weight:800; }
.lead em{ font-style: italic; font-weight:600; }

/* Form */
.form{
  margin-top: 14px;
  display:grid;
  gap: clamp(14px, 2.4vw, 22px);
}
.field{ display:grid; gap:8px; }
.label{
  font-family:'Bungee', system-ui, sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"]{
  width:100%;
  background:#fff;
  border:3px solid #000;
  border-radius: var(--radius);
  padding: 18px 16px;
  font-size: clamp(18px, 2.1vw, 22px);
  outline:none;
}
input:focus{ border-color:#111; box-shadow:0 0 0 4px rgba(0,0,0,.05); }

.btn{
  justify-self:center;
  margin-top: 4px;
  padding: 14px 20px;
  border:0;
  border-radius: 10px;
  background: var(--green);
  color:#0b2417;
  font-weight:800;
  font-size: clamp(16px, 2.1vw, 18px);
  cursor:pointer;
  box-shadow:0 10px 20px rgba(0,0,0,.18);
  line-height:1.15;
}
.btn:hover{ background: var(--green-d); }
.btn:active{ transform: translateY(1px); }

.hidden{
	display: none;
}

/* ---------- Responsive tweaks ---------- */
@media (min-width: 800px){
  .forest-header{ height: 320px; }
  .content{ padding-bottom: 70px; }
}
