:root {
  --cream-25: #fdf9ef;
  --cream-50: #f8f0df;
  --cream-100: #efe2c8;

  --green-600: #2e6a39;
  --green-700: #22532d;
  --green-800: #183f22;
  --green-900: #0f2c17;

  --gold-400: #deb04a;
  --gold-500: #be8f31;

  --text-900: #15301e;
  --text-700: #32523a;
  --text-600: #48684f;
  --white: #ffffff;

  --shadow-page: 0 22px 52px rgba(18, 44, 25, 0.16);
  --shadow-soft: 0 12px 28px rgba(13, 34, 20, 0.12);
  --shadow-card: 0 8px 18px rgba(17, 41, 24, 0.14);

  --radius-xl: 34px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --container-max: 1160px;
}

* {
  box-sizing: border-box;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100dvh;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  color: var(--text-900);
  line-height: 1.45;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(222, 176, 74, 0.11), transparent 35%),
    radial-gradient(circle at 12% 72%, rgba(46, 106, 57, 0.09), transparent 34%),
    linear-gradient(180deg, #f6edd8 0%, #fcf7ea 100%);
}

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

.page {
  position: relative;
  isolation: isolate;
  width: min(100% - 3rem, var(--container-max));
  margin: clamp(0.5rem, 1.2vw, 1.2rem) auto;
  border-radius: var(--radius-xl);
  overflow: clip;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.6), transparent 45%),
    linear-gradient(180deg, var(--cream-25) 0%, var(--cream-50) 100%);
  box-shadow: var(--shadow-page);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.page__decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
}

.page__decor img {
  width: clamp(140px, 17vw, 245px);
}

.page__decor--top-left {
  top: 0;
  left: 0;
  transform: translate(-14%, -10%);
}

.page__decor--top-right {
  top: 0;
  right: 0;
  transform: translate(14%, -8%);
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  padding: 1.25rem 2.2rem 0.45rem;
}

.site-header__logo-wrap {
  width: fit-content;
  margin: 0 auto;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(222, 176, 74, 0.3);
  box-shadow: 0 10px 22px rgba(18, 44, 25, 0.1);
}

.site-header__logo {
  width: clamp(156px, 16vw, 220px);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 1.2rem;
  padding: 0.2rem 2.2rem 1rem;
}

.hero__content {
  position: relative;
  padding-right: 0.5rem;
}

.hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.89rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 800;
}

.hero__title {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 3.55rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--green-900);
  text-wrap: balance;
  text-shadow: 0 3px 0 rgba(222, 176, 74, 0.28);
}

.hero__description {
  margin: 0.75rem 0 0;
  max-width: 46ch;
  color: var(--text-700);
  font-size: clamp(0.95rem, 1.1vw, 1.02rem);
}

.hero__description--strong {
  font-weight: 700;
  color: var(--text-900);
}

.hero__visual {
  margin: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero__visual img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.highlight-strip {
  margin: 0 1.45rem;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, var(--green-600), var(--green-800));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-strip__item {
  position: relative;
  padding: 0.9rem 0.95rem;
  min-height: 116px;
}

.highlight-strip__item + .highlight-strip__item {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.highlight-strip__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}

.highlight-strip__item--instagram {
  background:
    radial-gradient(circle at 84% 14%, rgba(222, 176, 74, 0.34), transparent 45%),
    rgba(255, 255, 255, 0.04);
}

.highlight-strip__title {
  margin: 0;
  color: #f5d483;
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.highlight-strip__text {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  max-width: 24ch;
  position: relative;
  z-index: 1;
}

.highlight-strip__phone {
  margin: 0.72rem 0 0;
  width: fit-content;
  padding: 0.42rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(255, 255, 255, 0.72);
  color: var(--white);
  font: 700 0.92rem/1.2 "Consolas", "Courier New", monospace;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.highlight-strip__phone::before {
  content: "";
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  margin-right: 0.4rem;
  vertical-align: -2px;
  background: url("assets/whatsapp-icon.svg") center / contain no-repeat;
  filter: brightness(1.42) saturate(0.9);
}

.highlight-strip__contact--email::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d2f9da' d='M3 5.25A2.25 2.25 0 0 1 5.25 3h13.5A2.25 2.25 0 0 1 21 5.25v13.5A2.25 2.25 0 0 1 18.75 21H5.25A2.25 2.25 0 0 1 3 18.75zm2.098-.75 6.902 5.371 6.902-5.37a.75.75 0 0 0-.152-.001H5.25a.75.75 0 0 0-.152 0m14.402 1.9-7.04 5.479a.75.75 0 0 1-.92 0L4.5 6.4v12.35c0 .414.336.75.75.75h13.5a.75.75 0 0 0 .75-.75z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  filter: brightness(1.06);
}

.highlight-strip__instagram {
  margin: 0.95rem 0 0;
  width: fit-content;
  padding: 0.56rem 0.9rem;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(110deg, rgba(222, 176, 74, 0.48), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(245, 212, 131, 0.75);
  position: relative;
  z-index: 1;
}

.highlight-strip__instagram::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  display: inline-block;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3.5' y='3.5' width='17' height='17' rx='5' ry='5' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3Ccircle cx='17.5' cy='6.8' r='1.2' fill='%23ffffff'/%3E%3C/svg%3E")
    center / contain no-repeat;
  vertical-align: -1px;
}

.features-footer {
  width: 100%;
  padding: 34px 24px;
  position: relative;
  overflow: hidden;
  background: #f7f3e9;
  border-top: 1px solid rgba(228, 184, 76, 0.35);
  box-shadow: 0 -8px 18px rgba(18, 44, 25, 0.06);
}

.features-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.features-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.feature-footer-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 90px;
  color: #3e6b3f;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.25;
  text-align: left;
  padding-right: 18px;
}

.feature-footer-item p {
  margin: 0;
}

.feature-footer-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: rgba(228, 184, 76, 0.5);
}

