  /* Background */
  .ty-bg {
    position: fixed;
    inset: 0;
    background: url("../images/storm-sky.png") center/cover no-repeat;
    z-index: 0;
  }
  .ty-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(120% 90% at 22% 30%, rgba(11,11,12,.55), rgba(11,11,12,.86) 60%, rgba(11,11,12,.96) 100%),
      linear-gradient(180deg, rgba(11,11,12,.5), rgba(11,11,12,.9));
  }

  .ty-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 28px clamp(20px, 5vw, 64px) 40px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
  }

  /* ---------- Left content ---------- */
  .ty-content { max-width: 540px; }

  .ty-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 30px;
  }
  .ty-reviews .stars { display: inline-flex; gap: 2px; color: #FFB400; }
  .ty-reviews .stars svg { width: 15px; height: 15px; }
  .ty-reviews .rv-txt { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.82); letter-spacing: .01em; }
  .ty-reviews .rv-txt b { color: #fff; font-family: var(--display); font-weight: 800; }

  .ty-check {
    width: 86px; height: 86px;
    border-radius: 50%;
    background: var(--green);
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    box-shadow: 0 18px 40px -12px rgba(31,157,87,.7), 0 0 0 8px rgba(31,157,87,.14);
    animation: pop .5s cubic-bezier(.2,.9,.3,1.3) both;
  }
  .ty-check svg { width: 44px; height: 44px; stroke: #fff; animation: draw .5s ease .28s both; }
  .ty-check.is-404 {
    background: var(--orange);
    box-shadow: 0 18px 40px -12px rgba(244,123,32,.7), 0 0 0 8px rgba(244,123,32,.14);
  }
  .ty-check.is-404 svg { width: 46px; height: 46px; }

  .ty-content h1 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(44px, 7vw, 76px);
    line-height: .98;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    color: #fff;
  }
  .ty-content > .sub {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255,255,255,.72);
    line-height: 1.5;
    margin: 0 0 34px;
    max-width: 420px;
  }

  .ty-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
  .ty-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .ty-card .ic {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(244,123,32,.16);
    color: var(--orange);
    display: grid;
    place-items: center;
  }
  .ty-card .ic svg { width: 22px; height: 22px; }
  .ty-card .tx { display: flex; flex-direction: column; }
  .ty-card .tx .t {
    display: block;
    font-family: var(--display);
    font-weight: 800;
    font-size: 17px;
    color: #fff;
    line-height: 1.2;
  }
  .ty-card .tx .d {
    display: block;
    font-size: 12.5px;
    color: rgba(255,255,255,.62);
    margin-top: 5px;
    line-height: 1.45;
  }

  .ty-actions { display: flex; flex-wrap: wrap; gap: 12px; }
  .ty-actions .btn { padding-left: 38px; padding-right: 38px; }
  /* ---------- Right: director ---------- */
  .ty-person {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 100%;
    margin-bottom: -40px;
  }
  .ty-person img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 560px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,.55));
  }
  .ty-nameplate {
    position: absolute;
    top: 2%;
    right: 0;
    text-align: right;
    z-index: 2;
  }
  .ty-nameplate .nm {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(20px, 2.3vw, 26px);
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.01em;
  }
  .ty-nameplate .rl {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
  }
  /* entrance */
  .reveal { opacity: 0; transform: translateY(20px); animation: rise .6s cubic-bezier(.16,.84,.3,1) both; }
  .reveal.d1 { animation-delay: .08s; }
  .reveal.d2 { animation-delay: .16s; }
  .reveal.d3 { animation-delay: .24s; }
  .reveal.d4 { animation-delay: .32s; }
  .ty-person { animation: fadeIn .8s ease .15s both; }

  @keyframes pop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
  @keyframes draw { from { opacity: 0; } to { opacity: 1; } }
  @keyframes rise { to { opacity: 1; transform: none; } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @media (prefers-reduced-motion: reduce) {
    .ty-check, .reveal, .ty-person, .ty-check svg { animation: none !important; opacity: 1 !important; transform: none !important; }
  }
  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .ty-shell {
      grid-template-columns: 1fr;
      text-align: center;
      padding-top: 28px;
      padding-bottom: 0;
      gap: 0;
      align-content: start;
    }
    .ty-content { max-width: 100%; margin: 0 auto; }
    .ty-check { margin-left: auto; margin-right: auto; }
    .ty-content > .sub { margin-left: auto; margin-right: auto; }
    .ty-cards { text-align: left; max-width: 440px; margin-left: auto; margin-right: auto; margin-bottom: 26px; }
    .ty-actions { justify-content: center; }
    .ty-person {
      min-height: 0;
      margin-top: 6px;
      order: 3;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex-wrap: nowrap;
    }
    .ty-person img {
      flex: 0 1 auto;
      min-width: 0;
      max-height: 52dvh;
      max-width: 62%;
    }
    .ty-nameplate {
      position: static;
      transform: none;
      text-align: left;
      order: -1;
      flex: 0 0 auto;
      align-self: center;
    }
  }
  @media (max-width: 560px) {
    .ty-shell { padding-top: 24px; }
    .ty-brand-removed { display: none; }
    .ty-person {
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      gap: 0;
      position: relative;
      width: 100%;
      margin-bottom: 0;
    }
    .ty-nameplate {
      position: absolute;
      top: auto;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      width: max-content;
      max-width: 80%;
      text-align: center;
      margin: 0;
      padding: 11px 22px;
      background: rgba(11,11,12,.72);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 14px;
      z-index: 2;
    }
    .ty-nameplate .nm { font-size: 20px; }
    .ty-nameplate .rl { font-size: 11px; margin-top: 3px; }
    .ty-person img { max-height: 46dvh; max-width: 88%; }
    .ty-card { padding: 15px 16px; gap: 13px; }
    .ty-card .ic { width: 44px; height: 44px; }
    .btn { flex: 1 1 auto; justify-content: center; }
  }

  footer.site-footer {
    position: relative;
    z-index: 2;
  }
