/* ── ALQQAMAR — ABOUT PAGE ─────────────────────────────────────
   Source of truth: Figma "💙 ABOUT" (357:9025)
   Desktop frame 361:9592 (1440 × 1899 px)
   Mobile  frame 361:9788 (390  × 2156 px)

   All spatial values from absoluteRenderBounds (ARB).
   Fluid formula (value INCREASES 390 → 1440):
     clamp(min, calc(min + (max − min) × ((100vw − 390px) / 1050)), max)
   Inverted formula (value DECREASES 390 → 1440):
     clamp(min, calc(max + (min − max) × ((100vw − 390px) / 1050)), max)

   Leading trim: text-box applied where supported (Chrome 126+, Safari 17.4+).
   For text elements we use ink-to-ink gap values from Figma ARB.
   text-box removes leading from top/bottom so line-height boxes align to ink.
   Fallback (older browsers): adjusted padding/margin with approximated
   font-metric offsets for Montserrat at each size.

   Updated: 2026-07-08 — new typography standard applied (320→1920px range).
   About pillar eyebrows removed per design direction.
────────────────────────────────────────────────────────────────── */

/* ── PAGE SHELL ───────────────────────────────────────────────── */
.abt {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  /* mobile header ARB: 44px | desktop header ARB: 173px */
  padding-top: clamp(44px, calc(44px + (173 - 44) * ((100vw - 390px) / 1050)), 173px);
}

/* ── HERO ─────────────────────────────────────────────────────── */

/* Mobile: column stack. Desktop (≥1440px): side-by-side row, 640px tall. */
.abt-hero {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1440px) {
  .abt-hero {
    flex-direction: row;
    height: 640px;
  }
}

/* Photo
   Mobile  ARB: 390 × 300px  (361:9806)
   Desktop ARB: 680 × 640px  (361:9623) */
.abt-hero__photo {
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: #f2f4fc;
  height: clamp(300px, calc(300px + (640 - 300) * ((100vw - 390px) / 1050)), 640px);
}

@media (min-width: 1440px) {
  .abt-hero__photo {
    width: 680px;
    height: 640px;
  }
}

.abt-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text panel — padding anchored to Figma ARB at both frames.
   text-box: trim-both on .abt-headline strips leading, so padding-top = ink-top offset. */
.abt-hero__text {
  display: flex;
  flex-direction: column;
  padding: 63.82px 24px 35px;
}

@media (min-width: 1440px) {
  .abt-hero__text {
    flex: 1;
    padding: 187.52px 100px 0;
  }
}

/* Headline — H1 / Page Title standard: 32→48px (320→1920px)
   Mobile  ARB: 30px / 36px lh, height 93.36px  (361:9809)
   Desktop ARB: 46px / 55px lh, height 142.75px (361:9626)
   text-box: trim-both cap alphabetic → ink-bounds positioning (Chrome 126+, Safari 17.4+). */
.abt-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400 !important;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #000000;
  margin: 0;
  /* Leading trim — strips space above cap and below alphabetic baseline */
  text-box: trim-both cap alphabetic;
  /* Prefixed / legacy forms for broader support */
  -webkit-text-box: trim-both cap alphabetic;
  leading-trim: both;
  text-edge: cap alphabetic;
  font-size: clamp(32px, calc(32px + 16 * (100vw - 320px) / 1600), 48px);
  line-height: clamp(38px, calc(38px + 20 * (100vw - 320px) / 1600), 58px);
  /* Ink-to-ink gap from Figma ARB (exact with text-box, approximate without) */
  margin-bottom: clamp(20.6px, calc(56.43px + (20.6 - 56.43) * ((100vw - 390px) / 1050)), 56.43px);
}

/* Body copy — Body Copy standard: 16→20px (320→1920px)
   text-box on body + heading means margin-bottom = ink-to-ink gap. */
.abt-body {
  font-weight: 400;
  color: #1c1c1c;
  margin: 0;
  text-box: trim-both cap alphabetic;
  -webkit-text-box: trim-both cap alphabetic;
  leading-trim: both;
  text-edge: cap alphabetic;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 320px) / 1600), 20px);
  line-height: clamp(24px, calc(24px + 6 * (100vw - 320px) / 1600), 30px);
  margin-bottom: clamp(55.4px, calc(68.7px + (55.4 - 68.7) * ((100vw - 390px) / 1050)), 68.7px);
}

