/* ABOUT PAGE */

/*  HERO  */
.about-page .hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 72px;
}

.about-page .hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1600&q=80");
  background-size: cover;
  background-position: center 30%;
}

.about-page .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  animation: fadeUp 0.9s ease both;
}

.about-page .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 146, 69, 0.25);
  border: 1px solid rgba(0, 146, 69, 0.5);
  color: #5ddb95;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.about-page .hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #5ddb95;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-page .hero h1 {
  font-family: var(--ff-antonio);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 780px;
  letter-spacing: -0.01em;
}

.about-page .hero h1 em {
  font-style: italic;
  color: #a8e6be;
}

.about-page .hero-sub {
  font-size: clamp(15px, 1.7vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 36px;
}

.about-page .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/*  ABOUT COMPANY  */
.about-page .about-company {
  padding: 100px 0;
  background: var(--cream);
}

.about-page .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-page .about-img-wrap {
  position: relative;
}

.about-page .about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

.about-page .about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 52%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 6px solid var(--cream);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.about-page .about-body p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}

.about-page .about-body p:last-child {
  margin-bottom: 0;
}

.about-page .field-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-page .chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid rgba(0, 146, 69, 0.22);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
}

.about-page .chip svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
}

/*  EXPERT / PERSONAL  */
.about-page .expert {
  padding: 100px 0;
  background: var(--white);
}

.about-page .expert-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.about-page .expert-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-page .expert-photo {
  width: 90%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

.about-page .expert-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--charcoal);
  padding: 20px 24px;
  border-radius: 2px;
  border-left: 4px solid var(--green);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
}

.about-page .expert-card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.about-page .expert-card-title {
  font-size: 12px;
  color: var(--green-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-page .expert-body {
  padding-top: 8px;
}

.about-page .expert-quote {
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--green);
}

.about-page .expert-body p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-page .expert-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.about-page .expert-stat {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 16px;
  border: 1px solid var(--cream-dark);
  text-align: center;
}

.about-page .expert-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.about-page .expert-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/*  EXPERTISE  */
.about-page .expertise {
  padding: 100px 0;
  background: var(--charcoal);
}

.about-page .section-title--white {
  color: var(--white) !important;
}

.about-page .expertise-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 520px;
}

.about-page .expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 56px;
}

.about-page .expertise-card {
  background: var(--charcoal);
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.about-page .expertise-card:hover {
  background: rgba(0, 146, 69, 0.08);
  border-color: rgba(0, 146, 69, 0.25);
}

.about-page .expertise-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 146, 69, 0.12);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 146, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s;
}

.about-page .expertise-card:hover .expertise-icon {
  background: rgba(0, 146, 69, 0.22);
}

.about-page .expertise-icon svg {
  width: 24px;
  height: 24px;
  stroke: #5ddb95;
}

.about-page .expertise-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.about-page .expertise-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-page .expertise-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  font-weight: 300;
}

.about-page .expertise-card li svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/*  WHY EXPERT  */
.about-page .why-expert {
  padding: 100px 0;
  background: var(--cream);
}

.about-page .why-expert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-page .why-expert-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

.about-page .why-expert-img-wrap {
  position: relative;
}

.about-page .why-expert-img-wrap::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 2px solid var(--brown);
  border-radius: 2px;
  z-index: -1;
}

.about-page .why-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-page .why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid rgba(0, 146, 69, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.25s,
    border-color 0.25s,
    transform 0.25s;
}

.about-page .why-point:hover {
  box-shadow: 0 8px 28px rgba(0, 146, 69, 0.14);
  border-color: rgba(0, 146, 69, 0.35);
  transform: translateX(4px);
}

.about-page .why-point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(0, 146, 69, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 146, 69, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .why-point-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
}

.about-page .why-point-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.about-page .why-point-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/*  LEGAL / AUTHORITY  */
.about-page .legal {
  padding: 80px 0;
  background: var(--white);
}

.about-page .legal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  background: var(--charcoal);
  border-radius: 2px;
  padding: 56px 60px;
  border-left: 5px solid var(--green);
  box-shadow: var(--shadow-lg);
}

.about-page .legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  background: rgba(0, 146, 69, 0.18);
  border: 1px solid rgba(0, 146, 69, 0.4);
  color: #5ddb95;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.about-page .legal-badge svg {
  width: 13px;
  height: 13px;
  stroke: #5ddb95;
}

