:root {
  --bg: #fff9ec;
  --surface: #ffffff;
  --text: #232323;
  --muted: #575757;
  --brand: #ffcb66;
  --brand-dark: #f2b53f;
  --line: #f0e3ca;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 144px;
  width: auto;
  display: block;
}

.hero {
  padding: 3.5rem 1rem 2.25rem;
}

.hero-badge {
  display: inline-block;
  background: #fff1ce;
  border: 1px solid #ffe2a5;
  color: #855400;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin: 0;
}

h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.hero-sub {
  max-width: 62ch;
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: #2a1b00;
  border: 1px solid var(--brand-dark);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.content {
  margin: 1.4rem auto 3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.content h2,
.content h3 {
  line-height: 1.25;
}

.content a {
  color: #785100;
}

.site-footer {
  padding: 0 1rem 2rem;
  color: #5d5d5d;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

.social-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.footer-copy {
  display: block;
}

@media (max-width: 780px) {
  .brand-logo {
    height: 106px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
