@charset "utf-8";

/* ==========================================================================
   PLAASlik About Page
   Uses the same visual language as index.php, but with a more editorial,
   spacious layout instead of a stack of bordered cards.
   ========================================================================== */

.about-page {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Hero - intentionally uses the same visual treatment as the home hero
   -------------------------------------------------------------------------- */

.about-hero {
  position: relative;
  min-height: 55svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.about-hero-media,
.about-hero-scrim {
  position: absolute;
  inset: 0;
}

.about-hero-media { z-index: 0; }

.about-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Editorial backdrop for the About hero. Deliberately its own thing -
   a quiet charcoal-to-green wash with a fine grain, rather than the
   corrugated-ridge pattern and wave seam used on the home hero - so this
   page reads as a calmer, more editorial space instead of a re-run of
   the homepage banner. */
.about-hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(85% 65% at 15% 10%, rgba(19,128,75,.34), transparent 60%),
    radial-gradient(70% 60% at 100% 100%, rgba(19,128,75,.14), transparent 55%),
    linear-gradient(165deg, #101A13 0%, #182019 55%, #0E140D 100%);
}

.about-hero-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.about-hero-scrim {
  z-index: 1;
  background: linear-gradient(180deg, rgba(12,20,15,.55) 0%, rgba(12,20,15,.3) 45%, rgba(12,20,15,.72) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  padding: calc(var(--header-h-mobile) + 60px) var(--edge) 80px;
  text-align: center;
  color: var(--white);
}

.about-hero .hero-eyebrow {
  margin-bottom: 20px;
}

.about-hero .hero-title {
  font-size: clamp(3rem, 11vw, 6.5rem);
  line-height: .95;
}

.about-hero .hero-title .plaas {
  color: var(--white);
}

.about-hero .hero-title .lik {
  color: var(--green);
}

.about-hero .hero-sub {
  max-width: 52ch;
  margin-top: 26px;
}

/* A single quiet hairline instead of the home hero's wave seam - enough
   of a signature to feel intentional without borrowing the homepage's
   corrugated-border motif. */
.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, var(--green) 50%, transparent);
  opacity: .7;
}

/* --------------------------------------------------------------------------
   Shared section structure
   -------------------------------------------------------------------------- */

.about-story,
.about-material,
.about-philosophy,
.about-future {
  padding: 100px var(--edge);
}

.about-story {
  background: var(--stone);
}

.about-material {
  background: var(--white);
}

.about-south-africa {
  padding: 110px var(--edge);
  background:
    radial-gradient(70% 100% at 10% 0%, rgba(19,128,75,.18), transparent 60%),
    var(--charcoal);
  color: var(--white);
}

.about-philosophy {
  background: var(--stone);
}

.about-future {
  background: var(--white);
}

.about-split,
.philosophy-grid {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.about-split--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.about-split--reverse .about-copy {
  grid-column: 1;
  grid-row: 1;
}

.about-split--reverse .material-card {
  grid-column: 2;
  grid-row: 1;
}

.about-copy {
  max-width: 680px;
}

.about-copy .section-title {
  margin-bottom: 28px;
}

.about-copy p {
  max-width: 62ch;
  margin-bottom: 20px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(24,32,25,.76);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-lead {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem) !important;
  line-height: 1.55 !important;
  color: var(--charcoal) !important;
}

.about-lead strong {
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   Name breakdown
   -------------------------------------------------------------------------- */

.wordmark-breakdown {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.wordmark-breakdown > div:not(.wordmark-plus) {
  min-width: 130px;
  padding: 18px 22px;
  border-left: 3px solid var(--green);
  background: rgba(255,255,255,.6);
	border-radius: var(--radius);
}

.wordmark-breakdown > div:first-child {
  border-color: var(--charcoal);
}

.wordmark-breakdown strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -.02em;
}

.wordmark-breakdown div:first-child strong {
  color: var(--charcoal);
}

.wordmark-breakdown div:nth-child(3) strong {
  color: var(--green);
}

.wordmark-breakdown span {
  display: block;
  margin-top: 4px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(24,32,25,.55);
}

.wordmark-plus {
  font-size: 1.5rem;
  color: var(--rust);
}

/* --------------------------------------------------------------------------
   Material panel
   -------------------------------------------------------------------------- */

.material-card {
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(19,128,75,.92), rgba(12,92,55,.92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 2px, transparent 2px 14px);
  box-shadow: var(--shadow-card);
	border-radius: var(--radius);
}

.material-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 11px,
    rgba(255,255,255,.16) 11px 14px,
    transparent 14px 27px
  );
  transform: skewX(-5deg) scale(1.2);
}

.material-card-inner {
  position: relative;
  z-index: 1;
  padding: 42px;
  color: var(--white);
}

.material-mark {
  display: block;
  margin-bottom: 70px;
  font-size: .82rem;
  letter-spacing: .16em;
  color: rgba(255,255,255,.65);
}

.material-card h3 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.material-card p {
  max-width: 36ch;
  margin: 0;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}

/* --------------------------------------------------------------------------
   South African section
   -------------------------------------------------------------------------- */

.about-south-africa .section-head {
  max-width: 760px;
}

.about-south-africa .section-eyebrow {
  color: var(--green);
}

.about-south-africa .section-sub {
  color: rgba(255,255,255,.78);
}

.sa-grid {
  max-width: 1180px;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.15);
}