.feature-footer-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid rgba(228, 184, 76, 0.75);
  background: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 74px;
}

.feature-footer-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.footer-leaves {
  position: absolute;
  opacity: 0.22;
  width: clamp(125px, 14vw, 170px);
  pointer-events: none;
  z-index: 1;
}

.footer-leaves-left {
  left: 0;
  bottom: 0;
}

.footer-leaves-right {
  right: 0;
  top: 0;
  transform: scaleX(-1);
}

.site-footer {
  border-top: 1px solid rgba(34, 83, 45, 0.15);
  padding: 0.75rem 1.2rem 0.9rem;
}

.site-footer__text {
  margin: 0;
  text-align: center;
  color: rgba(21, 48, 30, 0.75);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .page {
    width: min(100% - 1.5rem, var(--container-max));
    margin: 1rem auto;
    border-radius: 24px;
  }

  .site-header {
    padding: 1rem 1.2rem 0.5rem;
  }

  .hero {
    padding: 0.25rem 1.2rem 1rem;
    gap: 0.9rem;
  }

  .highlight-strip {
    margin: 0 0.9rem;
  }

  .highlight-strip__item {
    min-height: 112px;
    padding: 0.85rem 0.82rem;
  }

}

@media (max-width: 900px) {
  .features-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
  }

  .feature-footer-item::after {
    display: none;
  }
}

@media (max-width: 700px) {
  body {
    background: linear-gradient(180deg, #f7eedb 0%, #fcf8ee 100%);
  }

  .page {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .page__decor {
    opacity: 0.2;
  }

  .page__decor img {
    width: clamp(110px, 34vw, 170px);
  }

  .site-header {
    padding: 1.1rem 1rem 0.55rem;
  }

  .site-header__logo-wrap {
    padding: 0.44rem 1rem;
  }

  .site-header__logo {
    width: clamp(142px, 40vw, 205px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.15rem 0.9rem 0.85rem;
  }

  .hero__content {
    text-align: center;
    padding: 0;
  }

  .hero__eyebrow {
    margin-bottom: 0.5rem;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
  }

  .hero__title {
    font-size: clamp(1.65rem, 8.5vw, 2.35rem);
    line-height: 0.98;
  }

  .hero__description {
    margin-top: 0.8rem;
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero__visual {
    order: -1;
    padding: 0;
    border-radius: 0;
  }

  .highlight-strip {
    margin: 0 0.78rem;
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .highlight-strip__item {
    min-height: auto;
    padding: 0.95rem;
  }

  .highlight-strip__item + .highlight-strip__item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .highlight-strip__title {
    font-size: 1.04rem;
  }

  .highlight-strip__instagram,
  .highlight-strip__phone {
    font-size: 0.9rem;
  }

  .features-footer {
    padding: 30px 16px;
  }

  .features-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .feature-footer-item {
    justify-content: flex-start;
    font-size: 0.94rem;
    min-height: 80px;
    padding-right: 0;
    gap: 10px;
  }

  .footer-leaves {
    max-width: 110px;
    opacity: 0.16;
  }

  .site-footer {
    padding: 0.85rem 0.85rem 1.1rem;
  }

  .site-footer__text {
    font-size: 0.82rem;
  }
}
