/* ==========================================================================
   DAAMRI Deals — About page
   ========================================================================== */

/* Shared reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* Cover */
.about-cover {
  padding: 88px 0 64px;
}

.about-cover .kicker {
  margin-bottom: 20px;
}

.about-cover h1 {
  font-size: clamp(40px, 5.8vw, 74px);
  line-height: 1.02;
  font-weight: 500;
  max-width: 900px;
}

.about-cover .sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 19px;
  color: var(--muted);
  max-width: 600px;
  margin-top: 24px;
}

.about-cover .actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Full-bleed banner image */
.about-banner {
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.about-banner img {
  width: 100%;
  height: clamp(280px, 46vw, 520px);
  filter: var(--img-filter);
}

/* Who we are — two column */
.who-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: var(--sp-16);
  align-items: center;
}

.who-split figure img {
  width: 100%;
  height: 440px;
  border: 1px solid var(--stone);
  filter: var(--img-filter);
}

.who-split figcaption {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

.who-split .prose p {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 540px;
  margin-bottom: var(--sp-4);
}

/* Icon service cards */
.icon-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 32px 28px;
  transition: var(--ease);
  position: relative;
}

.icon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.icon-card i {
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 18px;
  display: inline-block;
  transition: var(--ease);
}

.icon-card:hover i {
  color: var(--oxblood);
}

.icon-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.icon-card p {
  font-size: 14px;
  color: var(--muted);
}

/* Why choose — checklist cards */
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--stone);
}

.why-item i {
  color: var(--forest);
  font-size: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--muted);
  max-width: 460px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--sp-16);
}

/* Presence */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.presence-card {
  position: relative;
  border: 1px solid var(--stone);
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.presence-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: var(--img-filter);
  transition: transform .6s ease;
}

.presence-card:hover img {
  transform: scale(1.04);
}

.presence-card .pc-label {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(26, 26, 26, .72));
  color: var(--white);
  font-family: var(--disp);
  font-weight: 600;
  font-size: 20px;
}

.presence-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: var(--sp-8);
}

/* Process timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-6);
  position: relative;
  counter-reset: step;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 3%;
  right: 3%;
  height: 1px;
  background: var(--stone);
}

.timeline .step {
  position: relative;
  padding-top: 52px;
}

.timeline .step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--oxblood);
  color: var(--oxblood);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}

.timeline .step:hover::before {
  background: var(--oxblood);
  color: var(--white);
}

.timeline .step h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.timeline .step p {
  font-size: 13px;
  color: var(--muted);
}

/* Vision */
.vision {
  background: var(--paper-2);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  text-align: center;
}

.vision blockquote {
  font-family: var(--disp);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.3;
  max-width: 880px;
  margin: 0 auto;
  color: var(--ink);
}

.vision .doc-label {
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1000px) {
  .who-split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .who-split figure img {
    height: 320px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .presence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .presence-stats {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-8) var(--sp-6);
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .about-cover {
    padding: 60px 0 48px;
  }

  .about-cover .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .presence-grid,
  .presence-stats,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline .step {
    padding-top: 0;
    padding-left: 52px;
  }

  .timeline .step::before {
    top: -2px;
  }
}
