```css
:root {
  --bg: #f6f7f2;
  --surface: #ffffff;
  --text: #171916;
  --muted: #6c7169;
  --line: #dfe2da;
  --accent: #c9ef69;
  --accent-dark: #9dcc3e;
  --dark: #20231e;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(25, 30, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

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


/* HEADER */

.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 0;
  background: rgba(246, 247, 242, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.logo span {
  color: #8bb72d;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}


/* HERO */

.hero {
  padding: 70px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #7da52c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 span {
  display: block;
  color: #8a8f85;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 12px 30px rgba(20, 22, 18, 0.14);
}

.button-secondary {
  border: 1px solid var(--line);
  background: transparent;
}

.button-light {
  margin-top: 20px;
  background: var(--accent);
  color: var(--text);
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  padding: 16px 19px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.image-note strong {
  font-size: 13px;
}

.image-note span {
  color: var(--muted);
  font-size: 11px;
}


/* INTRO */

.intro {
  padding: 105px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.intro-copy {
  padding-top: 37px;
}

.intro-copy p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
}


/* IDEAS */

.ideas {
  padding: 115px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.card-image {
  height: 100%;
  min-height: 420px;
}

.card-image img {
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 38px;
}

.card-number {
  display: block;
  margin-bottom: 48px;
  color: #9ba095;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.card h3 {
  max-width: 460px;
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.card p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--accent);
  font-size: 21px;
}

.card .card-icon + .card-number {
  margin-bottom: 42px;
}

.card-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}

.card-dark p,
.card-dark .card-number {
  color: #a8ada3;
}

.card-wide {
  grid-column: span 2;
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 50px;
  background: #e9efdc;
  border-color: #e9efdc;
}

.card-wide-content {
  max-width: 580px;
}

.card-wide .card-number {
  margin-bottom: 55px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: stretch;
}

.mini-gallery img {
  height: 100%;
  min-height: 240px;
  border-radius: 16px;
  object-fit: cover;
}

.mini-gallery img:first-child {
  transform: translateY(20px);
}


/* QUOTE */

.quote-section {
  padding: 110px 0;
  background: var(--dark);
  color: white;
}

.quote {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.5;
}

.quote p {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.05em;
}


/* START */

.start {
  padding: 110px 0;
}

.start-box {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 100px;
  padding: 70px;
  border-radius: 32px;
  background: var(--accent);
}

.start-box p:not(.eyebrow) {
  margin: 0;
  color: #4d5a38;
  font-size: 16px;
}


/* FOOTER */

.footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.copyright {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}


/* MOBILE */

@media (max-width: 800px) {

  .container {
    width: min(100% - 28px, 620px);
  }

  .site-header {
    padding: 16px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 15px;
  }

  .hero {
    padding: 45px 0 75px;
  }

  .hero-grid,
  .intro-grid,
  .section-heading,
  .start-box {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-image {
    border-radius: 24px;
  }

  .intro {
    padding: 75px 0;
  }

  .intro-copy {
    padding-top: 0;
  }

  .ideas {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .card,
  .card-large,
  .card-wide {
    grid-column: auto;
  }

  .card {
    min-height: 300px;
    padding: 28px;
  }

  .card-large {
    display: block;
  }

  .card-image {
    min-height: 280px;
  }

  .card-body {
    padding: 30px 28px 35px;
  }

  .card-number,
  .card-wide .card-number {
    margin-bottom: 35px;
  }

  .card-wide {
    display: block;
  }

  .card-wide-content {
    margin-bottom: 35px;
  }

  .mini-gallery {
    height: 220px;
  }

  .mini-gallery img {
    min-height: 0;
  }

  .quote-section {
    padding: 75px 0;
  }

  .quote p {
    font-size: 31px;
  }

  .start {
    padding: 75px 0;
  }

  .start-box {
    padding: 40px 28px;
    border-radius: 24px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .copyright {
    margin-left: 0;
    width: 100%;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
```

