/* ===============================
   ABOUT PAGE
================================ */

.about-page {
  --about-red: #b3001b;
  --about-red-dark: #850014;
  --about-ink: #172033;
  --about-muted: #667085;
  --about-line: #e9eaf0;
  --about-soft: #f7f7fa;
  width: 100%;
  overflow: hidden;
  color: var(--about-ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(179, 0, 27, 0.06), transparent 25rem),
    #fff;
}

.about-page *,
.about-page *::before,
.about-page *::after {
  box-sizing: border-box;
}

.about-hero,
.values-section,
.about-story-section,
.trust-callout {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* Hero */
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 8vw, 105px) 0 clamp(56px, 7vw, 90px);
}

.about-hero-copy {
  max-width: 650px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--about-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--about-red);
}

.about-hero h1 {
  max-width: 610px;
  margin: 0 0 22px;
  color: var(--about-ink);
  font-size: clamp(42px, 5.6vw, 70px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.about-hero-copy > p {
  margin: 0 0 15px;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-hero-copy .about-lead {
  color: #3e4759;
  font-size: 18px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 31px;
}

.about-highlights > div {
  padding: 15px 16px;
  border: 1px solid var(--about-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 25px rgba(18, 28, 45, 0.04);
}

.about-highlights strong,
.about-highlights span {
  display: block;
}

.about-highlights strong {
  margin-bottom: 3px;
  color: var(--about-red);
  font-size: 17px;
}

.about-highlights span {
  color: var(--about-muted);
  font-size: 12px;
  font-weight: 600;
}

.about-hero-image {
  position: relative;
  min-height: 515px;
  padding: 16px 0 0 16px;
}

.about-hero-image::before {
  content: "";
  position: absolute;
  inset: 0 26px 26px 0;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--about-red), var(--about-red-dark));
}

.about-hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center;
  border: 7px solid #fff;
  border-radius: 26px;
  background: #f7f7fa;
  box-shadow: 0 25px 60px rgba(20, 27, 40, 0.18);
}

.about-image-note {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: -9px;
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 245px;
  padding: 16px 19px;
  border: 1px solid rgba(179, 0, 27, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 27, 40, 0.16);
}

.about-image-note > i {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--about-red);
}

.about-image-note span,
.about-image-note strong {
  display: block;
}

.about-image-note span {
  color: var(--about-muted);
  font-size: 12px;
  line-height: 1.45;
}

.about-image-note strong {
  color: var(--about-ink);
  font-size: 14px;
}

/* Values */
.values-section {
  padding: clamp(58px, 7vw, 85px) clamp(24px, 5vw, 64px);
  border-radius: 30px;
  background: var(--about-ink);
  box-shadow: 0 22px 60px rgba(23, 32, 51, 0.13);
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--about-ink);
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.7;
}

.values-section .section-heading h2 {
  color: #fff;
}

.values-section .section-heading p {
  color: #aeb6c5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  min-width: 0;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.065);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.value-icon {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--about-red);
}

.value-card strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 18px;
}

.value-card p {
  margin: 0;
  color: #aeb6c5;
  font-size: 14px;
  line-height: 1.55;
}

/* Story cards */
.about-story-section {
  padding: clamp(78px, 9vw, 120px) 0 60px;
}

.section-heading-left {
  max-width: 690px;
  margin: 0 0 42px;
  text-align: left;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-block {
  position: relative;
  min-width: 0;
  padding: clamp(25px, 3vw, 34px);
  border: 1px solid var(--about-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(18, 28, 45, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-block:hover {
  transform: translateY(-3px);
  border-color: rgba(179, 0, 27, 0.25);
  box-shadow: 0 18px 42px rgba(18, 28, 45, 0.09);
}

.about-block.featured-block {
  border-top: 4px solid var(--about-red);
}

.story-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--about-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-block h2 {
  margin: 0 0 13px;
  color: var(--about-ink);
  font-size: clamp(21px, 2.4vw, 27px);
  letter-spacing: -0.025em;
}

.about-block p {
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.75;
}

.about-block p strong {
  color: #434c5d;
}

.community-block {
  grid-column: 1 / -1;
  padding-right: clamp(30px, 12vw, 150px);
  background: linear-gradient(120deg, #fff 60%, #fff4f5);
}

/* Trust callout */
.trust-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-bottom: clamp(70px, 8vw, 110px);
  padding: 28px 32px;
  border: 1px solid rgba(179, 0, 27, 0.15);
  border-radius: 20px;
  background: #fff7f8;
}

.trust-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--about-red);
  box-shadow: 0 10px 22px rgba(179, 0, 27, 0.22);
}

.trust-callout h3 {
  margin: 0 0 5px;
  color: var(--about-ink);
  font-size: 19px;
}

.trust-callout p {
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.55;
}

.trust-callout a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 17px;
  border-radius: 11px;
  color: #fff;
  background: var(--about-red);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.trust-callout a:hover {
  transform: translateY(-1px);
  background: var(--about-red-dark);
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-hero-copy {
    max-width: 760px;
  }

  .about-hero-image {
    min-height: 455px;
  }

  .about-hero-image img {
    height: 440px;
  }

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

@media (max-width: 680px) {
  .about-hero,
  .values-section,
  .about-story-section,
  .trust-callout {
    width: min(100% - 28px, 1180px);
  }

  .about-hero {
    padding-top: 45px;
  }

  .about-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-highlights > div {
    display: flex;
    gap: 8px;
    align-items: baseline;
  }

  .about-hero-image {
    min-height: 355px;
    padding: 10px 0 0 10px;
  }

  .about-hero-image::before {
    inset: 0 16px 16px 0;
    border-radius: 21px;
  }

  .about-hero-image img {
    height: 340px;
    border-width: 5px;
    border-radius: 20px;
  }

  .about-image-note {
    right: 3px;
    bottom: -18px;
    min-width: 220px;
    padding: 13px 15px;
  }

  .values-section {
    padding: 48px 18px;
    border-radius: 23px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .community-block {
    grid-column: auto;
    padding-right: 25px;
  }

  .trust-callout {
    grid-template-columns: auto 1fr;
    padding: 22px;
  }

  .trust-callout a {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .value-card,
  .about-block,
  .trust-callout a {
    transition: none;
  }
}
