/* /tentang-kami — brand about page */

.about {
  background: #fff;
  color: var(--stone-900);
}

.about-kicker {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(120 53 15 / 0.85);
}

/* ——— Hero ——— */
.about-hero {
  padding: 4.5rem 1.25rem 3.75rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgb(92 61 46 / 0.07), transparent 68%),
    var(--stone-50);
  border-bottom: 1px solid var(--stone-200);
}

@media (min-width: 768px) {
  .about-hero {
    padding: 5.5rem 2rem 4.5rem;
  }
}

.about-hero__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  margin: 0 0 1.125rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--stone-900);
}

.about-hero__lead {
  margin: 0 auto 2rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--stone-600);
  font-weight: 500;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

/* ——— Buttons ——— */
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.about-btn--primary {
  background: var(--jgreen-soft);
  color: #fff;
}

.about-btn--primary:hover {
  background: #4d3327;
}

.about-btn--ghost {
  background: transparent;
  color: var(--stone-900);
  border: 1px solid #d6d3d1;
}

.about-btn--ghost:hover {
  background: #fff;
  border-color: var(--stone-400);
}

.about-btn--dark {
  background: var(--stone-900);
  color: #fff;
}

.about-btn--dark:hover {
  background: #000;
}

/* ——— Story ——— */
.about-story {
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .about-story {
    padding: 5.5rem 2rem;
  }
}

.about-story__grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.about-story__text h2 {
  margin: 0 0 1.35rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.28;
}

.about-story__text p {
  margin: 0 0 1.1rem;
  max-width: 38rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--stone-600);
  font-weight: 500;
}

.about-story__list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-story__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--stone-700);
  line-height: 1.5;
}

.about-story__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--jgold);
}

.about-story__media {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 48px rgb(68 41 25 / 0.12);
  background: var(--stone-100);
}

.about-story__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 900px) {
  .about-story__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

/* ——— Pillars ——— */
.about-pillars {
  padding: 4rem 1.25rem 4.5rem;
  background: var(--stone-50);
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
}

@media (min-width: 768px) {
  .about-pillars {
    padding: 5rem 2rem 5.5rem;
  }
}

.about-section-head {
  max-width: 36rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.about-section-head h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.28;
}

.about-section-head p {
  margin: 0;
  color: var(--stone-600);
  font-weight: 500;
  line-height: 1.65;
  font-size: 1.02rem;
}

.about-section-head--light {
  margin-bottom: 2.5rem;
}

.about-section-head--light h2 {
  color: #fff;
}

.about-pillars__grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .about-pillars__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 1100px) {
  .about-pillars__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-pillar {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-pillar:hover {
  box-shadow: 0 12px 32px rgb(68 41 25 / 0.1);
  transform: translateY(-2px);
}

.about-pillar__media {
  aspect-ratio: 16 / 11;
  background: var(--stone-100);
  overflow: hidden;
}

.about-pillar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-pillar__body {
  padding: 1.35rem 1.35rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.about-pillar__body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.125rem;
}

.about-pillar__body p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--stone-600);
  font-weight: 500;
}

.about-pillar__link {
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--jgreen-soft);
  letter-spacing: 0.02em;
}

/* ——— Reasons ——— */
.about-reasons {
  padding: 4rem 1.25rem;
  background: #321b0f;
  color: #fff;
}

@media (min-width: 768px) {
  .about-reasons {
    padding: 5rem 2rem;
  }
}

.about-reasons__grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .about-reasons__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.about-reason {
  padding: 1.65rem 1.65rem 1.85rem;
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.about-reason h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.3;
}

.about-reason p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.74);
  font-weight: 500;
}

/* ——— Stats ——— */
.about-stats {
  padding: 3rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--stone-200);
}

@media (min-width: 768px) {
  .about-stats {
    padding: 3.5rem 2rem;
  }
}

.about-stats__grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .about-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.about-stat__value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 600;
  color: var(--jgreen-soft);
  line-height: 1.1;
}

.about-stat__label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ——— Team teaser ——— */
.about-team {
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .about-team {
    padding: 5rem 2rem;
  }
}

.about-team__card {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
  align-items: center;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: var(--jivory);
  border: 1px solid var(--stone-200);
}

.about-team__text h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.28;
}

.about-team__text h2 em {
  font-style: italic;
  color: var(--jgreen-soft);
}

.about-team__text p {
  margin: 0 0 1.65rem;
  max-width: 36rem;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--stone-600);
  font-weight: 500;
}

.about-team__media {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--stone-100);
}

.about-team__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 900px) {
  .about-team__card {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 2.75rem 3rem;
    gap: 3rem;
  }
}

/* ——— Bottom CTA ——— */
.about-cta {
  padding: 4rem 1.25rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--stone-50) 0%, #fff 100%);
  border-top: 1px solid var(--stone-200);
}

@media (min-width: 768px) {
  .about-cta {
    padding: 5rem 2rem 5.5rem;
  }
}

.about-cta h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.28;
}

.about-cta > p {
  margin: 0 auto 1.85rem;
  max-width: 30rem;
  color: var(--stone-600);
  font-weight: 500;
  line-height: 1.65;
  font-size: 1.02rem;
}
