:root {
  --bg: #fbfaf7;
  --fg: #101316;
  --muted: rgba(16, 19, 22, 0.72);
  --muted-2: rgba(16, 19, 22, 0.56);
  --stroke: rgba(16, 19, 22, 0.12);

  --green: #2ea36c;
  --green-2: #1e7f55;
  --sun: #ffb703;
  --berry: #ff4d8d;

  --shadow: 0 28px 70px rgba(16, 19, 22, 0.14);
  --shadow-soft: 0 18px 44px rgba(16, 19, 22, 0.12);
  --radius: 18px;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1200px 700px at 15% 0%, rgba(46, 163, 108, 0.18), transparent 60%),
    radial-gradient(900px 600px at 95% 15%, rgba(255, 77, 141, 0.16), transparent 58%),
    radial-gradient(900px 600px at 55% 90%, rgba(255, 183, 3, 0.12), transparent 62%),
    var(--bg);
  line-height: 1.6;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 250, 247, 0.72);
  border-bottom: 1px solid rgba(16, 19, 22, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(10px 10px at 25% 30%, rgba(255, 255, 255, 0.8), transparent 55%),
    conic-gradient(from 190deg, var(--green), var(--sun), var(--berry), var(--green));
  box-shadow: 0 12px 22px rgba(16, 19, 22, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.brand-text {
  font-size: 16px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(16, 19, 22, 0.12);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(46, 163, 108, 0.98), rgba(30, 127, 85, 0.98));
  color: white;
  border-color: rgba(0, 0, 0, 0.06);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(16, 19, 22, 0.14);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(16, 19, 22, 0.12);
}

.hero {
  padding: 64px 0 18px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--green-2);
  background: rgba(46, 163, 108, 0.11);
  border: 1px solid rgba(46, 163, 108, 0.18);
  padding: 8px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
}

h1 {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  font-size: clamp(34px, 4vw, 56px);
  margin: 0 0 12px;
}

h2 {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  font-size: 30px;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.lede {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 18px;
  max-width: 62ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 18px;
}

.section {
  padding: 42px 0;
}

.contact {
  padding-bottom: 56px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 19, 22, 0.14);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 19, 22, 0.08);
}

.contact-row:last-of-type {
  border-bottom: none;
}

.label {
  color: var(--muted-2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.value {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(16, 19, 22, 0.08);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-mark {
  width: 18px;
  height: 18px;
  border-radius: 8px;
  display: inline-block;
  margin-right: 10px;
  background: conic-gradient(from 210deg, var(--green), var(--sun), var(--berry), var(--green));
  border: 1px solid rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 44px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .contact-row {
    grid-template-columns: 92px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}