/* CTA link — Label standard: 13px fixed */
.abt-link {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  color: #0b40b4;
  line-height: clamp(14px, calc(14px + (15 - 14) * ((100vw - 390px) / 1050)), 15px);
}

.abt-link:hover {
  opacity: 0.7;
}

/* ── MANIFESTO ────────────────────────────────────────────────── */

/* Mobile  ARB: 390 × 160px, section y=734 (361:9812)
   Desktop ARB: 1440 × 220px, section y=813 (361:9629) */
.abt-manifesto {
  background: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  padding-top: clamp(53.57px, calc(53.57px + (90.6 - 53.57) * ((100vw - 390px) / 1050)), 90.6px);
  padding-bottom: clamp(46.43px, calc(46.43px + (75.29 - 46.43) * ((100vw - 390px) / 1050)), 75.29px);
  padding-left: 24px;
  padding-right: 24px;
}

/* Quote — Subheading / H3 standard: 18→24px (320→1920px) */
.abt-manifesto__quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  color: #000000;
  margin: 0;
  font-size: clamp(18px, calc(18px + 6 * (100vw - 320px) / 1600), 24px);
  line-height: clamp(23px, calc(23px + 9 * (100vw - 320px) / 1600), 32px);
  max-width: clamp(330px, calc(330px + (615 - 330) * ((100vw - 390px) / 1050)), 615px);
}

/* ── THREE PILLARS ────────────────────────────────────────────── */

/* Mobile  ARB: 390 × 612px, section y=894 (361:9814)
   Desktop ARB: 1440 × 340px, section y=1033 (361:9631) */
.abt-pillars {
  background: #ffffff;
  padding-top: clamp(42.61px, calc(42.61px + (54.9 - 42.61) * ((100vw - 390px) / 1050)), 54.9px);
  padding-bottom: clamp(51.79px, calc(51.79px + (57.79 - 51.79) * ((100vw - 390px) / 1050)), 57.79px);
  padding-left: clamp(24px, calc(24px + (210 - 24) * ((100vw - 390px) / 1050)), 210px);
  padding-right: clamp(24px, calc(24px + (210 - 24) * ((100vw - 390px) / 1050)), 210px);
}

/* Pillar grid
   Mobile: column stack, gap 51px
   Desktop: row, 3 equal columns at x=210, 570, 930 (360px pitch) */
.abt-pillars__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(51px, calc(51px + (60 - 51) * ((100vw - 390px) / 1050)), 60px);
}

@media (min-width: 1440px) {
  .abt-pillars__grid {
    flex-direction: row;
  }
}

/* Individual pillar */
.abt-pillar {
  display: flex;
  flex-direction: column;
  min-height: clamp(117px, calc(117px + (162 - 117) * ((100vw - 390px) / 1050)), 162px);
}

@media (min-width: 1440px) {
  .abt-pillar {
    flex: 1;
  }
}

/* Pillar title — Subheading / H3 standard: 18→24px (320→1920px) */
.abt-pillar__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300 !important;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
  font-size: clamp(18px, calc(18px + 6 * (100vw - 320px) / 1600), 24px);
  line-height: clamp(23px, calc(23px + 9 * (100vw - 320px) / 1600), 32px);
  margin-bottom: clamp(19px, calc(19px + (23 - 19) * ((100vw - 390px) / 1050)), 23px);
}

/* Pillar body — Secondary Body standard: 14→16px (320→1920px) */
.abt-pillar__body {
  font-weight: 400;
  font-size: clamp(14px, calc(14px + 2 * (100vw - 320px) / 1600), 16px);
  line-height: clamp(21px, calc(21px + 3 * (100vw - 320px) / 1600), 24px);
  color: #1c1c1c;
  margin: 0;
}

/* Pillar link — Label standard: 13px fixed */
.abt-pillar__link {
  margin-top: auto;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 1.1px;
  color: #0b40b4;
  text-decoration: none;
}

.abt-pillar__link:hover {
  opacity: 0.7;
}

/* ── BUTTON — FILLED ──────────────────────────────────────────────
   Button / CTA standard: 13px fixed
   ────────────────────────────────────────────────────────────────── */
.btn_filled {
  display: inline-block;
  background: #0b40b4;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.btn_filled:hover {
  opacity: 0.7;
}
