:root {
  --bg: #f5f5f3;
  --bg-alt: #ffffff;
  --accent: #0f9d58;
  --accent-soft: #d3efe1;
  --text-main: #1f1f1f;
  --text-muted: #6b6b6b;
  --border-subtle: #e0e0dd;
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.06);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: radial-gradient(circle at top left, #fafaf7 0, #f1f1ee 40%, #ecece8 100%);
  -webkit-font-smoothing: antialiased;
}

/* Layout */

.page {
  min-height: calc(100vh - 120px);
  padding: 72px 16px 40px;
  max-width: 960px;
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, #fafaf7 82%, rgba(255, 255, 255, 0.5) 18%);
  border-bottom: 1px solid rgba(224, 224, 221, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: #111;
  color: #fafafa;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-subtitle {
  font-weight: 500;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.08);
  color: #e2f5ec;
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav a {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), transform var(--transition-fast);
}

.nav a:hover {
  background: #ffffff;
  border-color: var(--border-subtle);
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav a.active {
  background: var(--accent-soft);
  color: #05502e;
  border-color: transparent;
}

/* Hero */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 20px;
  flex-direction: column;
  gap: 16px;
}

.hero-content {
  background: linear-gradient(135deg, #ffffff, #f7f7f3);
  border-radius: 24px;
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(224, 224, 221, 0.7);
  width: 100%;
}

.hero h1 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(224, 224, 221, 0.7);
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero kicker header */

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 157, 88, 0.06);
  border: 1px solid rgba(15, 157, 88, 0.16);
  margin-bottom: 10px;
}

.hero-kicker-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #05502e;
}

.hero-kicker-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

/* Sections */

.section {
  margin-top: 28px;
  padding: 18px 16px;
  border-radius: 20px;
  background: var(--bg-alt);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(224, 224, 221, 0.8);
}

.section-alt {
  background: #f9f9f6;
}

.section-cta {
  text-align: center;
}

.section-cta p {
  margin: 8px 0 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.section-header h1,
.section-header h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.section-body {
  font-size: 14px;
  color: var(--text-muted);
}

.about-image {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(224, 224, 221, 0.8);
  box-shadow: var(--shadow-soft);
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layout helpers */

.two-column {
  display: grid;
  gap: 14px;
}

@media (min-width: 760px) {
  .page {
    padding-top: 80px;
  }
  .hero {
    flex-direction: row;
    align-items: stretch;
  }
  .hero-content {
    padding: 26px 24px;
    flex: 1.1;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero-image {
    flex: 1;
    max-width: none;
  }
  .two-column {
    grid-template-columns: 1.1fr 1.1fr;
  }
}

/* Cards */

.cards {
  display: grid;
  gap: 12px;
}

@media (min-width: 760px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 14px 12px;
  border: 1px solid rgba(224, 224, 221, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* Timeline */

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #05502e;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step-content h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.step-content p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* Contact */

.contact-layout {
  display: grid;
  gap: 20px;
}

.contact-text p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-text a {
  color: var(--accent);
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

@media (min-width: 760px) {
  .contact-layout {
    grid-template-columns: 1.1fr 1.3fr;
    align-items: flex-start;
  }
}

/* Form */

.contact-form {
  background: #fafaf8;
  border-radius: var(--radius-md);
  padding: 14px 12px;
  border: 1px solid rgba(224, 224, 221, 0.9);
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 8px 9px;
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  background: #ffffff;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(15, 157, 88, 0.18);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 157, 88, 0.25);
}

.btn-primary:hover {
  background: #0a7a43;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  background: #f5f5f2;
}

/* Privacy */

.privacy-content {
  font-size: 14px;
  color: var(--text-muted);
}

.privacy-content h2 {
  font-size: 15px;
  margin-top: 16px;
  margin-bottom: 6px;
  color: var(--text-main);
}

.privacy-content p {
  margin: 4px 0 8px;
}

.privacy-content ul {
  padding-left: 18px;
  margin: 0 0 8px;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(224, 224, 221, 0.8);
  padding: 10px 16px 14px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 960px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.footer-meta a {
  color: var(--accent);
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

/* Small screens tweaking */

@media (max-width: 480px) {
  .site-header {
    padding-inline: 12px;
  }
  .logo {
    font-size: 14px;
    padding-inline: 10px;
  }
  .logo-subtitle {
    display: none;
  }
  .nav a {
    padding-inline: 8px;
    font-size: 12px;
  }
  .hero-content {
    padding: 18px 16px;
  }
  .hero h1 {
    font-size: 22px;
  }
}