    .about-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 72px;
      align-items: center;
    }
    /* ── PHOTO ANIMATIONS ─────────────────────────────── */
    @keyframes photoReveal {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes kenBurns {
      0%   { transform: scale(1.0) translate(0, 0); }
      50%  { transform: scale(1.06) translate(-1%, 1%); }
      100% { transform: scale(1.0) translate(0, 0); }
    }
    @keyframes certFloat {
      0%, 100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(42,27,18,0.10); }
      50%       { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(42,27,18,0.16); }
    }
    @keyframes certReveal {
      from { opacity: 0; transform: translateX(20px) translateY(10px); }
      to   { opacity: 1; transform: translateX(0) translateY(0); }
    }
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    .about-photo-frame {
      padding-top: 30px;
      animation: photoReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .about-photo-visual {
      position: relative;
    }
    .about-photo-main {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: var(--radius-xl);
      background: #f0f0ee;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      border: 1px solid var(--color-linen);
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(42,27,18,0.18), 0 4px 16px rgba(42,27,18,0.08);
    }
    /* Ken Burns — slow drift on the photo itself */
    .about-photo-main img {
      animation: kenBurns 18s ease-in-out infinite;
      transform-origin: center center;
    }
    /* Bottom gradient to soften the lower edge of the portrait */
    .about-photo-main::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 45%;
      background: linear-gradient(to top, rgba(20,10,5,0.28), transparent);
      z-index: 1;
      pointer-events: none;
    }
    /* Top-right shimmer stripe on hover — gold gleam */
    .about-photo-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 40%,
        rgba(201,168,76,0.10) 50%,
        transparent 60%,
        transparent 100%
      );
      background-size: 200% 100%;
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }
    .about-photo-frame:hover .about-photo-main::after { opacity: 1; }
    .photo-placeholder-icon { opacity: 0.4; }
    .photo-placeholder-text {
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-style: italic;
      color: var(--color-muted);
      text-align: center;
      padding: 0 24px;
    }
    .about-cert-card {
      position: absolute;
      bottom: 24px;
      right: -24px;
      background: #fff;
      border: 1px solid var(--color-linen);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      box-shadow: var(--card-shadow);
      display: flex;
      align-items: center;
      gap: 12px;
      animation:
        certReveal 0.7s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both,
        certFloat 5s 1.2s ease-in-out infinite;
      z-index: 2;
    }
    .cert-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(201,168,76,0.15);
      border: 1.5px solid rgba(201,168,76,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cert-icon svg { width: 20px; height: 20px; }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(24px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .about-right {
      padding-top: 16px;
      animation: slideInRight 0.85s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .about-right h1 { margin-bottom: 8px; }
    .about-right .subtitle {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--color-cognac);
      margin-bottom: 28px;
    }
    .about-divider {
      width: 100%;
      height: 1px;
      background: var(--divider-gold-color);
      margin: -12px 0 28px;
    }
    .about-right p { margin-bottom: 20px; }
    .values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 36px;
    }
    .about-photo-frame .values-grid {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 20px;
    }
    .value-card {
      background: var(--color-ivory);
      border: var(--border-default);
      border-radius: var(--radius-md);
      padding: 20px;
      transition: background 0.2s;
    }
    .about-photo-frame .value-card {
      padding: 27px 16px;
      text-align: center;
    }
    .value-card:hover { background: var(--hover-card-bg); }
    .value-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--color-linen);
      border: 0.5px solid var(--color-linen);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }
    .about-photo-frame .value-icon { width: 38px; height: 38px; border-radius: 10px; margin: 0 auto 12px; }
    .about-photo-frame .value-icon svg { width: 18px; height: 18px; }
    .value-icon svg { width: 17px; height: 17px; stroke: var(--color-cognac); fill: none; stroke-width: 1.5; stroke-linecap: round; }
    .value-title { font-family: var(--font-display); font-size: 1rem; font-weight: var(--fw-display-impact); color: var(--color-oud); margin-bottom: 4px; }
    .about-photo-frame .value-title { font-size: 0.98rem; margin-bottom: 8px; }
    .value-desc { font-size: 0.82rem; color: var(--color-muted); line-height: 1.65; text-align: left; }
    .about-photo-frame .value-desc { font-size: 0.8rem; line-height: 1.55; text-align: center; }

    /* Mission section */
    .mission-section {
      background: var(--color-oud);
      padding: 96px 0;
      text-align: center;
    }
    .mission-section h2 { font-family: var(--font-display); font-weight: var(--fw-display-regular); font-style: normal; color: var(--color-on-dark); font-size: clamp(1.4rem, 2.4vw, 2.2rem); max-width: 700px; margin: 0 auto 24px; line-height: 1.4; }
    .mission-section p { color: rgba(250,247,242,0.55); font-family: var(--font-body); font-size: 1rem; max-width: 560px; margin: 0 auto; text-align: center; }

    /* Approach */
    .approach-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: var(--border-default);
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: var(--card-shadow);
      margin-top: 48px;
    }
    .approach-card {
      padding: 48px 38px;
      background: var(--color-ivory);
      border-right: var(--border-default);
      transition: background 0.2s;
    }
    .approach-card:last-child { border-right: none; }
    .approach-card:hover { background: var(--hover-card-bg); }
    .approach-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      color: var(--color-gold);
      line-height: 1;
      margin-bottom: 22px;
      font-weight: var(--fw-display-impact);
    }
    .approach-title {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: var(--fw-display-impact);
      color: var(--color-oud);
      margin-bottom: 12px;
    }
    .approach-desc { font-size: 1rem; color: var(--color-cognac); line-height: 1.82; }

    /* Coaching philosophy prose */
    .coach-prose { max-width: 760px; margin: 0 auto; }
    .coach-prose + .coach-prose { margin-top: 64px; }
    .coach-prose h2 { margin-bottom: 20px; }
    .coach-prose p { margin-bottom: 20px; }
    .coach-prose p:last-child { margin-bottom: 0; }
    .coach-cta-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px;
    }
    .coach-prose-cta {
      text-align: center;
      max-width: 760px;
      margin: 72px auto 0;
      font-family: var(--font-display);
      font-size: 1.15rem;
      color: var(--color-oud);
    }

    @media (max-width: 900px) {
      .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-photo-frame { max-width: 420px; margin: 0 auto; }
      .about-cert-card { right: 0; }
      .approach-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .approach-grid { grid-template-columns: 1fr; }
    }
