:root {
  --green-dark: #26351f;
  --green: #314d2f;
  --green-soft: #6f8f45;
  --cream: #f5f1e6;
  --tan: #e6d6a8;
  --brown: #8b4a20;
  --gold: #eebc55;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--green-dark);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(135deg, var(--green), var(--green-soft));
  color: var(--white);
  padding: 18px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.logo img {
  width: 44px;
  height: 44px;
}

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

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  opacity: 0.95;
}

.site-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  min-height: 680px;
  padding: 86px 8%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.6), transparent 28%),
    linear-gradient(135deg, var(--cream) 0%, var(--tan) 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  margin-bottom: 22px;
}

.hero-text {
  font-size: 22px;
  max-width: 660px;
  margin-bottom: 32px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.button.primary {
  background: var(--brown);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
}

.hero-visual {
  background: rgba(255,255,255,0.8);
  padding: 34px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.section {
  padding: 82px 8%;
}

.section-heading {
  max-width: 830px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.cta-section h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-heading p,
.cta-section p {
  font-size: 20px;
}

.steps-grid,
.benefits-grid,
.styles-grid {
  display: grid;
  gap: 24px;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefits-grid,
.styles-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.benefit-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.09);
}

.step-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.card h3,
.benefit-card h3,
.style-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.green-section {
  background: var(--green);
  color: var(--white);
}

.green-section .eyebrow,
.light .eyebrow {
  color: var(--gold);
}

.light h2,
.light p {
  color: var(--white);
}

.benefit-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

.icon {
  font-size: 42px;
  margin-bottom: 14px;
}

.style-card {
  min-height: 260px;
  border-radius: 28px;
  padding: 30px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}

.coastal {
  background: linear-gradient(135deg, #286f8f, #7fc4c0);
}

.barn {
  background: linear-gradient(135deg, #8d2f24, #d37b4c);
}

.garden {
  background: linear-gradient(135deg, #365c2a, #95b75d);
}

.cta-section {
  margin: 70px 8%;
  padding: 54px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--brown), #cf8b3a);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
}

.cta-section .eyebrow,
.cta-section h2,
.cta-section p {
  color: var(--white);
}

.site-footer {
  background: #1f281b;
  color: var(--white);
  text-align: center;
  padding: 32px 8%;
}

@media (max-width: 980px) {
  .hero,
  .steps-grid,
  .benefits-grid,
  .styles-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

  .cta-section .button {
    margin-top: 24px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .hero {
    padding-top: 56px;
    min-height: auto;
  }

  .site-nav {
    width: 100%;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}
