:root {
  --green-700: #1b6b44;
  --green-600: #1f7a4d;
  --green-500: #2aa463;
  --red-500: #e64a3b;
  --orange-500: #f2a03c;
  --yellow-400: #ffd36a;
  --ink-900: #1d1b17;
  --ink-700: #3d3a34;
  --muted: #6d6a63;
  --surface: #ffffff;
  --surface-alt: #f7f4ee;
  --shadow: 0 24px 60px rgba(23, 36, 28, 0.15);
  --shadow-soft: 0 16px 40px rgba(23, 36, 28, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1120px;
}

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

body {
  font-family: "Manrope", "Poppins", sans-serif;
  color: var(--ink-900);
  background: linear-gradient(120deg, #f9f7f2 0%, #eff6f0 45%, #fff4ea 100%);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle, rgba(255, 211, 106, 0.45), transparent 70%);
}

body::after {
  width: 520px;
  height: 520px;
  bottom: 0;
  left: 0;
  transform: translate(-35%, 35%);
  background: radial-gradient(circle, rgba(42, 164, 99, 0.28), transparent 70%);
}

.page {
  position: relative;
  z-index: 1;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: "Poppins", "Manrope", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

p {
  color: var(--ink-700);
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
  scroll-margin-top: 110px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(61, 58, 52, 0.08);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--green-700);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--ink-700);
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--green-700);
}

.hero {
  position: relative;
  padding: 140px 0 90px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 211, 106, 0.25), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(230, 74, 59, 0.2), transparent 45%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 48px;
}

.hero__text {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.hero__lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero__media {
  position: relative;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.15s;
  opacity: 0;
}

.hero__media img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.hero__badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(42, 164, 99, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 122, 77, 0.25);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(31, 122, 77, 0.3);
}

.btn--ghost {
  border-color: rgba(31, 122, 77, 0.35);
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
  transform: translateY(-1px);
}

.btn--large {
  font-size: 1.1rem;
  padding: 16px 32px;
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.grid-two {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about {
  background: var(--surface-alt);
}

.section__heading,
.section__title {
  margin-bottom: 32px;
}

.section__heading p,
.section__title p {
  max-width: 520px;
}

.about__tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about__tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 122, 77, 0.08);
  color: var(--green-700);
  font-size: 0.9rem;
  font-weight: 600;
}

.about__cards {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(61, 58, 52, 0.08);
  box-shadow: 0 14px 30px rgba(28, 44, 35, 0.08);
}

.offer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.offer__card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(61, 58, 52, 0.08);
  box-shadow: 0 14px 30px rgba(28, 44, 35, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(28, 44, 35, 0.1);
}

.offer__card img {
  border-radius: 18px;
  margin-bottom: 14px;
  height: 190px;
  object-fit: cover;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.benefit-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(61, 58, 52, 0.08);
  box-shadow: 0 14px 30px rgba(28, 44, 35, 0.08);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
}

.benefit-card:nth-child(2) .benefit-card__icon {
  background: linear-gradient(135deg, var(--red-500), #f27564);
}

.benefit-card:nth-child(3) .benefit-card__icon {
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-400));
  color: #2b2114;
}

.benefit-card:nth-child(4) .benefit-card__icon {
  background: linear-gradient(135deg, #2f8f6b, #5bc28f);
}

.benefit-card svg {
  width: 22px;
  height: 22px;
}

.contact {
  background: var(--surface-alt);
}

.contact__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(61, 58, 52, 0.08);
}

.contact__text {
  max-width: 520px;
}

.contact__actions {
  display: grid;
  gap: 10px;
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  padding: 32px 0 40px;
  background: #f0ede6;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__inner div {
  display: grid;
  gap: 6px;
}

.footer__nav {
  display: grid;
  gap: 6px;
}

.footer__label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.footer__nav a {
  color: var(--muted);
  font-weight: 600;
}

.footer__nav a:hover {
  color: var(--green-700);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero__media,
  .hero__text {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

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

  .hero__media {
    max-width: 520px;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav {
    flex: 1 1 100%;
    order: 3;
  }

  .site-header__inner .brand {
    order: 1;
  }

  .site-header__inner .btn {
    order: 2;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 0 70px;
  }

  .section {
    padding: 70px 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact__box {
    padding: 26px;
  }
}

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

  .btn,
  .btn--large {
    width: 100%;
  }

  .contact__actions {
    width: 100%;
  }
}
