body {
  line-height: 1.6;
}

.hero { padding: 30px 0 16px; }

.hero-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.6px;
}

.lead {
  margin: 12px 0 0;
  color: #3f444a;
  max-width: 80ch;
}

section { padding: 12px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.card h2 {
  margin: 0 0 8px;
  font-size: 21px;
  letter-spacing: -.2px;
}

.card h3 {
  margin: 14px 0 6px;
  font-size: 16px;
  letter-spacing: -.1px;
}

.card p { margin: 0 0 10px; color: #2f343a; }

.owner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: start;
}

.owner img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .owner { grid-template-columns: 1fr; }
  .owner img { width: 100%; max-width: 240px; height: auto; }
}
