:root {
  color-scheme: light;
  --bg: #f7f8f4;
  --ink: #18201c;
  --muted: #5f6c64;
  --line: #d9dfd5;
  --accent: #2f8a5b;
  --accent-2: #f0b44c;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 16%, rgba(240, 180, 76, 0.2), transparent 28rem),
    linear-gradient(135deg, #f7f8f4 0%, #eef3f6 52%, #f8f6ee 100%);
  color: var(--ink);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(100%, 760px);
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(30, 38, 33, 0.1);
}

.mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #164835);
  color: #fff;
  font-size: 32px;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.summary {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.contact {
  display: inline-flex;
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 2px solid var(--accent-2);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 520px) {
  .page {
    padding: 18px;
  }

  .hero {
    padding: 28px;
  }

  .mark {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
}