.about-page .legal h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-page .legal p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-weight: 300;
}

.about-page .legal-ref {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
  font-style: italic;
}

.about-page .legal-rules {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.about-page .legal-rule {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
}

.about-page .legal-rule svg {
  width: 18px;
  height: 18px;
  stroke: #5ddb95;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-page .legal-rule-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-weight: 300;
}

.about-page .legal-rule-text strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/*  TASKS / WHAT WE DO  */
.about-page .tasks {
  padding: 100px 0;
  background: var(--cream);
}

.about-page .tasks-grid-wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.about-page .tasks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream-dark);
  border: 2px solid var(--cream-dark);
  margin-top: 36px;
}

.about-page .task-item {
  background: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
}

.about-page .task-item:hover {
  background: rgba(0, 146, 69, 0.04);
}

.about-page .task-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  flex-shrink: 0;
}

.about-page .task-item span {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.about-page .tasks-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

/*  FORESTRY PLANNING  */
.about-page .planning {
  padding: 100px 0;
  background: var(--white);
}

.about-page .planning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-page .planning-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

.about-page .planning-body p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-page .planning-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-page .pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 146, 69, 0.08);
  border: 1px solid rgba(0, 146, 69, 0.2);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
}

.about-page .pill svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
}

/*  ENGINEERING  */
.about-page .engineering {
  padding: 100px 0;
  background: var(--cream);
}

.about-page .engineering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  align-items: start;
}

.about-page .engineering-intro p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-page .eng-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-page .eng-card {
  background: var(--white);
  border: 1.5px solid rgba(0, 146, 69, 0.13);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.about-page .eng-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 146, 69, 0.12);
  border-color: rgba(0, 146, 69, 0.35);
}

.about-page .eng-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 146, 69, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .eng-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
}

.about-page .eng-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
}

.about-page .eng-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/*  VALUES  */
.about-page .values {
  padding: 100px 0;
  background: var(--charcoal);
}

.about-page .values-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-page .values-header .section-lead {
  color: rgba(255, 255, 255, 0.55);
  margin: 14px auto 0;
}

.about-page .values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.about-page .value-card {
  background: var(--charcoal);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background 0.3s,
    border-color 0.3s;
}

.about-page .value-card:hover {
  background: rgba(0, 146, 69, 0.1);
  border-color: rgba(0, 146, 69, 0.3);
}

.about-page .value-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 146, 69, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(0, 146, 69, 0.25);
  transition: background 0.3s;
}

.about-page .value-card:hover .value-icon {
  background: rgba(0, 146, 69, 0.28);
}

.about-page .value-icon svg {
  width: 26px;
  height: 26px;
  stroke: #5ddb95;
}

.about-page .value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.about-page .value-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-weight: 300;
}

/*  CTA  */
.about-page .cta-section {
  position: relative;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-page .cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(0, 40, 20, 0.88), rgba(0, 50, 25, 0.92)),
    url("https://images.unsplash.com/photo-1476231682828-37e571bc172f?w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-page .cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.about-page .cta-content .section-tag {
  color: #a8e6be;
  border-color: #a8e6be;
}

.about-page .cta-content h2 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.about-page .cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 40px;
}

.about-page .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/*  RESPONSIVE  */
@media (max-width: 1024px) {
  .about-page .two-col,
  .about-page .why-expert-grid,
  .about-page .planning-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-page .expert-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-page .expert-grid .expert-body {
    order: 2;
  }

  .about-page .expert-grid .expert-photo-wrap {
    order: 1;
  }

  .about-page .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .tasks-grid-wrap {
    grid-template-columns: 1fr;
  }

  .about-page .engineering-grid {
    grid-template-columns: 1fr;
  }

  .about-page .legal-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 36px;
  }

  .about-page .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .about-img-accent {
    right: -12px;
    bottom: -12px;
  }

  .about-page .expert-card {
    right: -12px;
    bottom: -12px;
  }

  .about-page .why-expert-img-wrap::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .about-page .expertise-grid {
    grid-template-columns: 1fr;
  }

  .about-page .tasks-list {
    grid-template-columns: 1fr;
  }

  .about-page .eng-services {
    grid-template-columns: 1fr;
  }

  .about-page .expert-photo {
    width: 100%;
  }

  .about-page .values-grid {
    grid-template-columns: 1fr;
  }

  .about-page .expert-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-page .legal-inner {
    padding: 32px 24px;
  }
}
