:root {
  --bg: #f4f2ec;
  --surface: #fffdf8;
  --text: #1f2a33;
  --muted: #5d6973;
  --primary: #0f6b5f;
  --primary-strong: #0a5148;
  --accent: #c88c2e;
  --border: #d8d2c6;
  --shadow: 0 20px 45px rgba(31, 42, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 85% 10%, #e7efe9 0%, var(--bg) 40%), var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(244, 242, 236, 0.9);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.cta-mini {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
}

.hero {
  padding: 72px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  font-family: "Source Serif 4", Georgia, serif;
  margin-top: 0;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 14px;
  line-height: 1.1;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
}

.btn-secondary {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface);
}

.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f7 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-card h2 {
  margin-bottom: 14px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.services {
  padding: 14px 0 56px;
}

.services h2 {
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.service-item h3 {
  margin-bottom: 10px;
}

.service-item p {
  margin: 0;
  color: var(--muted);
}

.contact {
  padding: 10px 0 70px;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-card p {
  color: var(--muted);
  max-width: 64ch;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 22px 0 34px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}
