:root {
  --orange: #f28c28;
  --orange-dark: #d97706;
  --bg: #f9fafb;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

.wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 16px;
}

.card {
  width: 100%;
  max-width: 880px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
}

.logo {
  display: block;
  max-width: 320px;
  width: 100%;
  margin: 0 auto 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  text-align: center;
}

.lede {
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
  text-align: center;
}

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

h2 {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

p {
  margin: 0;
  line-height: 1.6;
}

.contact {
  font-weight: 500;
}

.footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}
