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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.7fr) minmax(0, 1fr);
  min-height: 640px;
  margin-top: var(--header-height);
  background: #2f2c2a;
}

.about-hero-copy,
.about-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.about-hero-copy {
  padding: clamp(48px, 6vw, 92px) clamp(34px, 5vw, 76px);
  color: #fff;
}

.about-hero-copy span,
.about-story-main span,
.about-section-heading span,
.about-feature-copy span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-hero h1 {
  max-width: 15ch;
  margin: 0 0 24px;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  text-wrap: balance;
}

.about-hero p {
  max-width: 38ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-hero-image,
.about-feature-image {
  min-height: 520px;
  overflow: hidden;
}

.about-hero-image img,
.about-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 56px;
  padding: 96px 8%;
  background: #faf9f7;
}

.about-story-main {
  max-width: 760px;
}

.about-story-main h2,
.about-section-heading h2,
.about-feature-copy h2 {
  margin: 0 0 22px;
  color: #15191d;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
}

.about-story-main p,
.about-feature-copy p {
  max-width: 70ch;
  margin: 0 0 18px;
  color: #4f565d;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-story-panel {
  display: grid;
  gap: 16px;
}

.about-story-panel div {
  padding: 28px;
  border: 1px solid #e5ded3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(35, 28, 20, 0.07);
}

.about-story-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #15191d;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.1;
}

.about-story-panel span {
  color: #596169;
  line-height: 1.55;
}

.about-values {
  padding: 96px 8% 108px;
  background: #fff;
}

.about-section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.about-section-heading h2 {
  max-width: 15ch;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.value-grid article {
  position: relative;
  min-height: 250px;
  padding: 32px;
  border: 1px solid #e8e3da;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(35, 28, 20, 0.06);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.value-grid article::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
}

.value-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(79, 176, 104, 0.24);
  box-shadow: 0 20px 42px rgba(35, 28, 20, 0.1);
}

.value-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: #edf3e9;
  color: #4f8b55;
  font-weight: 800;
}

.value-grid h3 {
  max-width: 13ch;
  margin: 0 0 14px;
  color: #15191d;
  font-size: 1.35rem;
  line-height: 1.16;
  font-weight: 800;
}

.value-grid p {
  margin: 0;
  color: #555d64;
  line-height: 1.7;
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  min-height: 560px;
  background: #f7f5f1;
}

.about-feature-copy {
  padding: clamp(48px, 6vw, 88px) clamp(34px, 5vw, 76px);
}

.about-feature-copy h2 {
  max-width: 13ch;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

:root {
  --header-height: 80px;
}

section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

@media (max-width: 1100px) {
  .about-story,
  .about-feature {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-hero-image {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .about-hero-copy,
  .about-story,
  .about-values,
  .about-feature-copy {
    padding-left: 6%;
    padding-right: 6%;
  }

  .about-hero-copy {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .about-story,
  .about-values {
    padding-top: 70px;
    padding-bottom: 76px;
  }

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

  .value-grid article {
    min-height: 0;
    padding: 28px 24px;
  }
}
