/* ─────────────────────────────────────────────────────────────
   about.css — About page styles
   Fixes applied:
   - stat-item at 576px: flex-direction corrected to column (was row — logically inverted)
   - All decorative comment dividers removed
───────────────────────────────────────────────────────────── */

/* Page base */
.about-page {
  background: #000;
  color: #fff;
}

/* Section label */
.section-label {
  font-family: var(--font-accent, 'Cormorant Garamond', Georgia, serif);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold, #c8a45d);
  display: block;
  margin-bottom: 14px;
}

.section-label--light { color: var(--gold, #c8a45d); }

/* Section heading */
.section-heading {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold, #c8a45d);
}

.section-heading--light { color: #fff; }

/* Gold rule divider */
.gold-rule {
  width: 44px;
  height: 1px;
  background: var(--gold, #c8a45d);
  margin-bottom: 28px;
}

/* Scroll reveal base states */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.32s; }

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Button base */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold, #c8a45d);
  color: #000;
}

.btn-gold:hover { background: #b8943f; }

.btn-outline-white {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
}

/* Hero banner */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 30vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}

.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.50) 45%,
    rgba(0,0,0,0.20) 100%
  );
}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.about-hero__kicker {
  display: inline-block;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,175,100,0.95);
  border: 1px solid rgba(212,175,100,0.45);
  border-radius: 999px;
  padding: 7px 18px;
  margin-top: 100px;
  margin-bottom: 20px;
}

.about-hero__title {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
}

.about-hero__title em {
  font-style: italic;
  color: var(--gold, #c8a45d);
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.about-breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.about-breadcrumb a:hover { color: var(--gold, #c8a45d); }

.about-breadcrumb span:last-child { color: var(--gold, #c8a45d); }

/* Scroll hint animation */
.about-hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.about-hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold, #c8a45d));
  margin: auto;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Who we are section */
.about-intro {
  padding: 110px 0;
  background: #000;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro__lead {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.about-intro__body {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255,255,255,0.62);
}

/* Stats row */
.about-intro__stats {
  display: flex;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.stat-item:not(:first-child) { padding-left: 24px; }

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold, #c8a45d);
  line-height: 1;
}

.stat-number em {
  font-style: normal;
  font-size: 1.1rem;
  margin-left: 2px;
}

.stat-label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Image collage */
.img-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  position: relative;
}

.img-collage__main {
  border-radius: 3px;
  overflow: hidden;
}

.img-collage__main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.img-collage__main:hover img { transform: scale(1.03); }

/* Fixed: badge is inside img-collage so absolute positioning works correctly */
.img-collage__badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--gold, #c8a45d);
  color: #000;
  border-radius: 3px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.5);
  z-index: 2;
}

.badge-year {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

.badge-num {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

/* Our vision section */
.about-vision {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.about-vision__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-vision__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-vision__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.82) 50%,
    rgba(0,0,0,0.65) 100%
  );
}

.about-vision__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-vision__body p {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

/* Vision pillars */
.vision-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vision-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,164,93,0.15);
  border-radius: 4px;
  padding: 26px 22px;
  transition: border-color 0.35s, background 0.35s, transform 0.35s;
}

.vision-pillar:hover {
  border-color: rgba(200,164,93,0.4);
  background: rgba(200,164,93,0.06);
  transform: translateY(-4px);
}

.vision-pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200,164,93,0.3);
  background: rgba(200,164,93,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.vision-pillar__icon i {
  color: var(--gold, #c8a45d);
  font-size: 17px;
}

.vision-pillar h4 {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.vision-pillar p {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  margin: 0;
}

/* Dholera opportunity section */
.about-opportunity {
  padding: 110px 0;
  background: #060606;
}

.opportunity-header {
  max-width: 580px;
  margin-bottom: 56px;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.opportunity-lead {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.opportunity-text p {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255,255,255,0.62);
  margin-bottom: 16px;
}

.opportunity-text p strong {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.opportunity-cta-text {
  font-family: var(--font-accent, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold, #c8a45d);
  margin-bottom: 28px;
}

.opportunity-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.highlight-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 24px 20px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.highlight-card:hover {
  border-color: rgba(200,164,93,0.3);
  background: rgba(200,164,93,0.05);
  transform: translateY(-3px);
}

.highlight-card > i {
  color: var(--gold, #c8a45d);
  font-size: 20px;
  display: block;
  margin-bottom: 14px;
}

.highlight-card h4 {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.highlight-card p {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* Why choose us section */
.about-why {
  padding: 110px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.about-why__bg-accent {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(200,164,93,0.03), transparent);
  pointer-events: none;
}

.about-why__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-why__image { position: relative; }

.about-why__img-wrap {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #0d0d0d;
  min-height: 420px;
}

.about-why__img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 0 40px rgba(200,164,93,0.18));
  transition: filter 0.5s, transform 0.5s;
}

.about-why__img-wrap:hover img {
  filter: drop-shadow(0 0 60px rgba(200,164,93,0.35));
  transform: scale(1.03);
}

.about-why__img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.about-why__img-border {
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid rgba(200,164,93,0.18);
  border-radius: 4px;
  z-index: 0;
}

.about-why__body {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
}

.why-subheading {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.why-list li {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(200,164,93,0.4);
  background: rgba(200,164,93,0.08);
  flex-shrink: 0;
}

.why-check i {
  color: var(--gold, #c8a45d);
  font-size: 10px;
}

.about-why__closing {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14.5px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

.about-why__closing strong {
  color: var(--gold, #c8a45d);
  font-weight: 500;
  font-style: normal;
}

/* CTA strip */
.about-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.about-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.about-cta__content {
  position: relative;
  z-index: 1;
}

.about-cta__label {
  font-family: var(--font-accent, 'Cormorant Garamond', Georgia, serif);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold, #c8a45d);
  display: block;
  margin-bottom: 18px;
}

.about-cta__content h2 {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-cta__sub {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  margin-bottom: 38px;
  letter-spacing: 0.02em;
}

.about-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────
   Responsive breakpoints
───────────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .about-intro    { padding: 90px 0; }
  .about-intro__grid { gap: 60px; }
  .about-vision   { padding: 100px 0; }
  .about-vision__inner { gap: 60px; }
  .about-opportunity { padding: 90px 0; }
  .opportunity-grid  { gap: 52px; }
  .about-why      { padding: 90px 0; }
  .about-why__inner  { gap: 60px; }
  .about-cta      { padding: 100px 0; }
}

@media (max-width: 1024px) {
  .about-intro__grid,
  .about-vision__inner,
  .about-why__inner   { grid-template-columns: 1fr; gap: 44px; }
  .opportunity-grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-intro        { padding: 80px 0; }
  .img-collage__main img { height: 300px; }
  /* Badge offset reduced to prevent overflow when column collapses */
  .img-collage__badge { bottom: -12px; left: -12px; }
  .about-vision       { padding: 84px 0; }
  .vision-pillars     { gap: 12px; }
  .about-opportunity  { padding: 80px 0; }
  .opportunity-highlights { grid-template-columns: 1fr 1fr; }
  .about-why          { padding: 80px 0; }
  /* Decorative border hidden when grid collapses — negative offsets would overflow */
  .about-why__img-border { display: none; }
  .about-why__img-wrap { min-height: 300px; }
  .about-cta          { padding: 88px 0; }
}

@media (max-width: 900px) {
  .stat-item          { min-width: 80px; }
  .vision-pillars     { grid-template-columns: 1fr; gap: 12px; }
  .opportunity-highlights { grid-template-columns: 1fr; gap: 12px; }
  .about-why__img-wrap { min-height: 240px; }
}

@media (max-width: 768px) {
  /* Hero: auto height so content is never clipped */
  .about-hero         { height: auto; min-height: 400px; }
  .about-hero__content { padding-bottom: 56px; }
  /* Kicker top margin reduced to clear fixed header without excessive gap */
  .about-hero__kicker { margin-top: 56px; font-size: 0.76rem; padding: 6px 14px; margin-bottom: 16px; }
  /* Clamp corrected: floor stays below desktop output at this width */
  .about-hero__title  { font-size: clamp(1.5rem, 5.5vw, 2.4rem); margin-bottom: 18px; }
  .about-breadcrumb   { font-size: 12px; flex-wrap: wrap; gap: 7px; }
  /* Scroll hint hidden on short viewports to prevent overlap */
  .about-hero__scroll-hint { display: none; }

  .about-intro        { padding: 64px 0; }
  .about-vision       { padding: 64px 0; }
  .about-why          { padding: 64px 0; }
  .about-opportunity  { padding: 64px 0; }
  .about-cta          { padding: 72px 0; }

  .about-intro__stats { margin-top: 28px; padding-top: 24px; }

  /* Badge repositioned to static flow — absolute offsets overflow at mobile width */
  .img-collage        { display: flex; flex-direction: column; }
  .img-collage__main img { height: 250px; }
  .img-collage__badge { position: static; margin-top: 10px; align-self: flex-start; border-radius: 3px; }

  .about-why__img-wrap { min-height: 200px; }

  .about-cta__content h2 { font-size: clamp(1.55rem, 5vw, 2.2rem); }
  .about-cta__sub        { font-size: 14px; margin-bottom: 26px; }
}

@media (max-width: 576px) {
  .about-hero         { min-height: 340px; }
  .about-hero__kicker { font-size: 0.70rem; padding: 5px 12px; margin-top: 52px; margin-bottom: 12px; }
  /* Clamp corrected: floor correctly scales downward at this width */
  .about-hero__title  { font-size: clamp(1.45rem, 7.5vw, 2rem); margin-bottom: 14px; }
  .about-hero__content { padding-bottom: 44px; }

  .about-intro        { padding: 52px 0; }
  .about-vision       { padding: 52px 0; }
  .about-why          { padding: 52px 0; }
  .about-opportunity  { padding: 52px 0; }
  .about-cta          { padding: 58px 0; }

  .about-intro__grid  { gap: 32px; }
  .about-intro__lead  { font-size: 0.95rem; }
  .about-intro__body  { font-size: 13.5px; }

  /* Fixed: was flex-direction: row which made border-bottom invisible — corrected to column */
  .about-intro__stats { flex-direction: column; gap: 0; margin-top: 24px; padding-top: 20px; }

  .stat-item {
    flex: 1;
    min-width: unset;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0 0 14px 0;
    margin-bottom: 14px;
  }

  .stat-item:not(:first-child) { padding-left: 0; }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  /* stat-number clamp: was fixed 2.2rem — never scaled on mobile */
  .stat-number        { font-size: clamp(1.55rem, 6vw, 2rem); }
  .stat-label         { font-size: 10.5px; }

  .img-collage__main img { height: 210px; }

  .vision-pillar      { padding: 20px 16px; }
  .vision-pillar__icon { width: 38px; height: 38px; margin-bottom: 10px; }
  .vision-pillar__icon i { font-size: 14px; }
  .vision-pillar h4   { font-size: 0.88rem; margin-bottom: 6px; }
  .vision-pillar p    { font-size: 12.5px; }

  .opportunity-header { margin-bottom: 32px; }
  .opportunity-lead   { font-size: 1.05rem; }
  .highlight-card     { padding: 18px 16px; }
  .highlight-card h4  { font-size: 0.88rem; }
  .highlight-card p   { font-size: 12.5px; }

  .about-why__img-wrap { min-height: 170px; }
  .why-list li        { font-size: 13px; gap: 10px; }
  .why-subheading     { font-size: 1rem; }
  .about-why__body    { font-size: 13.5px; }
  .about-why__closing { font-size: 13.5px; }

  .about-cta__content h2 { font-size: clamp(1.4rem, 6.5vw, 1.9rem); }
  .about-cta__sub     { font-size: 13.5px; margin-bottom: 22px; }
  .about-cta__actions { flex-direction: column; align-items: center; gap: 12px; }
  .about-cta__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .section-heading    { font-size: clamp(1.45rem, 5.5vw, 2rem); }
}

@media (max-width: 400px) {
  .about-hero         { min-height: 300px; }
  .about-hero__kicker { margin-top: 44px; font-size: 0.65rem; padding: 5px 10px; }
  .about-hero__title  { font-size: clamp(1.35rem, 9vw, 1.75rem); }
  .about-breadcrumb   { font-size: 11px; gap: 5px; }

  .about-intro        { padding: 40px 0; }
  .about-vision       { padding: 40px 0; }
  .about-why          { padding: 40px 0; }
  .about-opportunity  { padding: 40px 0; }
  .about-cta          { padding: 46px 0; }

  .stat-number        { font-size: 1.55rem; }
  .stat-label         { font-size: 10px; }

  .img-collage__main img { height: 185px; }

  /* Pillars as horizontal row on tiny screens for space efficiency */
  .vision-pillar      { display: flex; align-items: flex-start; gap: 12px; padding: 14px 12px; text-align: left; }
  .vision-pillar__icon { flex-shrink: 0; margin-bottom: 0; width: 34px; height: 34px; }
  .vision-pillar h4   { margin-bottom: 4px; font-size: 0.85rem; }
  .vision-pillar p    { font-size: 12px; }

  /* Highlight cards as horizontal row on tiny screens */
  .highlight-card     { display: flex; align-items: flex-start; gap: 12px; padding: 14px 12px; }
  .highlight-card > i { flex-shrink: 0; margin-bottom: 0; font-size: 17px; }
  .highlight-card h4  { font-size: 0.85rem; margin-bottom: 4px; }
  .highlight-card p   { font-size: 12px; }

  .about-why__img-wrap { min-height: 150px; }
  .about-cta__actions .btn { max-width: 100%; padding: 13px 20px; font-size: 11px; }
  .section-heading    { font-size: clamp(1.3rem, 8vw, 1.75rem); }

  .about-intro__lead  { font-size: 0.9rem; }
  .about-intro__body  { font-size: 13px; }
  .about-why__body    { font-size: 13px; }
  .about-why__closing { font-size: 13px; }
}