:root {
  --bg: #faf7f2;
  --bg-alt: #f1ece2;
  --text: #26241f;
  --muted: #6b6558;
  --accent: #1f7a6c;
  --accent-dark: #145349;
  --border: #e2dbcb;
  --card-bg: #ffffff;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 800; line-height: 1.2; margin: 0 0 16px; }

h2 {
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 40px;
}

h3 { font-size: 1.15rem; margin-bottom: 10px; }

p { margin: 0 0 16px; color: var(--muted); }

a { color: var(--accent-dark); }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  transition: background 0.15s ease;
}

.btn-primary:hover { background: var(--accent-dark); }

/* Header */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
  flex-wrap: wrap;
}

.brand { display: flex; flex-direction: column; }
.brand-name { font-weight: 800; font-size: 1.1rem; }
.brand-tag { font-size: 0.85rem; color: var(--muted); }

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover { color: var(--accent-dark); }

.btn-header { padding: 10px 20px; font-size: 0.9rem; }

/* Hero */

.hero {
  padding: 90px 0 70px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Services */

.services { background: var(--bg-alt); padding: 70px 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

/* Work */

.work { padding: 70px 0; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.work-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--card-bg);
}

.work-link {
  font-weight: 700;
  text-decoration: none;
}

.work-note {
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
}

/* How it works */

.how { background: var(--bg-alt); padding: 70px 0; }

.how-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 680px;
  margin: 0 auto;
}

.how-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.how-list li:last-child { margin-bottom: 0; }

.how-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Contact */

.contact { padding: 80px 0; text-align: center; }

.contact-inner { max-width: 560px; margin: 0 auto; }

.contact-inner h2 { margin-bottom: 20px; }

.contact-address { margin-top: 20px; font-size: 1.1rem; font-weight: 700; }
.contact-address a { text-decoration: none; }

.contact-note { font-size: 0.9rem; }

/* Footer */

.site-footer {
  background: var(--accent-dark);
  color: #f1ece2;
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a { color: #fff; }

/* Responsive */

@media (max-width: 780px) {
  .header-inner { justify-content: center; text-align: center; }
  .site-nav { order: 3; width: 100%; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .btn-header { order: 2; }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 1.9rem; }
  .service-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  h2 { font-size: 1.5rem; }
}
