/* ============ Page-specific styles: about.html ============ */

/* ── About Page Specific ── */
    .about-hero {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      padding: 72px 0;
      position: relative;
      overflow: hidden;
    }
    .about-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .about-hero-inner {
      position: relative; z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .about-hero-content {}
    .about-hero h1 { color: #fff; margin-bottom: 20px; }
    .about-hero h1 span { color: var(--accent); }
    .about-hero-lead { color: rgba(255,255,255,0.6); font-size: 1.1rem; line-height: 1.8; margin-bottom: 36px; max-width: 500px; }
    .about-hero-stats {
      display: flex;
      gap: 36px;
      padding-top: 36px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .about-stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); display: block; }
    .about-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

    /* About hero image grid */
    .about-hero-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 220px 220px;
      gap: 12px;
    }
    .about-hero-img {
      border-radius: 16px;
      overflow: hidden;
    }
    .about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
    .about-hero-img:first-child { grid-row: span 2; }

    /* Story section */
    .story-section {
      padding: 80px 0;
      background: var(--white);
    }
    .story-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .story-image {
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/3;
      position: relative;
    }
    .story-image img { width: 100%; height: 100%; object-fit: cover; }
    .story-image-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: var(--accent);
      color: #fff;
      border-radius: var(--radius);
      padding: 16px 24px;
    }
    .story-image-badge-year { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; }
    .story-image-badge-label { font-size: 0.75rem; opacity: 0.85; margin-top: 2px; }
    .story-content .section-tag { display: inline-block; margin-bottom: 16px; }
    .story-content h2 { margin-bottom: 20px; }
    .story-content p { margin-bottom: 16px; line-height: 1.8; }
    .story-content p:last-of-type { margin-bottom: 32px; }

    /* Values section */
    .values-section {
      padding: 80px 0;
      background: var(--bg-secondary);
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 52px;
    }
    .value-card {
      background: var(--white);
      border-radius: 20px;
      padding: 36px 28px;
      border: 1px solid var(--border);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .value-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), #ff4500);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .value-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
    .value-card:hover::before { transform: scaleX(1); }
    .value-icon {
      width: 52px; height: 52px;
      background: rgba(255,106,0,0.08);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .value-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
    .value-desc { font-size: 0.875rem; line-height: 1.7; color: var(--body); }

    /* Timeline / Journey */
    .journey-section { padding: 80px 0; background: var(--white); }
    .timeline {
      position: relative;
      max-width: 800px;
      margin: 52px auto 0;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0; bottom: 0;
      width: 2px;
      background: var(--border);
      transform: translateX(-50%);
    }
    .timeline-item {
      display: grid;
      grid-template-columns: 1fr 52px 1fr;
      gap: 24px;
      align-items: start;
      margin-bottom: 48px;
    }
    .timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
    .timeline-item:nth-child(even) .timeline-empty { grid-column: 1; grid-row: 1; }
    .timeline-item:nth-child(odd) .timeline-content { grid-column: 1; }
    .timeline-dot {
      grid-column: 2;
      width: 52px; height: 52px;
      background: var(--accent);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
      z-index: 2;
      box-shadow: 0 0 0 6px rgba(255,106,0,0.1);
    }
    .timeline-content {
      background: var(--bg-secondary);
      border-radius: 16px;
      padding: 24px;
      border: 1px solid var(--border);
    }
    .timeline-year { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
    .timeline-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
    .timeline-desc { font-size: 0.875rem; line-height: 1.65; color: var(--body); }

    /* Team section */
    .team-section { padding: 80px 0; background: var(--bg-secondary); }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 52px;
    }
    .team-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: var(--transition);
    }
    .team-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
    .team-card-image {
      aspect-ratio: 1/1;
      overflow: hidden;
      background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
      display: flex; align-items: center; justify-content: center;
    }
    .team-card-image img { width: 100%; height: 100%; object-fit: cover; }
    .team-avatar-placeholder {
      width: 100px; height: 100px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
    }
    .team-card-body { padding: 24px; }
    .team-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
    .team-role { font-size: 0.8rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
    .team-bio { font-size: 0.875rem; line-height: 1.6; color: var(--body); }

    /* CTA Banner */
    .about-cta {
      background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 100%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .about-cta::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,106,0,0.1) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      pointer-events: none;
    }
    .about-cta-inner { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
    .about-cta h2 { color: #fff; margin-bottom: 16px; }
    .about-cta p { color: rgba(255,255,255,0.55); margin-bottom: 36px; font-size: 1.05rem; }
    .about-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    @media (max-width: 1024px) {
      .about-hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .story-inner { grid-template-columns: 1fr; gap: 40px; }
      .values-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .about-hero-images { grid-template-columns: 1fr; grid-template-rows: 200px 200px; }
      .about-hero-img:first-child { grid-row: span 1; }
      .values-grid { grid-template-columns: 1fr; }
      .timeline::before { left: 26px; }
      .timeline-item { grid-template-columns: 52px 1fr; }
      .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
      .timeline-item:nth-child(odd) .timeline-content { grid-column: 2; }
      .timeline-dot { grid-column: 1; }
      .timeline-empty { display: none; }
      .team-grid { grid-template-columns: 1fr; }
      .about-hero-stats { flex-wrap: wrap; gap: 20px; }
    }
