:root {
  --forest: #174f2a;
  --green: #5a9f12;
  --green-dark: #397b08;
  --cream: #f8f6ee;
  --brown: #9a724f;
  --ink: #202124;
  --muted: #686868;
  --card: rgba(255, 255, 255, 0.93);
  --shadow: 0 11px 30px rgba(51, 55, 36, 0.11);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

.about-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 54px 5vw;
  background:
    radial-gradient(circle at 20% 45%, rgba(255, 255, 255, 0.7), transparent 38%),
    linear-gradient(105deg, #fbfaf5 0%, #f8f6ee 100%);
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 360px;
  opacity: 0.13;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 55%, var(--green) 57% 59%, transparent 61%);
  transform: rotate(-24deg);
}

.about-section::before {
  right: -40px;
  top: -100px;
}

.about-section::after {
  right: -48px;
  bottom: -130px;
  transform: rotate(24deg);
}

.about-container {
  position: relative;
  z-index: 2;
  width: min(1540px, 100%);
  display: grid;
  grid-template-columns: minmax(540px, 0.59fr) minmax(510px, 0.41fr);
  align-items: center;
  gap: clamp(34px, 5.2vw, 86px);
}

.about-visual {
  width: 100%;
}

.about-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 16px rgba(39, 45, 27, 0.08));
  transition: transform 0.55s ease, filter 0.55s ease;
}

.about-visual:hover img {
  transform: translateY(-6px) scale(1.012);
  filter: drop-shadow(0 22px 20px rgba(39, 45, 27, 0.14));
}

.about-content {
  padding: 12px 0 8px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 36px;
  color: var(--forest);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.section-label i {
  position: relative;
  color: var(--green);
  font-size: 24px;
}

.section-label::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 2px;
  margin: 46px 0 0 0;
  background: var(--green);
}

.about-content h1 {
  max-width: 660px;
  font-size: clamp(38px, 3.35vw, 63px);
  line-height: 1.12;
  letter-spacing: -2.3px;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-content h1 span {
  color: var(--green);
}

.heading-mark {
  display: none;
  align-items: center;
  gap: 12px;
  margin: 34px 0 20px;
}

.heading-mark span {
  width: 70px;
  height: 3px;
  border-radius: 10px;
  background: var(--brown);
}

.heading-mark i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brown);
}

.about-description {
  max-width: 630px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 39px;
}

.feature-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 24px 12px;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(126, 109, 73, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-9px);
  border-color: rgba(90, 159, 18, 0.35);
  box-shadow: 0 18px 34px rgba(60, 85, 30, 0.17);
}

.feature-icon {
  color: var(--green-dark);
  font-size: 43px;
  line-height: 1;
  transition: transform 0.35s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
}

.feature-card h2 {
  font-size: clamp(15px, 1.13vw, 19px);
  font-weight: 800;
}

.about-actions {
  margin-top: 38px;
}

.story-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 200px;
  min-height: 48px;
  padding: 10px 10px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, var(--green), #4d9109);
  border-radius: 11px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 11px 22px rgba(77, 145, 9, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform: translateX(-102%);
  transition: transform 0.38s ease;
}

.story-btn span,
.story-btn i {
  position: relative;
}

.story-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(23, 79, 42, 0.22);
}

.story-btn:hover::before {
  transform: translateX(0);
}

.story-btn i {
  transition: transform 0.35s ease;
}

.story-btn:hover i {
  transform: rotate(22deg) scale(1.12);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 29px;
  color: #777;
  font-size: 16px;
}

.stars {
  display: flex;
  gap: 5px;
  color: var(--green);
  font-size: 20px;
}

.reveal {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
  transform: translateX(-45px);
}

.reveal-right {
  transform: translateX(45px);
}

.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-target {
  display: block;
}

@media (max-width: 1200px) {
  .about-section {
    padding: 64px 4vw;
  }

  .about-container {
    grid-template-columns: 1fr 0.92fr;
    gap: 30px;
  }

  .feature-grid {
    gap: 14px;
  }

  .section-label {
    margin-bottom: 28px;
  }
}

@media (max-width: 991px) {
  .about-section {
    min-height: auto;
    padding: 70px 24px;
  }

  .about-container {
    max-width: 780px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-visual {
    max-width: 720px;
    margin-inline: auto;
  }

  .about-content {
    text-align: center;
  }

  .section-label,
  .heading-mark,
  .trust-row {
    justify-content: center;
  }

  .section-label::after {
    margin-left: -116px;
  }

  .about-description,
  .about-content h1 {
    margin-inline: auto;
  }

  .feature-grid {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 42px 15px 50px;
  }

  .about-container {
    gap: 20px;
  }

  .about-visual {
    margin-inline: -7px;
    width: calc(100% + 14px);
  }

  .section-label {
    margin-bottom: 24px;
    font-size: 13px;
    letter-spacing: 4px;
  }

  .about-content h1 {
    font-size: 33px;
    line-height: 1.16;
    letter-spacing: -1.3px;
  }

  .heading-mark {
    margin: 25px 0 16px;
  }

  .about-description {
    font-size: 15px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 30px auto 0;
  }

  .feature-card {
    min-height: 125px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 22px 30px;
    text-align: left;
  }

  .feature-icon {
    width: 54px;
    font-size: 37px;
  }

  .about-actions {
    margin-top: 30px;
  }

  .story-btn {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    font-size: 17px;
  }

  .trust-row {
    flex-direction: column;
    gap: 9px;
    margin-top: 23px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
