:root {
  --bg: #f5f8f4;
  --panel: #ffffff;
  --ink: #1d2a25;
  --muted: #4f6158;
  --brand: #1f6d54;
  --brand-deep: #154735;
  --line: #d6dfd9;
  --shadow: 0 16px 36px rgba(24, 43, 35, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, #ffffff, transparent 40%),
    radial-gradient(circle at 95% 2%, #ecf4e9, transparent 30%),
    var(--bg);
  line-height: 1.55;
}

a {
  color: var(--brand-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(3px);
  background: rgba(245, 248, 244, 0.85);
  position: sticky;
  top: 0;
  z-index: 9;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 1.1rem;
  letter-spacing: 0.2px;
}

.brand span {
  font-size: 0.86rem;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.cta {
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-block;
  transition: transform 0.2s ease, background 0.2s ease;
  font-weight: 700;
}

.cta:hover {
  background: var(--brand-deep);
  text-decoration: none;
  transform: translateY(-1px);
}

.section {
  padding: 44px 0 24px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 12px;
}

h1 {
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 2.7rem);
}

h2 {
  font-family: "Merriweather", Georgia, serif;
}

p {
  margin: 0 0 14px;
}

.lead {
  color: #2f443c;
  font-size: 1.06rem;
  max-width: 64ch;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.card p,
.card li {
  color: #344941;
  font-size: 0.95rem;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.note {
  background: #fff4d8;
  border: 1px solid #ead6a0;
  color: #745723;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.84rem;
  display: inline-block;
}

.conversion {
  margin-top: 18px;
}

.conversion .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.conversion p {
  margin: 0;
}

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

footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
  color: #3f544b;
  font-size: 0.92rem;
}

footer strong {
  color: #293a33;
}

@media (max-width: 980px) {
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }
}

.hero {
  padding: 68px 0 46px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.secondary-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  background: #fff;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.hero-card .contact {
  padding: 18px;
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.section-title {
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
}

.future-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.future-links a {
  display: block;
  background: #fff;
  border: 1px dashed #b3c3ba;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
}

.why {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.badge {
  display: inline-block;
  margin-top: 10px;
  background: #fff4d8;
  border: 1px solid #ead6a0;
  color: #745723;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .hero,
  .why,
  .future-links {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }
}
