* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #292929;
  background: #FAF4F0;
}

.container {
  width: min(960px, 92%);
  margin: 0 auto;
}

.site-header { background: #ffffff; border-bottom: 1px solid #e5e8eb; }
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand-group { display: flex; align-items: center; gap: 16px; }
.logo-img { display: block; width: 40px; height: 40px; }
.brand-name { font-family: 'Public Sans', Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; font-weight: 700; font-size: 18px; }


.hero { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; padding: 32px 0 20px; }
@media (min-width: 900px) { .hero { grid-template-columns: 1.1fr 0.9fr; padding: 56px 0 36px; } }

.brand-row { display: flex; align-items: center; gap: 12px; }
.brand { margin: 0; font-size: 24px; }
.hero-title { margin: 8px 0 8px; font-size: 36px; line-height: 1.15; font-family: 'Amiri', Georgia, 'Times New Roman', serif; }
.hero-subtitle { margin: 0 0 16px; color: #475569; font-family: 'Mada', Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; }
.hero-actions { display: none; }
.hero-art { display: none; }
@media (min-width: 900px) { .hero-art { display: block; } }
.hero-svg, .hero-img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(41,80,77,0.15); background: #fff; }

main { padding: 40px 0; }

.card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) {
  .grid { grid-template-columns: 1fr 1fr; }
}

.field { display: flex; flex-direction: column; gap: 8px; }
label { font-weight: 600; }
input[type="text"], input[type="email"] {
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 16px;
}
input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.btn {
  margin-top: 12px;
  background: #29504D;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 120ms ease-in-out, box-shadow 120ms ease-in-out;
}
.btn:hover { background: #21413e; box-shadow: 0 2px 8px rgba(33,65,62,0.2); }
.btn:disabled, .btn[disabled] { opacity: 0.55; cursor: not-allowed; box-shadow: none; }
.btn-primary { text-decoration: none; display: inline-flex; align-items: center; background: #29504D; }



.hidden { display: none; }


