:root {
  --bg: #eef8f6;
  --surface: #ffffff;
  --text: #1c2b2a;
  --muted: #536866;
  --primary: #1f9d8a;
  --primary-dark: #14695f;
  --accent: #3274d9;
  --border: #cfe6e2;
  --shadow: 0 20px 50px rgba(31, 108, 98, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(135deg, rgba(50, 116, 217, 0.12), transparent 32%),
    linear-gradient(315deg, rgba(31, 157, 138, 0.18), transparent 35%),
    var(--bg);
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
  gap: 48px;
  padding: 64px 0 40px;
}

.hero-intro {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.hero-intro h2 {
  margin: 0 0 6px;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
}

.hero-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-content,
.project {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-content {
  padding: 40px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.15;
}

.subtitle {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.25rem;
}

.button {
  display: inline-block;
  padding: 13px 22px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  background: var(--primary);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(31, 157, 138, 0.28);
}

.button:hover,
.button:focus {
  background: var(--primary-dark);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.project {
  margin: 16px 0 64px;
  padding: 36px;
}

.project p {
  max-width: 760px;
  color: var(--muted);
}

.project p:last-child {
  margin-bottom: 0;
}

.footer {
  padding: 24px 16px 36px;
  color: var(--muted);
  text-align: center;
}

.footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 32px;
  }

  .hero-intro {
    margin-bottom: 0;
  }

  .hero-content,
  .project {
    padding: 28px;
  }

  .hero-image {
    max-width: 420px;
    margin: 0 auto;
  }
}