.sa-card {
  min-height: 260px;
  padding: 34px;
  background: rgba(24,32,25,.92);
}

.sa-number {
  display: block;
  margin-bottom: 52px;
  font-size: .8rem;
  letter-spacing: .14em;
  color: var(--green);
}

.sa-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.sa-card p {
  margin: 0;
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.67);
}

/* --------------------------------------------------------------------------
   Philosophy
   -------------------------------------------------------------------------- */

.philosophy-grid {
  align-items: start;
}

.philosophy-copy {
  max-width: 660px;
}

.philosophy-copy > p {
  margin: 0 0 20px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(24,32,25,.76);
}

.principles {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.principles > div {
  padding-top: 18px;
  border-top: 2px solid var(--charcoal);
}

.principles span {
  display: block;
  margin-bottom: 26px;
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--rust);
}

.principles strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.principles p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
  color: rgba(24,32,25,.6);
}

/* --------------------------------------------------------------------------
   Future
   -------------------------------------------------------------------------- */

.about-future-inner {
  max-width: 1180px;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.about-future .section-title {
  margin-bottom: 18px;
}

.about-future .section-sub {
  max-width: 62ch;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.about-cta {
  position: relative;
  padding: 100px var(--edge) 120px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(19,128,75,.28), transparent 60%),
    var(--charcoal);
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  background: var(--white);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,14 Q25,34 50,14 T100,14 T150,14 T200,14 T250,14 T300,14 T350,14 T400,14 T450,14 T500,14 T550,14 T600,14 T650,14 T700,14 T750,14 T800,14 T850,14 T900,14 T950,14 T1000,14 T1050,14 T1100,14 T1150,14 T1200,14 L1200,0 L0,0 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,14 Q25,34 50,14 T100,14 T150,14 T200,14 T250,14 T300,14 T350,14 T400,14 T450,14 T500,14 T550,14 T600,14 T650,14 T700,14 T750,14 T800,14 T850,14 T900,14 T950,14 T1000,14 T1050,14 T1100,14 T1150,14 T1200,14 L1200,0 L0,0 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.about-cta-eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.about-cta h2 {
  margin: 0 auto 34px;
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .about-split,
  .about-split--reverse,
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-split--reverse .about-copy,
  .about-split--reverse .material-card {
    grid-column: auto;
    grid-row: auto;
  }

  .material-card {
    min-height: 360px;
  }

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

  .sa-card {
    min-height: 0;
  }

  .sa-number {
    margin-bottom: 28px;
  }

  .about-future-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .about-story,
  .about-material,
  .about-philosophy,
  .about-future,
  .about-south-africa {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-hero {
    min-height: 72svh;
  }

  .about-hero-content {
    padding-top: calc(var(--header-h-mobile) + 35px);
  }

  .wordmark-breakdown {
    gap: 10px;
  }

  .wordmark-breakdown > div:not(.wordmark-plus) {
    min-width: 0;
    flex: 1;
    padding: 16px;
  }

  .wordmark-breakdown strong {
    font-size: 1.2rem;
  }

  .material-card-inner {
    padding: 30px;
  }

  .material-mark {
    margin-bottom: 45px;
  }

  .principles {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-cta {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}

@media only screen and (max-width: 450px){
	
	.about-cta::before {
	  width: 200%;
		top: -1px;
	}
	
}

@media (prefers-reduced-motion: reduce) {
  .about-hero video {
    display: none;
  }
}