:root {
  --ink: #1c2a24;
  --muted: #4b5b53;
  --accent: #e07b2d;
  --accent-dark: #bf641f;
  --leaf: #29513b;
  --cream: #f7f1e6;
  --mist: #eef2ea;
  --card: #ffffff;
  --shadow: 0 22px 50px rgba(17, 24, 39, 0.12);
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: radial-gradient(circle at top, #fff2da 0%, var(--cream) 40%, #f4f7ef 100%);
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: "Manrope", "Segoe UI", sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 42, 36, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-family: "Fraunces", "Times New Roman", serif;
  letter-spacing: 0.4px;
}

.logo {
  height: 52px;
}

.navbar nav {
  display: flex;
  gap: 26px;
}

.navbar nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  position: relative;
}

.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(41, 81, 59, 0.2);
  background: var(--card);
  color: var(--leaf);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(41, 81, 59, 0.12);
}

main {
  padding: 0 8% 80px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  padding: 70px 0 50px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(224, 123, 45, 0.18), transparent 70%);
  z-index: -1;
}

.hero-text {
  animation: rise 0.8s ease both;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-text h1 {
  font-size: clamp(36px, 4vw, 52px);
  margin: 14px 0 18px;
  line-height: 1.1;
  font-family: "Fraunces", "Times New Roman", serif;
}

.hero-text p {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 26px 0;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(224, 123, 45, 0.25);
}

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

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(41, 81, 59, 0.25);
  color: var(--leaf);
}

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

.hero-proof strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--leaf);
}

.hero-proof span {
  font-size: 13px;
  color: var(--muted);
}

.hero-media {
  position: relative;
  animation: rise 0.8s ease both;
  animation-delay: 0.15s;
}

.hero-media img {
  border-radius: var(--radius);
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--card);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.16);
  max-width: 240px;
}

.hero-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-family: "Fraunces", "Times New Roman", serif;
}

.hero-card p {
  font-size: 14px;
  color: var(--muted);
}

/* FEATURES */
.features {
  margin-top: 30px;
  padding: 30px 0 60px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-family: "Fraunces", "Times New Roman", serif;
}

.section-head p {
  color: var(--muted);
  max-width: 360px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.feature-card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(28, 42, 36, 0.08);
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.06);
  animation: rise 0.8s ease both;
}

.feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-family: "Fraunces", "Times New Roman", serif;
}

.feature-card p {
  color: var(--muted);
}

/* CTA */
.cta {
  margin-top: 20px;
  padding: 60px 50px;
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(135deg, #1f4f35 0%, #2a6a46 45%, #18573c 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(24, 87, 60, 0.35);
}

.cta h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-family: "Fraunces", "Times New Roman", serif;
  margin-bottom: 10px;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
}

.cta .btn.primary {
  margin-top: 22px;
  background: #f3b24e;
  color: #1c2a24;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  color: var(--muted);
  font-size: 14px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .navbar {
    flex-wrap: wrap;
    gap: 16px;
  }

  .navbar nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
  }

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

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 50px 28px;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 18px 6%;
  }

  main {
    padding: 0 6% 70px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }
}
