/* ============================================================
   O nama (About) — kupiled brand: teal + green, Cormorant heads
   ============================================================ */

/* page.css overrides :root — re-assert main-site brand tokens (base.css). */
.about-page {
  --green: #a2c054;
  --green-dark: #7a9a2e;
  --green-light: #f0f6e0;
  --teal: #54a2c0;
  --teal-dark: #3a7a96;
  --teal-light: #e8f4fa;
  --text: #3f3f3f;
  --text-light: #777;
  --text-xlight: #aaa;
  --border: #e0e0e0;
  --border-light: #efefef;
  --bg-gray: #f8f8f8;
  --radius: 4px;
  --radius-lg: 8px;
  --font: "Inter", Arial, sans-serif;
  --font-heading: "Cormorant", Georgia, serif;
}

.about-page { color: var(--text); }
.about-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.about-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--green-dark);
}

/* ---- Hero ---- */
.about-hero {
  background: linear-gradient(180deg, var(--teal-light) 0%, #fff 100%);
  padding: 64px 0 72px;
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.about-hero__title {
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 1.05;
  font-weight: 600;
  color: var(--teal);
  margin: 14px 0 20px;
}
.about-hero__title em { font-style: italic; color: var(--green-dark); }
.about-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 28px;
}
.about-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, color .15s, box-shadow .15s, border-color .15s;
}
.about-btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 10px rgba(122,154,46,.28);
}
.about-btn--primary:hover { background: var(--green-dark); color: #fff; box-shadow: 0 4px 16px rgba(122,154,46,.36); }
.about-btn--ghost {
  background: #fff;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.about-btn--ghost:hover { background: var(--teal); color: #fff; }

.about-hero__media { position: relative; }
.about-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(58,122,150,.22);
}
.about-hero__badge {
  position: absolute;
  left: -22px;
  bottom: -22px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-hero__badge-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--green-dark);
}
.about-hero__badge-txt { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }

/* ---- Stats ---- */
.about-stats { padding: 8px 0 0; }
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(0,0,0,.05);
  padding: 32px 24px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.about-stat { text-align: center; position: relative; }
.about-stat + .about-stat::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 12%;
  height: 76%;
  width: 1px;
  background: var(--border);
}
.about-stat__num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
}
.about-stat__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* ---- Section scaffold ---- */
.about-section { padding: 72px 0; }
.about-section--gray { background: var(--bg-gray); }
.about-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.about-head__title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  color: var(--teal);
  margin: 10px 0 12px;
  line-height: 1.1;
}
.about-head__lead { font-size: 16px; line-height: 1.7; color: var(--text-light); }

/* ---- Principles ---- */
.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-principle {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  border-top: 3px solid transparent;
}
.about-principle:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
  border-top-color: var(--green);
}
.about-principle__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .18s, color .18s;
}
.about-principle:hover .about-principle__icon { background: var(--green-light); color: var(--green-dark); }
.about-principle__title {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.about-principle__text { font-size: 14px; line-height: 1.6; color: var(--text-light); }

/* ---- Company info ---- */
.about-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-info__card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
}
.about-info__card h3 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 18px;
}
.about-info__list { display: flex; flex-direction: column; }
.about-info__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.about-info__row:last-child { border-bottom: none; }
.about-info__row dt { color: var(--text-light); }
.about-info__row dd { color: var(--text); font-weight: 600; text-align: right; }
.about-info__row dd a { color: var(--green-dark); }
.about-info__row dd a:hover { text-decoration: underline; }

/* ---- Gallery ---- */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--bg-gray);
}
.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.about-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(58,122,150,.32));
  opacity: 0;
  transition: opacity .3s;
}
.about-gallery__item:hover img { transform: scale(1.07); }
.about-gallery__item:hover::after { opacity: 1; }
.about-gallery__item--wide { grid-column: span 2; aspect-ratio: 8 / 3; }

/* ---- CTA ---- */
.about-cta { padding: 0 0 80px; }
.about-cta__inner {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  box-shadow: 0 18px 44px rgba(122,154,46,.28);
}
.about-cta__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}
.about-cta__text { font-size: 16px; line-height: 1.6; opacity: .92; max-width: 560px; margin: 0 auto 28px; }
.about-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.about-cta .about-btn--primary { background: #fff; color: var(--green-dark); box-shadow: 0 4px 14px rgba(0,0,0,.16); }
.about-cta .about-btn--primary:hover { background: #f3f7e8; color: var(--green-dark); }
.about-cta .about-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.about-cta .about-btn--ghost:hover { background: #fff; color: var(--green-dark); border-color: #fff; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .about-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-hero__title { font-size: 44px; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; margin-top: -28px; }
  .about-stat:nth-child(3)::before, .about-stat:nth-child(odd)::before { display: none; }
  .about-principles { grid-template-columns: repeat(2, 1fr); }
  .about-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .about-hero { padding: 44px 0 56px; }
  .about-hero__title { font-size: 36px; }
  .about-hero__badge { left: 0; }
  .about-section { padding: 52px 0; }
  .about-head__title { font-size: 30px; }
  .about-principles { grid-template-columns: 1fr; }
  .about-info { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
  .about-gallery__item--wide { grid-column: span 2; aspect-ratio: 16 / 7; }
  .about-cta__inner { padding: 40px 24px; }
  .about-cta__title { font-size: 28px; }
}
