.content-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0 4rem;
}

.page-section {
  margin: 0 0 clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.about-hero {
  overflow: hidden;
}

.about-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 3rem);
  padding: clamp(1.35rem, 4vw, 2.5rem);
}

.about-hero-copy {
  display: grid;
  align-content: center;
  min-height: 300px;
  padding: clamp(0.6rem, 2vw, 1.5rem);
}

.about-hero h1 {
  max-width: 720px;
  margin: 1rem 0 0;
  color: white;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.about-hero p {
  max-width: 660px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.18rem);
  line-height: 1.85;
}

.about-hero-media {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 0;
  box-shadow: var(--shadow);
}

.about-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 30, 0.04), rgba(6, 16, 30, 0.38));
}

.philosophy-section,
.profile-section,
.pillars-section,
.principles-section,
.timeline-section,
.about-cta {
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 1rem;
}

.profile-summary,
.profile-facts {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(3, 10, 24, 0.34);
  padding: clamp(1.15rem, 3vw, 1.8rem);
}

.profile-summary h3 {
  margin: 0 0 0.85rem;
  color: white;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.profile-summary p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}

.profile-facts {
  display: grid;
  gap: 0.45rem;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(33, 199, 183, 0.16), rgba(246, 180, 75, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.profile-facts span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-facts strong {
  display: block;
  margin-bottom: 0.7rem;
  color: white;
  line-height: 1.35;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-heading h2,
.about-cta h2 {
  margin: 0.75rem 0 0;
  color: white;
  font-size: clamp(1.9rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 1rem;
  align-items: stretch;
}

.philosophy-copy,
.vision-box,
.pillars-grid article,
.principles-list,
.timeline article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.philosophy-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
  background: rgba(3, 10, 24, 0.34);
  padding: clamp(1.15rem, 3vw, 1.8rem);
}

.philosophy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.vision-box {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1.15rem;
  min-height: 100%;
  overflow: hidden;
  border-color: rgba(246, 180, 75, 0.22);
  background:
    linear-gradient(145deg, #111e31 0%, #0a1423 72%, #08111e 100%);
  padding: clamp(1.4rem, 3.4vw, 2.15rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 40px rgba(0, 0, 0, 0.16);
}

.vision-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.vision-box::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(246, 180, 75, 0.08);
  border-radius: 50%;
}

.vision-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.vision-icon {
  display: grid;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(246, 180, 75, 0.32);
  border-radius: 12px;
  background: rgba(246, 180, 75, 0.08);
  color: var(--gold);
}

.vision-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.vision-header h3 {
  margin: 0.35rem 0 0;
  color: white;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.2;
}

.vision-statement,
.vision-detail {
  position: relative;
  z-index: 1;
  margin: 0;
}

.vision-statement {
  color: white;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 850;
  line-height: 1.32;
}

.vision-detail {
  color: #bdc8d6;
  font-size: 0.98rem;
  line-height: 1.72;
}

.vision-focus {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 0.2rem;
}

.vision-focus span {
  border: 1px solid rgba(246, 180, 75, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #e8edf3;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.7rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillars-grid article {
  display: grid;
  align-content: start;
  min-height: 245px;
  background: rgba(3, 10, 24, 0.3);
  padding: clamp(1.15rem, 3vw, 1.65rem);
}

.pillars-grid svg {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillars-grid h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.3rem, 3vw, 1.65rem);
}

.pillars-grid p,
.timeline p,
.about-cta p {
  color: var(--muted);
  line-height: 1.78;
}

.pillars-grid p {
  margin: 0.8rem 0 0;
}

.principles-list {
  display: grid;
  gap: 0.85rem;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.35rem);
  list-style: none;
  background: #f8fbff;
  color: #0c1727;
}

.principles-list li {
  border-left: 4px solid var(--gold);
  background: white;
  border-radius: 0 12px 12px 0;
  color: #263548;
  font-size: 1rem;
  line-height: 1.72;
  padding: 0.95rem 1.1rem;
}

.principles-list strong {
  color: #07111f;
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline article {
  background: rgba(3, 10, 24, 0.3);
  padding: clamp(1.1rem, 3vw, 1.5rem);
}

.timeline span {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #07111f;
  font-size: 0.8rem;
  font-weight: 900;
}

.timeline h3 {
  margin: 1rem 0 0;
  color: white;
  font-size: 1.16rem;
  line-height: 1.25;
}

.timeline p {
  margin: 0.75rem 0 0;
}

.about-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border-color: rgba(246, 180, 75, 0.22);
  background:
    radial-gradient(circle at 100% 100%, rgba(246, 180, 75, 0.08), transparent 34%),
    linear-gradient(145deg, #111e31 0%, #0a1423 72%, #08111e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 40px rgba(0, 0, 0, 0.16);
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
}

.about-cta-copy,
.about-cta-actions {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  max-width: 720px;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
}

.about-cta p {
  max-width: 760px;
  margin: 0.85rem 0 0;
}

.about-cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.about-cta-contacts a {
  display: grid;
  gap: 0.2rem;
  min-width: 205px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: white;
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.about-cta-contacts a:hover {
  border-color: rgba(246, 180, 75, 0.32);
  background: rgba(246, 180, 75, 0.055);
}

.about-cta-contacts span {
  color: #9eabbc;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-cta-contacts strong {
  font-size: 0.92rem;
}

.about-cta-actions {
  display: grid;
  gap: 0.7rem;
  min-width: 190px;
}

.about-cta-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 980px) {
  .about-hero-content,
  .profile-grid,
  .philosophy-layout,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .pillars-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cta .button {
    justify-self: start;
  }

  .about-cta-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .about-cta-actions .button {
    width: auto;
  }
}

@media (max-width: 720px) {
  .content-main {
    width: min(100% - 24px, 1120px);
    padding-top: 1.25rem;
  }

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

  .about-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .about-cta .button {
    width: 100%;
  }

  .about-cta-actions {
    display: grid;
  }

  .about-cta-contacts a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .about-hero-copy {
    min-height: auto;
  }

  .about-hero-media,
  .about-hero-media img {
    min-height: 240px;
  }
}
