:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #1f2328;
  --muted: #5f6b76;
  --accent: #0b6b6f;
  --accent-hover: #084f52;
  --border: #d9dee3;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  width: min(100% - 2rem, 960px);
  margin: 0 auto;
}

.site-header {
  padding: 2rem 0 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header h1 {
  margin: 0;
  font-size: 2rem;
}

.subtitle {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: var(--accent-hover);
}

.hero {
  padding: 5rem 0;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 650px;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.button {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
}

.button:hover {
  background: var(--accent-hover);
}

.section {
  padding: 4rem 0;
}

.alt {
  background: #eef4f4;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--accent-hover);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .hero {
    padding: 3.5rem 0;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .site-header h1 {
    font-size: 1.7rem;
  }
}