/* â”€â”€ About Page Styles â”€â”€ */
body.about-page-body {
  background-color: #edf5e8;
  background-image:
    radial-gradient(circle at top left, rgba(67, 133, 82, 0.14), transparent 36%),
    radial-gradient(circle at top right, rgba(166, 197, 136, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(215, 180, 112, 0.1), transparent 30%),
    linear-gradient(180deg, #f7fbf3 0%, #edf5e8 46%, #e6f0de 100%);
}

body.about-page-body .site-header {
  background: #ffffff !important;
  backdrop-filter: none !important;
}

body.about-page-body .site-nav {
  background: #ffffff !important;
  border: 1px solid rgba(223, 231, 219, 0.95) !important;
  box-shadow: 0 10px 22px rgba(16, 64, 40, 0.08) !important;
}

body.about-page-body .about-page-separated {
  padding-top: 0.8rem;
}

.about-page {
  padding: clamp(1rem, 3vw, 3rem) 0 4rem;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  color: #3f4f45;
}

/* Animations */
.about-animate {
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.about-fade-up {
  animation-name: aboutFadeUp;
}

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

/* Background Decorations */
.about-bg-decoration {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 115, 69, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: float-slow 12s ease-in-out infinite alternate;
}

.about-bg-decoration-right {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 115, 69, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: float-slow 15s ease-in-out infinite alternate-reverse;
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
  100% { transform: translate(-10px, 10px) scale(0.95); }
}

/* Hero Section */
.about-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: #eaf6ee;
  color: #156a40;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.about-title {
  margin: 0 0 1.5rem;
  color: #193a2a;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation-delay: 0.1s;
}

.about-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: #4a5f53;
  margin: 0 auto;
  animation-delay: 0.2s;
}

/* Story Section */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding: 0 1.5rem;
}

.story-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(16, 64, 40, 0.1);
  aspect-ratio: 4/3;
  animation-delay: 0.3s;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-image-wrap:hover img {
  transform: scale(1.05);
}

.story-content {
  animation-delay: 0.4s;
}

.story-content h2 {
  color: #193a2a;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Values Section */
.about-values {
  padding: 0 1.5rem;
}

.values-header {
  text-align: center;
  margin-bottom: 3rem;
  animation-delay: 0.5s;
}

.values-header h2 {
  color: #193a2a;
  font-size: 2.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(215, 232, 220, 0.8);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(16, 64, 40, 0.03);
}

.value-card:nth-child(1) { animation-delay: 0.6s; }
.value-card:nth-child(2) { animation-delay: 0.7s; }
.value-card:nth-child(3) { animation-delay: 0.8s; }

.value-card:hover {
  transform: translateY(-10px);
  background: #fff;
  border-color: #156a40;
  box-shadow: 0 20px 40px rgba(20, 115, 69, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: #eaf6ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #156a40;
  transition: transform 0.5s ease;
}

.value-card:hover .value-icon {
  transform: rotateY(180deg);
  background: #156a40;
  color: #fff;
}

.value-card h3 {
  color: #173d2c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: #4a5f53;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Call to action */
.about-cta {
  text-align: center;
  margin-top: 5rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #147345 0%, #0d4a2c 100%);
  border-radius: 24px;
  color: white;
  animation-delay: 0.9s;
  position: relative;
  overflow: hidden;
}

.about-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; position: relative; z-index: 2; }
.about-cta p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; position: relative; z-index: 2; }

.cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #fff;
  color: #147345;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-image-wrap { order: -1; }
}

@media (max-width: 991px) {
  body.about-page-body .site-header.mobile-header-hide {
    display: none !important;
  }

  body.about-page-body .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.45rem 0.55rem 0;
  }

  body.about-page-body .site-nav {
    border-radius: 22px;
    padding: 0.72rem 0.8rem 0.85rem;
  }

  body.about-page-body .about-page-separated {
    padding-top: 0.45rem;
  }

  body.about-page-body .about-hero {
    margin: 0 auto 2.6rem;
  }

  body.about-page-body .about-title {
    font-size: clamp(2rem, 8vw, 2.9rem);
    line-height: 1.02;
    margin-bottom: 1rem;
  }

  body.about-page-body .about-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}

@media (min-width: 1024px) {
  body.about-page-body .site-header {
    padding: 0.75rem 2rem;
  }

  body.about-page-body .nav-main-row {
    display: grid;
    grid-template-columns: 180px minmax(360px, 1fr) auto;
    align-items: center;
    gap: 1rem;
  }

  body.about-page-body .mobile-search-pill {
    width: 100%;
    max-width: 520px;
    margin: 0 1rem;
  }

  body.about-page-body .nav-links {
    margin-top: 0;
    justify-content: flex-end;
    gap: 1rem;
    white-space: nowrap;
  }
}
