/* ==========================================================================
   d_nextplanner — tentang.css
   Only used by tentang.html. .steps lives in main.css (shared with index).
   ========================================================================== */

/* --- cerita -------------------------------------------------------------- */

.story {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: start;
}
.story h2 { max-width: 20ch; margin-bottom: 24px; }
.story-text > p { max-width: 54ch; color: var(--muted); }
.story-text .lede { color: var(--ink); margin-bottom: 26px; }

.signature {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  color: var(--muted) !important;
}

.story-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}
.story-image img { height: 100%; }

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
}
.story-stats div {
  padding: 20px 20px 18px 0;
  border-bottom: 1px solid var(--line);
}
.story-stats div:nth-child(odd) { border-right: 1px solid var(--line); }
.story-stats div:nth-child(even) { padding-left: 22px; }
.story-stats div:nth-last-child(-n+2) { border-bottom: 0; }
.story-stats dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.story-stats dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.03em;
}
.story-stats small { font-size: 15px; color: var(--muted); }

/* --- prinsip ------------------------------------------------------------- */

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.values li {
  padding: 36px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.values span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
}
.values h3 { margin-bottom: 14px; max-width: 22ch; }
.values p { margin: 0; color: var(--muted); font-size: 14.5px; max-width: 50ch; }

/* --- timeline hint ------------------------------------------------------- */

.timeline {
  margin-top: 64px;
  padding: 36px 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ink-soft);
}
.timeline h4 {
  margin-bottom: 22px;
  color: #f7f2ea;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.timeline ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.timeline li {
  padding: 20px 22px 18px 0;
  border-right: 1px solid var(--line-dark);
}
.timeline li:last-child { border-right: 0; }
.timeline b {
  display: block;
  margin-bottom: 6px;
  color: #f7f2ea;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -.02em;
}
.timeline span { color: var(--accent-light); font-size: 13.5px; }
.timeline > p {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
  max-width: 68ch;
}

/* --- kantor & area ------------------------------------------------------- */

.office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.office h2 { max-width: 18ch; margin-bottom: 22px; }
.office > div > p { max-width: 50ch; color: var(--muted); }

.office-address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0;
  padding: 26px 0;
  border-block: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--muted);
}
.office-address p { margin: 0; }
.office-address b { color: var(--ink); }
.office-address a { color: var(--accent-dark); border-bottom: 1px solid var(--line); }
.office-address a:hover { border-color: var(--accent); }

.office-sub {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
}

.area-table { border-top: 1px solid var(--line); }
.area-table li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.area-table b { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: -.02em; }
.area-table span { color: var(--muted); font-size: 13px; text-align: right; }
.area-note { margin: 22px 0 0; color: var(--muted); font-size: 13.5px; max-width: 46ch; }

/* --- responsive ---------------------------------------------------------- */

@media (max-width: 1000px) {
  .story { grid-template-columns: 1fr; gap: 48px; }
  .story h2 { max-width: none; }
  .values { grid-template-columns: 1fr; }
  .timeline ul { grid-template-columns: 1fr 1fr; }
  .timeline li { border-bottom: 1px solid var(--line-dark); }
  .timeline li:nth-child(2n) { border-right: 0; }
  .timeline li:nth-last-child(-n+2) { border-bottom: 0; }
  .office { grid-template-columns: 1fr; gap: 48px; }
  .office h2 { max-width: none; }
}

@media (max-width: 560px) {
  .story-stats { grid-template-columns: 1fr; }
  .story-stats div:nth-child(odd) { border-right: 0; }
  .story-stats div:nth-child(even) { padding-left: 0; }
  .story-stats div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .story-stats div:last-child { border-bottom: 0; }
  .values li { padding: 28px 22px; }
  .timeline { padding: 28px 22px; }
  .timeline ul { grid-template-columns: 1fr; }
  .timeline li { border-right: 0; padding-right: 0; }
  .office-address { grid-template-columns: 1fr; gap: 16px; }
  .office .button { width: 100%; }
}
