:root {
  --brand-yellow: #ffc107;
  --brand-black: #111111;
  --brand-gray: #f7f7f7;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial;
  color: var(--brand-black);
  background: #fff;
}

.header {
  background: var(--brand-yellow);
  color: var(--brand-black);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.header-left { display:flex; align-items:center; gap:16px; }
.header img { height: 96px; width: 96px; border-radius: 10px; }
.header .brand { font-weight: 800; font-size: 28px; letter-spacing: .5px; white-space: nowrap; }
.header nav a { margin-right: 14px; color: var(--brand-black); text-decoration: none; font-weight: 600; }
.header .social { display:flex; align-items:center; gap:12px; }
.icon-btn { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; background:#000; color:#fff; text-decoration:none; }
.icon-btn svg { width:22px; height:22px; fill:#fff; }

.container { max-width: 1080px; margin: 0 auto; padding: 20px; }

.hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center;
  background: var(--brand-gray); border-radius: 14px; padding: 24px;
}
.hero h1 { margin: 0 0 12px; }
.badge { display:inline-block; padding:4px 8px; background: var(--brand-yellow); border-radius: 6px; font-weight:700; }

.contact {
  background: #fff7cc; border: 1px solid #ffe08a; border-radius: 12px; padding: 16px;
}
.contact h3 { margin: 0 0 8px; }
.contact .row { display:flex; gap:10px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 16px; }
.card { background: white; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.card img { display: block; width: 100%; height: 160px; object-fit: cover; background: #ddd; }
.card .p { padding: 12px 14px; }
.footer { text-align:center; color:#666; padding: 22px; border-top:1px solid #eee; margin-top: 28px; }

.btn { display:inline-block; padding:10px 14px; border-radius:10px; border:1px solid #000; background: var(--brand-black); color:white; text-decoration:none; font-weight:700; cursor:pointer; }
.btn.secondary { background: transparent; color: var(--brand-black); }

input, textarea, select { width: 100%; padding: 10px 12px; border-radius: 10px; border:1px solid #ddd; }
form { display: grid; gap: 12px; }
h2 { margin-top: 28px; }
.small { color:#666; font-size: 12px; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .header nav { display:none; }
}
