    /* ============================================
       PARTNERS PAGE — BLACK & GOLD
       Gold palette: #b49a6a #c4ad7c #d4be8a #9a8255
       Dark palette: #2c2520 #1a1714 #3a332c
       ============================================ */

    .pt {
      padding-top: 100px;
      overflow: hidden;
      background: #faf8f5;
    }

    /* ============================================
       HERO
       ============================================ */
    .pt-hero {
      min-height: 80vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 6vw var(--spacing-container) 4vw;
      position: relative;
    }

    .pt-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 80px;
      background: linear-gradient(to bottom, #b49a6a, transparent);
    }

    .pt-hero-label {
      font-size: clamp(0.6rem, 0.85vw, 0.85vw);
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: #b49a6a;
      font-weight: 500;
      margin-bottom: 3vw;
      opacity: 1;
    }

    .pt-hero h1 {
      font-size: clamp(2.5rem, 5.5vw, 5.5vw);
      font-weight: 200;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: #1a1a1a;
      margin-bottom: 2vw;
    }

    .pt-hero h1 em {
      font-style: italic;
      color: #b49a6a;
    }

    .pt-word {
      display: inline-block;
      white-space: nowrap;
    }
    .pt-char {
      display: inline-block;
      opacity: 1;
      filter: blur(8px);
    }

    .pt-hero-divider {
      width: 60px;
      height: 1px;
      background: #b49a6a;
      margin: 0 auto 2vw;
      opacity: 1;
    }

    .pt-hero-statement {
      font-size: clamp(0.95rem, 1.15vw, 1.15vw);
      font-weight: 300;
      line-height: 1.8;
      color: rgba(0, 0, 0, 0.6);
      max-width: 700px;
      opacity: 1;
    }

    /* ============================================
       OVERVIEW CARDS
       ============================================ */
    .pt-overview {
      padding: 6vw var(--spacing-container);
    }

    .pt-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .pt-card {
      border: 1px solid rgba(180, 154, 106, 0.15);
      border-radius: 12px;
      padding: 30px;
      transition: all 0.4s ease;
      position: relative;
      cursor: pointer;
      text-decoration: none;
      display: block;
      color: inherit;
    }

    .pt-card:hover {
      border-color: #b49a6a;
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(180, 154, 106, 0.12);
    }

    .pt-card-num {
      font-size: clamp(2.5rem, 3.5vw, 3.5vw);
      font-weight: 200;
      color: rgba(180, 154, 106, 0.2);
      line-height: 1;
      margin-bottom: 16px;
    }

    .pt-card-title {
      font-size: clamp(1.1rem, 1.3vw, 1.3vw);
      font-weight: 400;
      color: #1a1a1a;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .pt-card-desc {
      font-size: clamp(0.85rem, 0.95vw, 0.95vw);
      font-weight: 300;
      color: rgba(0, 0, 0, 0.55);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .pt-card-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .pt-badge-soon {
      display: inline-flex;
      align-items: center;
      padding: 4px 14px;
      border: 1px solid #b49a6a;
      border-radius: 20px;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #b49a6a;
      font-weight: 500;
    }

    .pt-badge-date {
      font-size: 0.6rem;
      color: rgba(180, 154, 106, 0.7);
      margin-left: 8px;
      letter-spacing: 0.05em;
    }

    .pt-card-link {
      font-size: clamp(0.8rem, 0.9vw, 0.9vw);
      color: #b49a6a;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: gap 0.3s ease;
    }

    .pt-card:hover .pt-card-link {
      gap: 8px;
    }

    .pt-card-link .material-icons {
      font-size: 16px;
    }

    /* ============================================
       DETAIL SECTIONS
       ============================================ */
    .pt-detail {
      padding: 6vw var(--spacing-container);
    }

    .pt-detail--dark {
      background: #f3efe9;
      color: #1a1a1a;
    }

    .pt-detail-header {
      margin-bottom: 4vw;
    }

    .pt-detail-title {
      font-size: clamp(2rem, 3.5vw, 3.5vw);
      font-weight: 200;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .pt-detail--dark .pt-detail-title {
      color: #2c2520;
    }

    .pt-detail-grid {
      display: grid;
      grid-template-columns: 1fr 2fr 2fr;
      gap: 3vw;
      align-items: start;
    }

    /* Video placeholder */
    .pt-video {
      aspect-ratio: 16 / 9;
      background: #e8e3db;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .pt-detail--dark .pt-video {
      background: #e8e3db;
    }

    .pt-video-icon {
      font-size: 48px;
      color: rgba(180, 154, 106, 0.5);
      margin-bottom: 8px;
    }

    .pt-video-label {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(180, 154, 106, 0.5);
    }

    .pt-video--soon {
      background: linear-gradient(135deg, #e8e3db, #ddd7cd);
    }

    .pt-video--soon .pt-video-icon {
      color: rgba(180, 154, 106, 0.3);
    }

    .pt-video--soon::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(180, 154, 106, 0.08);
    }

    .pt-video--soon .pt-badge-soon {
      position: relative;
      z-index: 1;
      margin-top: 8px;
    }

    .pt-video--soon .pt-video-icon {
      position: relative;
      z-index: 1;
    }

    /* Photo placeholders */
    .pt-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .pt-photo {
      aspect-ratio: 4 / 3;
      background: rgba(180, 154, 106, 0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pt-detail--dark .pt-photo {
      background: rgba(180, 154, 106, 0.1);
    }

    .pt-photo .material-icons {
      font-size: 28px;
      color: rgba(180, 154, 106, 0.2);
    }

    /* Text content */
    .pt-detail-text {
      max-width: 550px;
    }

    .pt-detail-text h3 {
      font-size: clamp(1.3rem, 1.8vw, 1.8vw);
      font-weight: 300;
      line-height: 1.3;
      margin-bottom: 1.5vw;
      letter-spacing: -0.01em;
    }

    .pt-detail--dark .pt-detail-text h3 {
      color: #2c2520;
    }

    .pt-detail-text p {
      font-size: clamp(0.9rem, 1vw, 1vw);
      font-weight: 300;
      line-height: 1.7;
      color: rgba(0, 0, 0, 0.6);
      margin-bottom: 1.2vw;
    }

    .pt-detail--dark .pt-detail-text p {
      color: rgba(0, 0, 0, 0.55);
    }

    .pt-detail-text ul {
      list-style: none;
      padding: 0;
      margin: 1.5vw 0;
    }

    .pt-detail-text ul li {
      font-size: clamp(0.9rem, 1vw, 1vw);
      font-weight: 300;
      line-height: 1.7;
      color: rgba(0, 0, 0, 0.6);
      padding-left: 20px;
      position: relative;
      margin-bottom: 8px;
    }

    .pt-detail--dark .pt-detail-text ul li {
      color: rgba(0, 0, 0, 0.55);
    }

    .pt-detail-text ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #b49a6a;
    }

    .pt-detail-text .pt-availability {
      display: flex;
      gap: 12px;
      margin-top: 1.5vw;
    }

    .pt-availability-badge {
      padding: 6px 16px;
      border: 1px solid rgba(180, 154, 106, 0.3);
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 400;
      color: #b49a6a;
      letter-spacing: 0.05em;
    }

    /* ============================================
       EQUIPMENT GRID
       ============================================ */
    .pt-equipment-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 3vw;
    }

    .pt-equip-card {
      border: 1px solid rgba(180, 154, 106, 0.12);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
    }

    .pt-equip-placeholder {
      aspect-ratio: 4 / 3;
      background: rgba(180, 154, 106, 0.06);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .pt-equip-placeholder .material-icons {
      font-size: 32px;
      color: rgba(180, 154, 106, 0.2);
    }

    .pt-equip-name {
      font-size: clamp(0.85rem, 1vw, 1vw);
      font-weight: 400;
      color: #1a1a1a;
      line-height: 1.4;
      margin-bottom: 8px;
    }

    .pt-equip-badge {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(180, 154, 106, 0.6);
    }

    /* ============================================
       CTA
       ============================================ */
    .pt-cta {
      background: #f3efe9;
      padding: 8vw var(--spacing-container);
      text-align: center;
    }

    .pt-cta-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, transparent, #b49a6a);
      margin: 0 auto 3vw;
      opacity: 1;
    }

    .pt-cta h2 {
      font-size: clamp(2rem, 4vw, 4vw);
      font-weight: 200;
      color: #2c2520;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 1.5vw;
      opacity: 1;
    }

    .pt-cta p {
      font-size: clamp(0.95rem, 1.15vw, 1.15vw);
      font-weight: 300;
      color: #7a7068;
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto 3vw;
      opacity: 1;
    }

    .pt-cta .btn-primary {
      opacity: 1;
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 991px) {
      .pt-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2vw;
      }

      .pt-detail-grid .pt-video {
        grid-column: 1 / -1;
      }

      .pt-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
      }

    }

    @media (max-width: 767px) {
      .pt-hero {
        padding: 60px 20px 40px;
        min-height: 60vh;
      }

      .pt-overview {
        padding: 40px 20px;
      }

      .pt-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .pt-detail {
        padding: 40px 20px;
      }

      .pt-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .pt-photos {
        grid-template-columns: 1fr 1fr;
      }

      .pt-equipment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .pt-cta {
        padding: 60px 20px;
      }
    }

    @media (max-width: 479px) {
      .pt-hero h1 {
        font-size: 2rem;
      }

      .pt-hero-label {
        font-size: 0.6rem;
      }

      .pt-detail-title {
        font-size: 1.6rem;
      }

      .pt-card {
        padding: 24px;
      }
    }
