      /* Story */
      .story-section { padding: 80px 0 100px; }
      .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .story-photo {
        aspect-ratio: 4/3;
        background: var(--blue-light);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .story-photo svg { width: 60px; height: 60px; color: var(--blue); opacity: 0.2; }
      .story-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }
      .story-text p {
        font-size: 15px;
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 16px;
        font-weight: 300;
      }

      /* Values */
      .values-section { padding: 100px 0; background: rgba(255, 255, 255, 0.1); }
      .values-header { text-align: center; max-width: 550px; margin: 0 auto 48px; }
      .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
      .val-card {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 32px;
        text-align: center;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
      }
      .val-card::after {
        content: "";
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 3px;
        background: var(--blue);
        transform: scaleX(0);
        transition: transform 0.4s;
      }
      .val-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(15, 23, 41, 0.06); }
      .val-card:hover::after { transform: scaleX(1); }
      .val-num {
        font-family: "Playfair Display", serif;
        font-size: 44px;
        font-weight: 700;
        color: var(--blue);
        opacity: 0.2;
        margin-bottom: 12px;
      }
      .val-card h3 { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; }
      .val-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

      /* Team */
      .team-section { padding: 100px 0; }
      .team-header { text-align: center; max-width: 500px; margin: 0 auto 48px; }
      .team-profiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .tp {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 20px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 24px;
        transition: all 0.3s;
      }
      .tp:hover { box-shadow: 0 12px 40px rgba(15, 23, 41, 0.06); }
      .tp-photo {
        width: 140px;
        height: 140px;
        background: var(--blue-light);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .tp-photo svg { width: 40px; height: 40px; color: var(--blue); opacity: 0.2; }
      .tp-photo img { width: 140px; height: 140px; object-fit: cover; border-radius: 14px; display: block; }
      .tp-info h3 { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 2px; }
      .tp-info .role { font-size: 13px; font-weight: 500; color: var(--blue); margin-bottom: 10px; }
      .tp-info p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; margin-bottom: 10px; }
      .tp-links { display: flex; gap: 6px; }
      .tp-links a {
        width: 30px; height: 30px;
        background: var(--blue-light);
        border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        color: var(--blue);
        text-decoration: none;
        transition: all 0.3s;
      }
      .tp-links a:hover { background: var(--blue); color: #fff; }
      .tp-links a svg { width: 13px; height: 13px; }

      /* Awards */
      .awards-section { padding: 100px 0; background: rgba(255, 255, 255, 0.1); }
      .awards-header { text-align: center; max-width: 500px; margin: 0 auto 48px; }
      .awards-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
      .aw-badge {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 24px 32px;
        text-align: center;
        min-width: 160px;
      }
      .aw-badge .yr { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 700; color: var(--blue); }
      .aw-badge .desc { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

      @media (max-width: 768px) {
        .story-grid, .team-profiles { grid-template-columns: 1fr; }
        .values-grid { grid-template-columns: 1fr; }
        .tp { grid-template-columns: 1fr; }
      }
