    .page-hero {
      padding: calc(var(--nav-height) + var(--sp-10)) 0 var(--sp-10);
      border-bottom: 1px solid var(--border);
    }

    .story-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-10);
      align-items: center;
    }

    .story-layout--reverse {
      direction: rtl;
    }

    .story-layout--reverse>* {
      direction: ltr;
    }

    .story-img {
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4/3;
    }

    .story-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .value-item {
      display: flex;
      gap: var(--sp-3);
      padding: var(--sp-4) 0;
      border-bottom: 1px solid var(--border);
    }

    .value-item:last-child {
      border-bottom: none;
    }

    .value-item__num {
      font-family: var(--font-display);
      font-size: var(--text-4xl);
      font-weight: 800;
      color: var(--accent);
      opacity: 0.3;
      line-height: 1;
      flex-shrink: 0;
      width: 48px;
    }

    .value-item__content h3 {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
    }

    .value-item__content p {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.65;
    }

    .team-card-full {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: var(--sp-6);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      transition: border-color var(--t);
    }

    .team-card-full:hover {
      border-color: var(--accent);
    }

    .team-card-full__img {
      aspect-ratio: 3/4;
      overflow: hidden;
    }

    .team-card-full__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform var(--t-slow);
    }

    .team-card-full:hover .team-card-full__img img {
      transform: scale(1.04);
    }

    .team-card-full__body {
      padding: var(--sp-6) var(--sp-6) var(--sp-6) 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .team-card-full__role {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: var(--sp-1);
    }

    .team-card-full__name {
      font-family: var(--font-display);
      font-size: var(--text-4xl);
      font-weight: 800;
      color: var(--text);
      margin-bottom: var(--sp-3);
      line-height: 1.1;
    }

    .team-card-full__bio {
      font-size: var(--text-base);
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: var(--sp-3);
    }

    .team-card-full__tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    @media(max-width:768px) {
      .story-layout {
        grid-template-columns: 1fr;
      }

      .story-layout--reverse {
        direction: ltr;
      }

      .team-card-full {
        grid-template-columns: 1fr;
      }

      .team-card-full__img {
        aspect-ratio: 16/9;
      }

      .team-card-full__body {
        padding: var(--sp-4);
      }
    }
  
