/* 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%, #1a0a00 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 {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      filter: grayscale(0%);
      transition: all 0.6s;
    }

    .floating-image {
      position: absolute;
      bottom: -40px;
      left: -40px;
      width: 55%;
      aspect-ratio: 1;
      object-fit: cover;
      border: 8px solid var(--white);
      box-shadow: 20px 20px 50px rgba(0,0,0,0.15);
    }

    .image-caption {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: rgba(55,24,1,0.9);
      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: white;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-top: 40px;
    }

    .team-card {
      text-align: center;
      transition: all 0.4s;
    }

    .team-card:hover {
      transform: translateY(-8px);
    }

    .team-image {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      filter: grayscale(20%);
      transition: all 0.4s;
    }

    .team-card:hover .team-image {
      filter: grayscale(0%);
    }

    .team-name {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      margin-top: 18px;
      margin-bottom: 4px;
      color: var(--prussian-blue);
    }

    .team-role {
      font-size: 11px;
      color: var(--gold-dark);
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    /* 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%, #1a0a00 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);
    }

    /* Footer (from index) */
    .footer {
      background: var(--prussian-blue);
      color: var(--white);
    }
    .footer-top {
      padding-top: 80px; padding-bottom: 40px;
      border-bottom: 1px solid rgba(212,175,55,0.1);
    }
    .footer-brand { margin-bottom: 60px; }
    .footer-brand .logo { margin-bottom: 20px; }
    .section-text { font-size: 14px; line-height: 1.8; margin-bottom: 28px; opacity: 0.6; max-width: 42ch; }
    .contact-list { display: grid; gap: 14px; margin-bottom: 28px; list-style: none; }
    .contact-link { display: flex; align-items: flex-start; gap: 10px; text-decoration: none; }
    .contact-link ion-icon { font-size: 16px; color: var(--gold); margin-top: 2px; }
    .contact-link :is(address, span) { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
    .contact-link:hover span { color: var(--gold-light); }
    .social-list { display: flex; align-items: center; gap: 12px; list-style: none; }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid rgba(212,175,55,0.2);
      border-radius: 50%;
      display: grid; place-items: center;
      color: rgba(255,255,255,0.5);
      font-size: 16px;
      transition: all 0.3s;
      text-decoration: none;
    }
    .social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--prussian-blue); transform: translateY(-3px); }
    .footer-list:not(:last-child) { margin-bottom: 50px; }
    .footer-list-title { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; list-style: none; }
    .footer-list-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold-gradient); }
    .footer-link { font-size: 14px; padding-block: 8px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; text-decoration: none; }
    .footer-link::before { content: 'â€º'; color: var(--gold); font-size: 1.2em; opacity: 0; transform: translateX(-6px); transition: all 0.3s; }
    .footer-link:hover { color: var(--gold-light); padding-left: 4px; }
    .footer-link:hover::before { opacity: 1; transform: translateX(0); }
    .footer-bottom { background: rgba(0,0,0,0.3); padding-block: 22px; }
    .copyright { font-size: 12px; text-align: center; color: rgba(255,255,255,0.4); }
    .copyright a { display: inline-block; color: var(--gold); text-decoration: none; }
    .copyright a:hover { color: var(--gold-light); }
    .footer-link-box { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

    /* 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: -20px; width: 50%; }
      .footer-link-box { flex-direction: column; }
    }

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