/* Extracted from about.php */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--ff-body);
      background: var(--white);
      overflow-x: clip;
      color: var(--dark-jungle-green);
      width: 100%;
      max-width: 100%;
    }

    html {
      overflow-x: clip;
      max-width: 100%;
    }

    main {
      overflow-x: clip;
      max-width: 100%;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--prussian-blue); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

    /* =============================================
       CUSTOM ABOUT PAGE STYLES (preserved)
    ============================================= */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding-inline: 30px;
    }

    /* Hero Section - Cinematic */
    .about-hero {
      position: relative;
      min-height: 85vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, var(--prussian-blue) 0%, var(--surface-dark) 100%);
    }

    .hero-bg-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.4;
    }

    .hero-glow {
      position: absolute;
      top: 30%;
      right: -20%;
      width: 80%;
      height: 80%;
      background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-hero .container {
      position: relative;
      z-index: 2;
    }

    .hero-subtitle {
      font-size: 12px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      font-weight: 500;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards;
    }

    .hero-title {
      font-family: var(--ff-display);
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 700;
      line-height: 1.05;
      color: white;
      margin-bottom: 24px;
      max-width: 800px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease 0.2s forwards;
    }

    .hero-title .gold-accent {
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-style: italic;
    }

    .hero-description {
      font-size: 1.1rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.7);
      max-width: 600px;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease 0.4s forwards;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Stats Floating Cards */
    .stats-grid {
      display: flex;
      gap: 30px;
      margin-top: 60px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.6s forwards;
    }

    .stat-card {
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(212,175,55,0.15);
      padding: 24px 32px;
      border-radius: 2px;
      min-width: 160px;
      transition: all 0.4s;
    }

    .stat-card:hover {
      border-color: rgba(212,175,55,0.4);
      background: rgba(255,255,255,0.06);
      transform: translateY(-5px);
    }

    .stat-number {
      font-family: var(--ff-display);
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
    }

    .stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 8px;
    }

    /* Narrative Section - The Story */
    .narrative {
      padding-block: var(--section-padding);
      background: var(--white);
      position: relative;
    }

    .narrative-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .narrative-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .narrative-badge .line {
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .narrative-badge span {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-dark);
      font-weight: 600;
    }

    .narrative-title {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.2;
      margin-bottom: 30px;
      color: var(--prussian-blue);
    }

    .narrative-text {
      color: var(--cadet);
      font-size: 1rem;
      line-height: 1.9;
      margin-bottom: 25px;
    }

    .narrative-quote {
      background: var(--cultured-2);
      padding: 32px 40px;
      margin: 30px 0;
      border-left: 3px solid var(--gold);
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--prussian-blue);
      font-family: var(--ff-display);
      position: relative;
    }

    .narrative-quote::before {
      content: '"';
      position: absolute;
      top: 10px;
      left: 20px;
      font-size: 5rem;
      color: rgba(212,175,55,0.1);
      font-family: serif;
    }

    .signature {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      color: var(--gold-dark);
      margin-top: 20px;
    }

    /* Visual Story - Parallax Images */
    .visual-story {
      position: relative;
      overflow: hidden;
    }

    .main-image {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
      aspect-ratio: 4/5;
      object-fit: cover;
      filter: grayscale(0%);
      transition: all 0.6s;
    }

    .floating-image {
      display: block;
      position: absolute;
      bottom: -20px;
      left: -20px;
      width: 45%;
      max-width: 240px;
      aspect-ratio: 5 / 3;
      object-fit: cover;
      object-position: center;
      border: 5px solid var(--white);
      box-shadow: 12px 12px 32px rgba(0,0,0,0.1);
    }

    .image-caption {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: rgba(11, 78, 86, 0.92);
      backdrop-filter: blur(8px);
      padding: 8px 16px;
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 1px;
    }

    /* Philosophy Section */
    .philosophy {
      background: var(--prussian-blue);
      padding-block: var(--section-padding);
      position: relative;
      overflow: hidden;
    }

    .philosophy::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gold-gradient);
    }

    .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .pillar-card {
      text-align: center;
      padding: 40px 30px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(212,175,55,0.12);
      transition: all 0.4s;
    }

    .pillar-card:hover {
      transform: translateY(-10px);
      border-color: rgba(212,175,55,0.3);
      background: rgba(212,175,55,0.05);
    }

    .pillar-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 25px;
      background: rgba(212,175,55,0.08);
      border: 1px solid rgba(212,175,55,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--gold);
      transition: all 0.4s;
    }

    .pillar-card:hover .pillar-icon {
      background: var(--gold);
      color: var(--prussian-blue);
      border-color: var(--gold);
    }

    .pillar-title {
      color: white;
      font-family: var(--ff-display);
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .pillar-text {
      color: rgba(255,255,255,0.55);
      font-size: 14px;
      line-height: 1.7;
    }

    /* Journey Timeline */
    .journey {
      padding-block: var(--section-padding);
      background: var(--cultured-2);
    }

    .section-eyebrow {
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .section-eyebrow .line {
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .section-eyebrow span {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-dark);
      font-weight: 600;
    }

    .section-title {
      text-align: center;
      font-family: var(--ff-display);
      font-size: clamp(2rem, 3vw, 2.8rem);
      margin-bottom: 60px;
      color: var(--prussian-blue);
    }

    .timeline {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
    }

    .timeline-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 60px;
      position: relative;
    }

    .timeline-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .timeline-year {
      width: 120px;
      font-family: var(--ff-display);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold-dark);
      text-align: center;
    }

    .timeline-content {
      width: calc(50% - 40px);
      background: white;
      padding: 20px 28px;
      border-radius: 2px;
      box-shadow: var(--shadow-1);
      position: relative;
    }

    .timeline-content::before {
      content: '';
      position: absolute;
      top: 20px;
      width: 20px;
      height: 2px;
      background: var(--gold);
    }

    .timeline-item:nth-child(odd) .timeline-content::before {
      right: -20px;
    }

    .timeline-item:nth-child(even) .timeline-content::before {
      left: -20px;
    }

    .timeline-dot {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 20px;
      width: 12px;
      height: 12px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
    }

    .timeline-title {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--prussian-blue);
    }

    .timeline-text {
      font-size: 13px;
      color: var(--cadet);
      line-height: 1.6;
    }

    /* Team Preview */
    .team-preview {
      padding-block: var(--section-padding);
      background: linear-gradient(180deg, #fff 0%, #f4faf6 100%);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(20px, 2.5vw, 32px);
      margin-top: 48px;
    }

    .team-card {
      text-align: center;
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(11, 78, 86, 0.1);
      box-shadow: 0 12px 32px rgba(11, 78, 86, 0.08);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                  box-shadow 0.45s ease,
                  border-color 0.35s ease;
    }

    .team-card--has-social {
      cursor: pointer;
    }

    .team-card:focus {
      outline: none;
    }

    .team-card:focus-visible {
      box-shadow: 0 0 0 3px rgba(18, 112, 122, 0.35), 0 12px 32px rgba(11, 78, 86, 0.1);
    }

    .team-card__media {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1;
      background: var(--surface-dark, #0b4e56);
    }

    .team-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: grayscale(25%);
      transform: scale(1);
      transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                  filter 0.45s ease;
    }

    .team-card__overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 20px;
      background: linear-gradient(180deg, rgba(11, 78, 86, 0.15) 0%, rgba(11, 78, 86, 0.82) 100%);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .team-card__social-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-light, #fff6b8);
      margin: 0;
    }

    .team-card__social {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      perspective: 600px;
    }

    @keyframes teamSocialPop {
      0% {
        opacity: 0;
        transform: translateY(28px) scale(0.35) rotateX(55deg);
      }
      65% {
        opacity: 1;
        transform: translateY(-6px) scale(1.12) rotateX(0deg);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
      }
    }

    @keyframes teamSocialFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-5px) scale(1.04); }
    }

    @keyframes teamSocialRing {
      0% {
        opacity: 0.85;
        transform: scale(0.85);
      }
      70% {
        opacity: 0;
        transform: scale(1.45);
      }
      100% {
        opacity: 0;
        transform: scale(1.55);
      }
    }

    @keyframes teamSocialShine {
      0% { transform: translateX(-120%) rotate(18deg); }
      100% { transform: translateX(220%) rotate(18deg); }
    }

    @keyframes teamSocialPopMuted {
      0% {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
      }
      100% {
        opacity: 0.28;
        transform: translateY(0) scale(0.92);
      }
    }

    .team-card__social-link {
      --social-i: 0;
      position: relative;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-decoration: none;
      font-size: 22px;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
      border: none;
      opacity: 0;
      transform: translateY(24px) scale(0.4);
      transition: box-shadow 0.35s ease, filter 0.35s ease;
      animation: none;
    }

    .team-card__social-link::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
      transform: translateX(-120%) rotate(18deg);
      pointer-events: none;
    }

    .team-card__social-ring {
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 2px solid currentColor;
      opacity: 0;
      pointer-events: none;
    }

    .team-card__social-link ion-icon {
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
    }

    .team-card__social-link--facebook {
      background: linear-gradient(145deg, #3b8bff 0%, #1877f2 55%, #0d5bbd 100%);
      box-shadow: 0 10px 28px rgba(24, 119, 242, 0.45);
      color: #1877f2;
    }

    .team-card__social-link--instagram {
      background: linear-gradient(145deg, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
      box-shadow: 0 10px 28px rgba(238, 42, 123, 0.4);
      color: #ee2a7b;
    }

    .team-card__social-link--twitter {
      background: linear-gradient(145deg, #3d3d3d 0%, #0a0a0a 55%, #000 100%);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
      color: #fff;
    }

    .team-card__social-link:not(.is-disabled):hover {
      filter: brightness(1.08);
      transform: translateY(-4px) scale(1.14) !important;
    }

    .team-card__social-link--facebook:not(.is-disabled):hover {
      box-shadow: 0 14px 36px rgba(24, 119, 242, 0.65);
    }

    .team-card__social-link--instagram:not(.is-disabled):hover {
      box-shadow: 0 14px 36px rgba(238, 42, 123, 0.55);
    }

    .team-card__social-link--twitter:not(.is-disabled):hover {
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.65);
    }

    .team-card__social-link.is-disabled {
      filter: grayscale(1);
      cursor: default;
      box-shadow: none;
    }

    .team-card__social-link.is-disabled::after,
    .team-card__social-link.is-disabled .team-card__social-ring {
      display: none;
    }


    .team-card__body {
      padding: 20px 16px 22px;
    }

    .team-name {
      font-family: var(--ff-display);
      font-size: 1.25rem;
      margin: 0 0 6px;
      color: var(--prussian-blue);
      line-height: 1.2;
    }

    .team-role {
      font-size: 10px;
      color: var(--gold-dark);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin: 0;
    }

    /* Desktop — hover reveals social */
    @media (hover: hover) and (pointer: fine) {
      .team-card--has-social:is(:hover, :focus-within) {
        transform: translateY(-10px);
        border-color: rgba(254, 238, 144, 0.45);
        box-shadow: 0 22px 48px rgba(11, 78, 86, 0.14);
        cursor: default;
      }

      .team-card--has-social:is(:hover, :focus-within) .team-image {
        filter: grayscale(0%);
        transform: scale(1.06);
      }

      .team-card--has-social:is(:hover, :focus-within) .team-card__overlay {
        opacity: 1;
        visibility: visible;
      }

      .team-card--has-social:is(:hover, :focus-within) .team-card__social-link:not(.is-disabled) {
        animation:
          teamSocialPop 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards,
          teamSocialFloat 2.8s ease-in-out calc(0.65s + var(--social-i) * 0.12s) infinite;
        animation-delay: calc(var(--social-i) * 0.12s), calc(0.65s + var(--social-i) * 0.12s);
      }

      .team-card--has-social:is(:hover, :focus-within) .team-card__social-link.is-disabled {
        animation: teamSocialPopMuted 0.5s ease forwards;
        animation-delay: calc(var(--social-i) * 0.1s);
      }

      .team-card--has-social:is(:hover, :focus-within) .team-card__social-link:not(.is-disabled) .team-card__social-ring {
        animation: teamSocialRing 1.8s ease-out calc(0.2s + var(--social-i) * 0.15s) infinite;
      }

      .team-card--has-social:is(:hover, :focus-within) .team-card__social-link:not(.is-disabled)::after {
        animation: teamSocialShine 2.4s ease-in-out calc(0.5s + var(--social-i) * 0.2s) infinite;
      }
    }

    /* Touch — tap toggles overlay */
    @media (hover: none), (pointer: coarse) {
      .team-card--has-social.is-active {
        transform: translateY(-6px);
        border-color: rgba(254, 238, 144, 0.45);
        box-shadow: 0 18px 40px rgba(11, 78, 86, 0.12);
      }

      .team-card--has-social.is-active .team-image {
        filter: grayscale(0%);
        transform: scale(1.05);
      }

      .team-card--has-social.is-active .team-card__overlay {
        opacity: 1;
        visibility: visible;
      }

      .team-card--has-social.is-active .team-card__social-link:not(.is-disabled) {
        animation:
          teamSocialPop 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards,
          teamSocialFloat 2.8s ease-in-out calc(0.65s + var(--social-i) * 0.12s) infinite;
        animation-delay: calc(var(--social-i) * 0.12s), calc(0.65s + var(--social-i) * 0.12s);
      }

      .team-card--has-social.is-active .team-card__social-link.is-disabled {
        animation: teamSocialPopMuted 0.5s ease forwards;
        animation-delay: calc(var(--social-i) * 0.1s);
      }

      .team-card--has-social.is-active .team-card__social-link:not(.is-disabled) .team-card__social-ring {
        animation: teamSocialRing 1.8s ease-out calc(0.2s + var(--social-i) * 0.15s) infinite;
      }

      .team-card--has-social.is-active .team-card__social-link:not(.is-disabled)::after {
        animation: teamSocialShine 2.4s ease-in-out calc(0.5s + var(--social-i) * 0.2s) infinite;
      }

      .team-card--has-social::after {
        content: 'Tap for social';
        display: block;
        font-size: 9px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(11, 78, 86, 0.45);
        padding-bottom: 14px;
        margin-top: -6px;
      }

      .team-card--has-social.is-active::after {
        content: 'Tap outside to close';
      }
    }

    /* Values Section */
    .values {
      background: var(--prussian-blue);
      padding-block: var(--section-padding);
      position: relative;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 50px;
      align-items: center;
    }

    .values-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .value-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .value-icon {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      background: rgba(212,175,55,0.08);
      border: 1px solid rgba(212,175,55,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 20px;
    }

    .value-text h4 {
      color: white;
      font-family: var(--ff-display);
      font-size: 1.3rem;
      margin-bottom: 8px;
    }

    .value-text p {
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      line-height: 1.6;
    }

    .values-image {
      position: relative;
    }

    .values-main-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
    }

    /* CTA Section */
    .about-cta {
      padding-block: 80px;
      background: linear-gradient(135deg, var(--prussian-blue) 0%, var(--surface-dark) 100%);
      text-align: center;
    }

    .about-cta h2 {
      font-family: var(--ff-display);
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      color: white;
      margin-bottom: 20px;
    }

    .about-cta p {
      color: rgba(255,255,255,0.6);
      margin-bottom: 30px;
    }

    .cta-btn {
      background: var(--gold-gradient);
      color: var(--prussian-blue);
      padding: 14px 38px;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s;
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    }

    /* Scroll Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      transform: translateX(-50px);
    }
    .reveal-left.visible {
      transform: translateX(0);
    }
    .reveal-right {
      transform: translateX(50px);
    }
    .reveal-right.visible {
      transform: translateX(0);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .reveal-left,
      .reveal-right {
        transform: translateY(32px);
      }
      .reveal-left.visible,
      .reveal-right.visible {
        transform: translateY(0);
      }
      .narrative-grid { grid-template-columns: 1fr; gap: 50px; }
      .philosophy-grid { grid-template-columns: 1fr; gap: 25px; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .values-grid { grid-template-columns: 1fr; }
      .timeline::before { left: 30px; }
      .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; padding-left: 60px; }
      .timeline-year { text-align: left; margin-bottom: 10px; }
      .timeline-content { width: 100%; }
      .timeline-dot { left: 24px; }
      .timeline-item:nth-child(odd) .timeline-content::before,
      .timeline-item:nth-child(even) .timeline-content::before { display: none; }
    }
    @media (max-width: 768px) {
      .about-hero {
        min-height: auto;
        padding-block: 100px 60px;
      }
      .container { padding-inline: 20px; }
      .stats-grid { gap: 15px; }
      .stat-card { padding: 16px 20px; min-width: 0; flex: 1 1 calc(50% - 8px); }
      .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
      .floating-image { left: 0; bottom: -12px; width: 42%; max-width: 180px; aspect-ratio: 5 / 3; }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal,
      .reveal-left,
      .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }
