*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --green-950: #102915;
  --green-900: #173f16;
  --green-700: #2f6f16;
  --green-100: #eaf3e5;
  --cream: #f7f8f1;
  --white: #ffffff;
  --ink: #153026;
  --muted: #66746b;
  --line: #e4eadf;
  --gold: #e6b744;
  --shadow: 0 16px 34px rgba(16, 41, 21, 0.12);
  --font: "Avenir Next", "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 clamp(22px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-900);
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(31%) sepia(56%) saturate(710%) hue-rotate(64deg) brightness(97%) contrast(102%);
}

.brand strong {
  display: block;
  color: var(--green-950);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  color: var(--green-950);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-nav a {
  padding: 31px 0 28px;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--green-700);
  outline: none;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--green-950);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid #c7d9bd;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--white);
  background: var(--green-700);
  outline: none;
}

.header-icons a {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.header-icons svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(420px, 1.18fr);
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(110deg, #eef8ff 0%, #f3fbf8 52%, #dff1cf 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 70px 0 72px clamp(34px, 7vw, 96px);
}

.hero h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-line {
  margin: 10px 0 0;
  color: #102820;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 500;
}

.hero-text {
  max-width: 410px;
  margin: 24px 0 0;
  color: #67766e;
  font-size: 16px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid var(--green-700);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.button.secondary,
.button.outline {
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.74);
}

.button:hover,
.button:focus-visible,
.select-size:hover,
.select-size:focus-visible {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
  outline: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
}

.trust-row article {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 150px;
  color: var(--green-900);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.trust-row svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ginkgo-leaf-icon {
  display: block;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--green-950);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -22%;
  z-index: 1;
  width: 42%;
  background: linear-gradient(90deg, rgba(238, 248, 255, 0.96), rgba(238, 248, 255, 0));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.section {
  width: min(1120px, calc(100% - 42px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading span,
.purpose span,
.quote-copy span {
  display: block;
  margin-bottom: 9px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2,
.purpose h2,
.promise h2,
.quote h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 950;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  text-align: center;
}

.benefit-grid svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  color: var(--green-700);
}

.benefit-grid h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 16px;
}

.benefit-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.products {
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.size-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px);
  justify-content: center;
  gap: 26px;
}

.size-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.size-card .tag {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 10px 12px;
  color: var(--white);
  background: var(--green-700);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.size-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.size-card div {
  padding: 18px 18px 20px;
}

.size-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 16px;
}

.size-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.size-card strong {
  display: block;
  margin-top: 16px;
  color: var(--green-700);
  font-size: 22px;
  font-weight: 950;
}

.select-size {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  color: var(--white);
  background: var(--green-700);
  border: 1px solid var(--green-700);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.centered {
  width: fit-content;
  margin: 28px auto 0;
}

.purpose {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 360px;
  color: var(--white);
  background: var(--green-950);
}

.purpose > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.purpose > div {
  align-self: center;
  padding: 62px clamp(32px, 7vw, 86px);
}

.purpose span,
.purpose h2,
.purpose p,
.purpose strong,
.purpose small {
  color: var(--white);
}

.purpose p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

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

.purpose-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.purpose-grid strong,
.purpose-grid small {
  display: block;
}

.purpose-grid small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
}

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

.review-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(16, 41, 21, 0.08);
  text-align: center;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.review-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.review-grid strong,
.review-grid small {
  display: block;
}

.review-grid small {
  color: var(--green-700);
  font-weight: 800;
}

.promise {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100% - 42px));
  margin: 0 auto 40px;
  padding: 34px 0;
}

.promise-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 3px solid var(--green-900);
  border-radius: 28px 28px 34px 34px;
}

.promise-leaf {
  width: 52px;
  height: 52px;
  color: var(--green-900);
}

.promise-icon svg {
  width: 76px;
  height: 76px;
  fill: none;
  stroke: var(--green-900);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promise p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.quote {
  width: 100%;
  max-width: none;
  padding: 66px clamp(22px, 5vw, 70px);
  background:
    linear-gradient(rgba(16, 41, 21, 0.78), rgba(16, 41, 21, 0.78)),
    url("img/fresh-nursery-rows.png") center / cover;
}

.quote-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.quote-copy {
  align-self: center;
}

.quote-copy span,
.quote-copy h2,
.quote-copy p {
  color: var(--white);
}

.quote-copy p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.quote-form {
  display: grid;
  gap: 14px;
}

fieldset,
.field-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px);
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

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

legend {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

label span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  outline: none;
}

input {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 116px;
  padding: 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(47, 111, 22, 0.32);
}

.quote-summary {
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-left: 4px solid #98d16d;
  line-height: 1.5;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.form-actions .button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  padding: 54px clamp(22px, 5vw, 70px) 32px;
  color: var(--white);
  background: #0d2513;
}

.site-footer .brand,
.site-footer .brand strong,
.site-footer .brand small {
  color: var(--white);
}

.site-footer .brand-mark img {
  filter: invert(1);
}

.footer-brand p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.site-footer nav {
  display: grid;
  grid-auto-flow: column;
  gap: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(420px, calc(100% - 36px));
  padding: 14px 16px;
  color: var(--white);
  background: var(--green-900);
  border-left: 5px solid #98d16d;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(16, 41, 21, 0.28);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .hero,
  .purpose,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 24px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual img {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand strong {
    font-size: 17px;
  }

  .header-icons {
    gap: 8px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-line {
    font-size: 28px;
  }

  .hero-copy {
    padding-left: 20px;
  }

  .hero-actions,
  .trust-row,
  .benefit-grid,
  .size-grid,
  .purpose-grid,
  .review-grid,
  .promise,
  fieldset,
  .field-row,
  .form-actions,
  .site-footer,
  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .trust-row {
    display: grid;
  }

  .section {
    width: min(100% - 30px, 1120px);
    padding: 60px 0;
  }

  .purpose > div {
    padding: 42px 24px;
  }

  .promise {
    text-align: center;
  }

  .promise-icon {
    justify-self: center;
  }

  .quote {
    padding: 50px 16px;
  }

  .site-footer nav {
    grid-auto-flow: row;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
