* {
  box-sizing: border-box;
}

:root {
  --green: #285f45;
  --deep-green: #1f4b36;
  --pale-cream: #f4f8f5;
  --cream: #e8f2ed;
  --gold: #2f6b57;
  --text: #26332d;
  --soft-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--pale-cream);
  line-height: 1.6;
}

.topbar {
  min-height: 118px;
  background: rgba(251, 248, 239, 0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 42px;
  gap: 28px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  position: relative;
  text-decoration: none;
  color: var(--green);
  display: inline-block;
  min-width: 390px;
}

.brand-small {
  display: block;
  color: #a7a7a7;
  font-size: 1.35rem;
  line-height: 1;
  margin-left: 58px;
}

.brand-main {
  display: inline-block;
  font-weight: 800;
  font-size: 2.65rem;
  line-height: 0.95;
  letter-spacing: -1px;
}

.tree-small {
  font-size: 3rem;
  vertical-align: middle;
  margin-left: 16px;
  filter: saturate(0.8);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 1rem;
}

.nav a {
  color: #141414;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.hero {
  min-height: 660px;
  background:
    linear-gradient(90deg, rgba(31, 75, 54, 0.98) 0%, rgba(31, 75, 54, 0.94) 42%, rgba(40, 95, 69, 0.92) 100%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08), transparent 30%);
  color: white;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  padding: 70px 72px 58px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 38%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018), rgba(255,255,255,0.018) 1px, transparent 1px, transparent 7px);
  pointer-events: none;
}

.hero-text {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6.5vw, 5.8rem);
  line-height: 0.95;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 2px rgba(0,0,0,0.25);
}

.hero h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.2vw, 3.55rem);
  line-height: 1.05;
  margin: 8px 0 24px;
  font-weight: 500;
  color: white;
  text-shadow: 0 2px 2px rgba(0,0,0,0.25);
}

.gold-line {
  width: 88px;
  height: 3px;
  background: var(--gold);
  margin: 0 0 22px;
}

.tagline {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: #e6c25b;
  font-size: 1.55rem;
}

.hero p {
  font-size: 1.18rem;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 17px 30px;
  border-radius: 4px;
  color: white;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, #d1aa45, #a77a1e);
}

.btn-outline {
  border: 1.5px solid white;
  background: rgba(255,255,255,0.04);
}

.hero-tree {
  color: rgba(255, 255, 255, 0.10);
  justify-self: center;
  width: min(520px, 95%);
  position: relative;
  z-index: 1;
}

.hero-tree svg {
  display: block;
  width: 100%;
  height: auto;
}

.feature-strip {
  background: var(--pale-cream);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 60px 44px;
  text-align: center;
}

.feature-strip article {
  max-width: 260px;
  margin: 0 auto;
}

.icon {
  width: 72px;
  height: 72px;
  background: radial-gradient(circle at 30% 25%, #3d7655, var(--deep-green));
  color: white;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.12), 0 4px 12px rgba(0,0,0,0.12);
}

.feature-strip h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--deep-green);
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.feature-strip p {
  margin: 0;
  color: #555;
  font-size: 0.98rem;
}

.content-section {
  max-width: 1100px;
  margin: 46px auto;
  padding: 38px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.content-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--deep-green);
  font-size: 2.1rem;
  margin: 0 0 14px;
}

.section-intro {
  max-width: 780px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.price-card {
  border: 1px solid #c8d8cf;
  border-radius: 16px;
  padding: 28px;
  background: #e8f2ed;
  position: relative;
}

.price-card.featured {
  border: 3px solid #6f947f
    background:  #dce8df;
}

.price-card h3 {
  color: var(--deep-green);
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.price {
  color: var(--green);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 6px 12px;
  border-radius: 99px;
  font-weight: bold;
  margin-bottom: 12px;
}

.note {
  font-style: italic;
  color: #555;
}

.additional,
.important {
  background: var(--cream);
  border-radius: 14px;
  padding: 24px;
  margin-top: 24px;
}

.additional h3,
.important h3 {
  color: var(--deep-green);
  margin-top: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
}

.steps p {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0;
}

.email a {
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 800;
}

footer {
  background: var(--deep-green);
  color: white;
  text-align: center;
  padding: 28px 20px;
  margin-top: 60px;
}

@media (max-width: 1050px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 58px 34px;
  }

  .hero-tree {
    position: absolute;
    right: -90px;
    bottom: -20px;
    width: 430px;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .topbar {
    padding: 18px 22px;
  }

  .brand {
    min-width: 0;
  }

  .brand-small {
    font-size: 1rem;
    margin-left: 24px;
  }

  .brand-main {
    font-size: 2rem;
  }

  .tree-small {
    font-size: 2rem;
    margin-left: 8px;
  }

  .nav {
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
    padding: 44px 24px;
  }

  .hero-tree {
    opacity: 0.35;
  }

  .btn {
    width: 100%;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .content-section {
    margin: 28px 18px;
    padding: 26px;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}
.tree-small {
    height: 150px;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
}
