/* ─── HERO ─── */
    .page-hero {
      background: var(--navy);
      background-image: radial-gradient(ellipse at 70% 50%, var(--navy-deep) 0%, var(--navy) 60%);
      padding: 72px 40px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 85%, rgba(200,164,90,0.12) 0%, transparent 45%), radial-gradient(circle at 85% 15%, rgba(105,153,152,0.1) 0%, transparent 40%); pointer-events: none; }
    .page-hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
    .page-hero-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
    .page-hero-title { font-family: "Playfair Display", serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 1.2rem; }
    .page-hero-title em { font-style: italic; color: var(--gold); }
    .page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.75; font-weight: 300; }

    /* ─── STORY SECTION ─── */
    .story-section { max-width: 1100px; margin: 0 auto; padding: 80px 2rem; display: grid; grid-template-columns: 1fr 380px; gap: 5rem; align-items: start; }
    .story-content h2 { font-family: "Playfair Display", serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem; }
    .story-content h2:first-child { margin-top: 0; }
    .story-content p { font-size: 1rem; line-height: 1.85; color: var(--text); margin-bottom: 1.25rem; }
    .story-content p:last-child { margin-bottom: 0; }
    .story-content a { color: var(--teal); text-decoration: none; font-weight: 500; }
    .story-content a:hover { text-decoration: underline; }
    .story-aside { position: sticky; top: 120px; }
    .story-img { width: 100%; border-radius: 10px; overflow: hidden; margin-bottom: 1.5rem; }
    .story-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
    .values-card { background: var(--navy-pale); border-radius: 10px; padding: 2rem; }
    .values-card h3 { font-family: "Playfair Display", serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 1rem; }
    .values-card p { font-size: 0.93rem; color: var(--text); line-height: 1.75; }

    /* ─── TEAM SECTION ─── */
    .team-section { background: var(--light); padding: 80px 2rem; }
    .team-inner { max-width: 1100px; margin: 0 auto; }
    .section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
    .section-title { font-family: "Playfair Display", serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
    .section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.75; max-width: 640px; margin-bottom: 3rem; }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .team-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s; }
    .team-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
    .team-photo-wrap { aspect-ratio: 1; overflow: hidden; background: var(--navy-pale); }
    .team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(20%); transition: filter 0.3s; }
    .team-card:hover .team-photo-wrap img { filter: grayscale(0%); }
    .team-info { padding: 1rem 1.1rem 1.2rem; }
    .team-name { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.15rem; }
    .team-title { font-size: 0.82rem; font-weight: 600; color: var(--teal); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .team-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
    .team-tag { font-size: 0.72rem; background: var(--teal-pale); color: var(--navy); padding: 0.2rem 0.55rem; border-radius: 20px; font-weight: 500; }

    /* ─── JOIN BANNER ─── */
    .join-banner { background: var(--navy); padding: 60px 2rem; text-align: center; }
    .join-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.75; max-width: 620px; margin: 0 auto 1.5rem; }
    .join-banner a { display: inline-block; background: var(--gold); color: var(--navy-deep); padding: 0.85rem 2.2rem; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: background 0.2s; }
    .join-banner a:hover { background: var(--gold-light); }

    /* ─── FOOTER ─── */
    
    
    
    
    
    
    
    
    
    
    
    
    

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .story-section { grid-template-columns: 1fr; gap: 2.5rem; }
      .story-aside { position: static; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      
      .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
      
      
    }
  
    /* ── HEADER / NAV ── */
