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

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

    /* ============================================
       MANIFESTO HERO
       ============================================ */
    .ph-manifesto {
      min-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 8vw var(--spacing-container);
      position: relative;
      text-align: center;
    }

    .ph-manifesto-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;
    }

    .ph-manifesto-quote {
      font-size: clamp(1.8rem, 4.5vw, 4.5vw);
      font-weight: 200;
      line-height: 1.25;
      letter-spacing: -0.03em;
      color: #2c2520;
      max-width: 1000px;
      margin: 0;
    }

    .ph-manifesto-quote em {
      font-style: italic;
      font-weight: 200;
      color: #b49a6a;
    }

    .ph-manifesto-line {
      width: 60px;
      height: 1px;
      background: #c4ad7c;
      margin: 3vw auto 0;
    }

    .ph-manifesto-author {
      font-size: clamp(0.65rem, 0.9vw, 0.9vw);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #9a8c78;
      margin-top: 1.5vw;
      font-weight: 400;
    }

    /* Floating decorative elements */
    .ph-float-dot {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #c4ad7c;
      opacity: 1;
    }

    .ph-float-dot:nth-child(1) { top: 15%; left: 8%; }
    .ph-float-dot:nth-child(2) { top: 25%; right: 12%; }
    .ph-float-dot:nth-child(3) { bottom: 20%; left: 15%; }
    .ph-float-dot:nth-child(4) { bottom: 30%; right: 8%; }
    .ph-float-dot:nth-child(5) { top: 50%; left: 5%; }

    /* ============================================
       BELIEF SECTION
       ============================================ */
    .ph-beliefs {
      padding: 6vw var(--spacing-container);
      max-width: 1200px;
      margin: 0 auto;
    }

    .ph-belief {
      display: flex;
      align-items: flex-start;
      gap: clamp(30px, 4vw, 4vw);
      padding: 4vw 0;
      border-bottom: 1px solid rgba(180,154,106,0.15);
      position: relative;
    }

    .ph-belief:last-child {
      border-bottom: none;
    }

    .ph-belief-num {
      font-size: clamp(3rem, 6vw, 6vw);
      font-weight: 100;
      color: rgba(180,154,106,0.2);
      line-height: 1;
      letter-spacing: -0.05em;
      min-width: clamp(50px, 5vw, 80px);
      user-select: none;
    }

    .ph-belief-body {
      flex: 1;
    }

    .ph-belief-title {
      font-size: clamp(1.3rem, 2.2vw, 2.2vw);
      font-weight: 200;
      color: #2c2520;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 1vw;
    }

    .ph-belief-title em {
      font-style: italic;
      color: #b49a6a;
    }

    .ph-belief-text {
      font-size: clamp(0.9rem, 1.05vw, 1.05vw);
      color: #7a7068;
      line-height: 1.8;
      font-weight: 300;
      max-width: 640px;
    }

    /* ============================================
       DARK PROCESS SECTION
       ============================================ */
    .ph-process {
      background: #2c2520;
      padding: 8vw var(--spacing-container);
      position: relative;
      overflow: hidden;
    }

    .ph-process-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: clamp(6rem, 18vw, 18vw);
      font-weight: 100;
      color: rgba(180,154,106,0.04);
      letter-spacing: -0.05em;
      white-space: nowrap;
      user-select: none;
      pointer-events: none;
    }

    .ph-process-header {
      text-align: center;
      position: relative;
      z-index: 1;
      margin-bottom: 6vw;
    }

    .ph-process-label {
      font-size: clamp(0.6rem, 0.8vw, 0.8vw);
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: #9a8c78;
      margin-bottom: 1.5vw;
    }

    .ph-process-title {
      font-size: clamp(2rem, 4vw, 4vw);
      font-weight: 200;
      color: #faf8f5;
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .ph-process-title em {
      font-style: italic;
      color: #c4ad7c;
    }

    .ph-stages {
      display: flex;
      justify-content: center;
      gap: clamp(12px, 1.5vw, 24px);
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
    }

    .ph-stage {
      flex: 1;
      min-width: 160px;
      max-width: 260px;
      text-align: center;
      padding: clamp(24px, 2.5vw, 2.5vw);
      border: 1px solid rgba(180,154,106,0.12);
      border-radius: 12px;
      position: relative;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
      background: rgba(44,37,32,0.5);
      backdrop-filter: blur(10px);
    }

    .ph-stage:hover {
      border-color: rgba(180,154,106,0.4);
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
      background: rgba(58,51,44,0.6);
    }

    .ph-stage-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 1.5vw;
      border-radius: 50%;
      border: 1px solid rgba(180,154,106,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    .ph-stage:hover .ph-stage-icon {
      border-color: #b49a6a;
      box-shadow: 0 0 20px rgba(180,154,106,0.2);
    }

    .ph-stage-icon svg {
      width: 20px;
      height: 20px;
    }

    .ph-stage-num {
      font-size: clamp(0.55rem, 0.7vw, 0.7vw);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #b49a6a;
      margin-bottom: 0.8vw;
    }

    .ph-stage-name {
      font-size: clamp(1rem, 1.15vw, 1.15vw);
      font-weight: 300;
      color: #faf8f5;
      margin-bottom: 0.8vw;
    }

    .ph-stage-desc {
      font-size: clamp(0.75rem, 0.85vw, 0.85vw);
      color: rgba(245,240,234,0.4);
      line-height: 1.6;
      font-weight: 300;
    }

    /* Connector arrows between stages */
    .ph-stage-arrow {
      display: flex;
      align-items: center;
      color: rgba(180,154,106,0.25);
      font-size: 1.2rem;
      flex-shrink: 0;
      align-self: center;
    }

    /* ============================================
       VALUES CARDS
       ============================================ */
    .ph-values {
      padding: 8vw var(--spacing-container);
      max-width: 1200px;
      margin: 0 auto;
    }

    .ph-values-header {
      text-align: center;
      margin-bottom: 5vw;
    }

    .ph-values-label {
      font-size: clamp(0.6rem, 0.8vw, 0.8vw);
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: #b49a6a;
      margin-bottom: 1.5vw;
    }

    .ph-values-title {
      font-size: clamp(2rem, 3.5vw, 3.5vw);
      font-weight: 200;
      color: #2c2520;
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .ph-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(16px, 2vw, 2vw);
    }

    .ph-card {
      padding: clamp(30px, 3vw, 3vw);
      border: 1px solid rgba(180,154,106,0.15);
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      background: #faf8f5;
    }

    .ph-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 16px;
      border: 2px solid transparent;
      transition: border-color 0.5s ease;
      pointer-events: none;
    }

    .ph-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(180,154,106,0.12);
    }

    .ph-card:hover::before {
      border-color: #b49a6a;
    }

    .ph-card-glow {
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(180,154,106,0.06) 0%, transparent 60%);
      opacity: 1;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    .ph-card:hover .ph-card-glow {
      opacity: 1;
    }

    .ph-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2vw;
    }

    .ph-card-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: rgba(180,154,106,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    .ph-card:hover .ph-card-icon {
      background: rgba(180,154,106,0.15);
    }

    .ph-card-icon svg {
      width: 24px;
      height: 24px;
    }

    .ph-card-metric {
      text-align: right;
    }

    .ph-card-metric-val {
      font-size: clamp(1.5rem, 2.5vw, 2.5vw);
      font-weight: 200;
      color: #b49a6a;
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .ph-card-metric-unit {
      font-size: clamp(0.6rem, 0.7vw, 0.7vw);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #9a8c78;
      margin-top: 4px;
    }

    .ph-card-name {
      font-size: clamp(1.3rem, 1.8vw, 1.8vw);
      font-weight: 300;
      color: #2c2520;
      letter-spacing: -0.01em;
      margin-bottom: 0.8vw;
    }

    .ph-card-desc {
      font-size: clamp(0.85rem, 0.95vw, 0.95vw);
      color: #7a7068;
      line-height: 1.7;
      font-weight: 300;
    }

    /* ============================================
       CLOSING SECTION
       ============================================ */
    .ph-closing {
      text-align: center;
      padding: 6vw var(--spacing-container) 8vw;
      position: relative;
    }

    .ph-closing-line {
      width: 60px;
      height: 1px;
      background: #c4ad7c;
      margin: 0 auto 3vw;
    }

    .ph-closing-text {
      font-size: clamp(1.2rem, 2vw, 2vw);
      font-weight: 200;
      color: #2c2520;
      line-height: 1.5;
      max-width: 700px;
      margin: 0 auto 1.5vw;
      letter-spacing: -0.01em;
    }

    .ph-closing-text em {
      font-style: italic;
      color: #b49a6a;
    }

    .ph-closing-sub {
      font-size: clamp(0.65rem, 0.85vw, 0.85vw);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #9a8c78;
      font-weight: 400;
    }

    .ph-cta {
      margin: 3vw auto 0;
      max-width: 400px;
      padding: 1.5vw 2vw;
      background: #2c2520;
      border-radius: 8px;
      transition: all 0.4s ease;
      cursor: pointer;
      text-decoration: none;
      display: block;
    }

    .ph-cta:hover {
      background: #3a332c;
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(44,37,32,0.3);
      opacity: 1;
    }

    .ph-cta-text {
      font-size: clamp(0.6rem, 0.8vw, 0.8vw);
      letter-spacing: 0.2em;
      color: rgba(245,240,234,0.5);
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .ph-cta-url {
      font-size: clamp(0.9rem, 1.1vw, 1.1vw);
      font-weight: 500;
      color: #c4ad7c;
      letter-spacing: 0.05em;
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 991px) {
      .ph-manifesto { padding: 80px 30px; min-height: 70vh; }
      .ph-beliefs { padding: 60px 30px; }
      .ph-process { padding: 60px 30px; }
      .ph-values { padding: 60px 30px; }
      .ph-closing { padding: 60px 30px; }
      .ph-stages { gap: 16px; }
      .ph-stage { min-width: 140px; }
    }

    @media (max-width: 767px) {
      .ph-manifesto { padding: 60px 20px; min-height: 60vh; }
      .ph-manifesto-quote { font-size: clamp(1.5rem, 7vw, 2.5rem); }
      .ph-beliefs { padding: 40px 20px; }
      .ph-belief { flex-direction: column; gap: 8px; padding: 30px 0; }
      .ph-belief-num { font-size: 2.5rem; min-width: auto; }
      .ph-process { padding: 50px 20px; }
      .ph-stages { flex-direction: column; align-items: center; }
      .ph-stage { max-width: 100%; min-width: auto; }
      .ph-stage-arrow { transform: rotate(90deg); }
      .ph-values { padding: 50px 20px; }
      .ph-cards { grid-template-columns: 1fr; }
      .ph-closing { padding: 50px 20px; }
      .ph-cta { padding: 16px 24px; }
      .ph-float-dot { display: none; }
    }

    @media (max-width: 479px) {
      .ph-manifesto-quote { font-size: 1.5rem; }
      .ph-belief-title { font-size: 1.2rem; }
      .ph-process-title { font-size: 1.6rem; }
      .ph-values-title { font-size: 1.6rem; }
      .ph-card { padding: 24px; }
    }
