/*
 * page-about.css
 * Styles for the Psi Sigma Phi About page template.
 * Enqueue via functions.php: wp_enqueue_style( 'psp-about', get_template_directory_uri() . '/assets/css/page-about.css' );
 */

  /* ============ ABOUT PAGE ============ */
  .about-hero {
  padding: 100px 0;
  background-size: contain; 
  background-position: right;
  background-repeat: no-repeat;
  /* filter: grayscale(100%) contrast(1.08); */
  border-bottom: 1px solid rgba(184,184,184,0.1);
  position: relative;
  background-image:
    linear-gradient(115deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.3) 100%),
    url("/wp-content/themes/psi-sigma-phi/assets/images/about-hero-background.jpg");
  background-image:
    linear-gradient(115deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.3) 100%),
    image-set(
      url('/wp-content/themes/psi-sigma-phi/assets/images/about-hero-background.webp') type("image/webp"),
      url('/wp-content/themes/psi-sigma-phi/assets/images/about-hero-background.jpg') type("image/jpeg")
    );
}
  .about-hero h1 {
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.02; margin-bottom: 28px;
    font-weight: 800; max-width: 900px;
  }
  .about-hero h1 .italic {
    font-style: italic; font-weight: 500;
    background: var(--silver-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  /* ANCHOR JUMP LINKS */
  .about-anchors {
    background: var(--black);
    border-top: 1px solid rgba(184,184,184,0.25);
    border-bottom: 1px solid rgba(184,184,184,0.15);
    position: sticky; top: 96px; z-index: 50;
  }
  .about-anchors .container {
    display: flex; gap: 40px; align-items: center;
    padding: 0 40px; max-width: 1280px; margin: 0 auto;
  }
  .about-anchors a {
    padding: 18px 0;
    font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--silver);
    text-decoration: none; font-weight: 600;
    transition: color 0.2s;
    position: relative;
  }
  .about-anchors a:hover { color: var(--white); }
  .about-anchors a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--white);
    transition: width 0.2s;
  }
  .about-anchors a:hover::after { width: 100%; }

  /* ORIGIN */
  .origin {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .origin-grid {
    display: grid; grid-template-columns: 1.35fr 1fr;
    gap: 80px; align-items: start;
  }
  .origin h2 {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.02; margin-bottom: 36px;
    font-weight: 800;
  }
  .origin h2 .italic { font-style: italic; font-weight: 500; color: var(--silver); }
  .origin-body { font-size: 17px; color: var(--silver-light); line-height: 1.8; font-weight: 300; }
  .origin-body p { margin-bottom: 22px; }
  .origin-body .lead { font-size: 20px; color: var(--white); font-weight: 400; }

  .origin-callout {
    background: var(--black-2);
    border: 1px solid rgba(184,184,184,0.15);
    padding: 48px 40px;
    position: relative;
    position: sticky; top: 180px;
  }
  .origin-callout::before {
    content: ''; position: absolute; top: -12px; left: -12px; width: 60px; height: 60px;
    border-top: 2px solid var(--silver); border-left: 2px solid var(--silver);
  }
  .origin-year {
    font-family: var(--serif); font-size: 96px;
    font-weight: 800; line-height: 0.9;
    background: var(--silver-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
  }
  .origin-year-label {
    font-size: 11px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--silver);
    font-weight: 600; margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(184,184,184,0.15);
  }
  .origin-meta { display: flex; flex-direction: column; gap: 22px; }
  .meta-row { display: flex; flex-direction: column; gap: 4px; }
  .meta-key {
    font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--silver);
    font-weight: 600;
  }
  .meta-val {
    font-family: var(--serif); font-size: 17px;
    color: var(--white); font-weight: 500;
    line-height: 1.3;
  }

  /* EXPLORE CARDS */
  .explore {
    padding: 140px 0;
    background: var(--black-2);
    border-top: 1px solid rgba(184,184,184,0.08);
    border-bottom: 1px solid rgba(184,184,184,0.08);
  }
  .explore-header {
    margin-bottom: 64px;
    display: flex; flex-direction: column;
    max-width: 720px;
  }
  .explore-header h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    line-height: 1.05; font-weight: 800;
  }
  .explore-header h2 .italic { font-style: italic; font-weight: 500; color: var(--silver); }
  .explore-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: #b0b0b0;
    border: 1px solid #b0b0b0;
  }
  .explore-card {
    background: #d4d4d4;
    padding: 40px 28px 36px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
    min-height: 240px;
    position: relative;
  }
  .explore-card:hover { background: #dcdcdc; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
  .explore-card-num {
    font-family: var(--serif); font-size: 12px;
    font-weight: 500; font-style: italic;
    color: #666; margin-bottom: 18px;
    letter-spacing: 0.05em;
  }
  .explore-card h3 {
    font-family: var(--serif); font-size: 22px;
    font-weight: 700; color: var(--black);
    margin-bottom: 14px; line-height: 1.18;
  }
  .explore-card p {
    font-size: 13px; color: #444;
    line-height: 1.6; font-weight: 400;
    margin-bottom: 20px; flex: 1;
  }
  .explore-arrow {
    font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--black-2);
    font-weight: 600; transition: gap 0.2s;
    display: inline-flex; gap: 8px; align-items: center;
  }
  .explore-card:hover .explore-arrow { gap: 14px; color: var(--black); }

  .explore-card-memoriam {
    border-top: 2px solid var(--silver);
  }
  .explore-card-memoriam h3 {
    font-style: italic;
    font-weight: 500;
  }
  .explore-card-memoriam p {
    font-style: italic;
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.55;
  }

  /* PRESIDENT */
  .president {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .president::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(184,184,184,0.04), transparent 55%);
    pointer-events: none;
  }
  .president-grid {
    display: grid; grid-template-columns: 0.55fr 1.4fr;
    gap: 80px; align-items: center;
    position: relative;
  }
  .president-portrait {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 240px;
  }
  .president-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%) contrast(1.05); */
    position: relative; z-index: 2;
  }
  .president-portrait-frame {
    position: absolute; inset: 0;
    transform: translate(16px, 16px);
    border: 1px solid var(--silver);
    z-index: 1;
  }
  .president-quote {
    margin: 24px 0 32px;
  }
  .president-quote p {
    font-family: var(--serif);
    font-size: clamp(26px, 2.8vw, 34px);
    line-height: 1.3;
    color: var(--white); font-weight: 500;
    margin-bottom: 20px;
  }
  .president-quote p em {
    font-style: italic;
    background: var(--silver-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .president-quote-secondary {
    font-style: italic;
    font-size: clamp(19px, 1.8vw, 22px) !important;
    color: var(--silver) !important;
    font-weight: 400 !important;
    padding-left: 24px;
    border-left: 2px solid var(--silver);
  }
  .president-attribution { margin-bottom: 28px; }
  .president-name {
    font-family: var(--serif); font-size: 20px;
    font-weight: 700; color: var(--white);
  }
  .president-title {
    font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--silver);
    margin-top: 4px; font-weight: 600;
  }

  /* FOUNDERS */
  .founders {
    padding: 140px 0;
    background: var(--black);
    border-top: 1px solid rgba(184,184,184,0.1);
    position: relative;
    overflow: hidden;
  }
  .founders::before {
    content: 'ΨΣΦ';
    position: absolute;
    left: -80px; top: 40px;
    font-family: var(--serif);
    font-size: 340px; font-weight: 900;
    color: rgba(184,184,184,0.025);
    line-height: 1; letter-spacing: -0.05em;
    pointer-events: none;
  }
  .founders-intro {
    text-align: center; margin-bottom: 80px;
    position: relative;
  }
  .founders-intro .eyebrow {
    justify-content: center;
    font-family: var(--serif); font-style: italic;
    font-size: 13px; letter-spacing: 0.2em;
    color: var(--silver);
  }
  .founders-intro .eyebrow::before,
  .founders-intro .eyebrow::after {
    content: ''; width: 48px; height: 1px; background: var(--silver);
  }
  .founders-intro h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    line-height: 1.05; margin-bottom: 24px; font-weight: 800;
  }
  .founders-intro h2 .italic { font-style: italic; font-weight: 500; color: var(--silver); }
  .founders-lead {
    font-size: 17px; color: var(--silver-light);
    max-width: 640px; margin: 0 auto;
    line-height: 1.65; font-weight: 300;
  }
  /* FOUNDERS PHOTO */
  .founders-photo {
    margin: 0 auto 80px;
    max-width: 920px;
    position: relative;
  }
  .founders-photo-wrap {
    position: relative;
    padding: 14px;
  }
  .founders-photo-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 72px; height: 72px;
    border-top: 2px solid var(--silver);
    border-left: 2px solid var(--silver);
  }
  .founders-photo-wrap::after {
    content: "";
    position: absolute;
    bottom: 0; right: 0;
    width: 72px; height: 72px;
    border-bottom: 2px solid var(--silver);
    border-right: 2px solid var(--silver);
  }
  .founders-photo img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(184, 184, 184, 0.2);
  }
  .founders-photo figcaption {
    margin-top: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
  }
  .founders-photo figcaption::before {
    content: "";
    display: block;
    width: 40px; height: 1px;
    background: var(--silver);
    margin: 0 auto 16px;
  }
  .founders-photo-label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--white);
    font-weight: 500;
  }
  .founders-photo-date {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 600;
  }

  .founders-list {
    list-style: none;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(184,184,184,0.12);
    border: 1px solid rgba(184,184,184,0.12);
    position: relative;
  }
  .founder {
    background: var(--black);
    padding: 28px 28px;
    display: flex; flex-direction: column;
    gap: 4px;
    transition: background 0.3s;
  }
  .founder:hover { background: var(--black-2); }
  .founder-title {
    font-family: var(--serif); font-style: italic;
    font-size: 13px; color: var(--silver);
    font-weight: 500; letter-spacing: 0.05em;
  }
  .founder-name {
    font-family: var(--serif);
    font-size: 18px; font-weight: 700;
    color: var(--white); letter-spacing: -0.01em;
    line-height: 1.2;
  }

  /* ABOUT CTA */
  .about-cta {
    padding: 120px 0;
    background:
      radial-gradient(ellipse at top, rgba(184,184,184,0.05) 0%, transparent 60%),
      var(--black-2);
    border-top: 1px solid rgba(184,184,184,0.1);
    text-align: center;
  }
  .about-cta-inner { max-width: 700px; margin: 0 auto; }
  .about-cta h2 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05; margin-bottom: 24px; font-weight: 800;
  }
  .about-cta h2 .italic {
    font-style: italic; font-weight: 500;
    background: var(--silver-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .about-cta p {
    font-size: 18px; color: var(--silver-light);
    margin-bottom: 40px; line-height: 1.7; font-weight: 300;
  }
  .about-cta-buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  }

  /* ABOUT PAGE RESPONSIVE */
  @media (max-width: 1000px) {
    .origin-grid { grid-template-columns: 1fr; gap: 56px; }
    .origin-callout { position: static; padding: 36px 28px; }
    .origin-year { font-size: 72px; }
    .explore-grid { grid-template-columns: repeat(2, 1fr); }
    .president-grid { grid-template-columns: 1fr; gap: 48px; }
    .president-portrait { max-width: 320px; margin: 0 auto; }
    .founders-list { grid-template-columns: repeat(2, 1fr); }
    .about-anchors .container { gap: 24px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .about-anchors a { white-space: nowrap; font-size: 10px; }
  }

  @media (max-width: 900px) {
    .about-hero { padding: 72px 0 56px; }
    .about-anchors { top: 72px; display: none; }
    .origin { padding: 72px 0; }
    .origin-body { font-size: 15px; }
    .origin-body .lead { font-size: 17px; }
    .explore { padding: 72px 0; }
    .explore-card { padding: 32px 24px; min-height: 0; }
    .president { padding: 72px 0; }
    .founders-photo { margin-bottom: 48px; }
    .founders-photo-wrap { padding: 8px; }
    .founders-photo-wrap::before, .founders-photo-wrap::after { width: 42px; height: 42px; }
    .founders-photo figcaption { margin-top: 20px; }
    .founders-photo-label { font-size: 16px; }
    .founders-photo-date { font-size: 10px; letter-spacing: 0.18em; }
    .founders { padding: 72px 0; }
    .founders-intro { margin-bottom: 48px; }
    .founder { padding: 20px 18px; }
    .founder-name { font-size: 16px; }
    .about-cta { padding: 72px 0; }
  }

  @media (max-width: 600px) {
    .explore-grid, .founders-list { grid-template-columns: 1fr; }
  }

  /* FOUNDERS TEASER */
  .founders-teaser {
    display: flex; justify-content: space-between; align-items: center;
    gap: 40px; flex-wrap: wrap;
    padding: 36px 40px;
    background: var(--black-2);
    border: 1px solid rgba(184,184,184,0.12);
  }
  .founders-teaser-names {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 12px;
    font-family: var(--serif); font-size: 16px;
    color: var(--silver-light); line-height: 1.4;
  }
  .founder-teaser-item em {
    font-style: italic; color: var(--silver); font-size: 13px;
    margin-right: 4px;
  }
  .founders-teaser-sep { color: rgba(184,184,184,0.3); font-size: 18px; }
  .founders-teaser-more {
    font-style: italic; color: var(--silver);
    font-size: 15px;
  }
  .founders-teaser-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 700; color: var(--white);
    text-decoration: none; white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--silver);
    transition: gap 0.2s, border-color 0.2s;
    flex-shrink: 0;
  }
  .founders-teaser-link:hover { gap: 16px; border-color: var(--white); }
  @media (max-width: 800px) {
    .founders-teaser { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  }

  /* Mobile drawer CTA */
  .mobile-cta-btn {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 16px 20px;
    background: var(--white); color: var(--black);
    font-family: var(--sans); font-size: 12px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; border: 1px solid var(--white);
    transition: background 0.25s, color 0.25s;
  }
  .mobile-cta-btn:hover { background: var(--black); color: var(--white); }
  .mobile-cta-btn svg { transition: transform 0.2s; flex-shrink: 0; }
  .mobile-cta-btn:hover svg { transform: translateX(4px); }


  /* ── NMGC SECTION ── */
  .nmgc-section {
    padding: 96px 0;
    background: #141414;
    border-top: 1px solid rgba(184,184,184,0.08);
    border-bottom: 1px solid rgba(184,184,184,0.08);
  }

  .nmgc-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 80px;
    align-items: center;
  }
  .nmgc-text .eyebrow { margin-bottom: 20px; }
  .nmgc-text h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800; line-height: 1.05;
    margin-bottom: 24px;
  }
  .nmgc-lead {
    font-size: 17px; color: var(--silver-light);
    line-height: 1.75; font-weight: 300;
    margin-bottom: 16px;
  }
  .nmgc-text p {
    font-size: 15px; color: var(--silver-light);
    line-height: 1.7; margin-bottom: 28px;
  }
  .nmgc-goals { margin-bottom: 32px; }
  .nmgc-goals-label {
    font-size: 10px; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--silver-dark);
    font-weight: 600; margin-bottom: 14px;
  }
  .nmgc-goals-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
  }
  .nmgc-goals-list li {
    font-size: 14px; color: var(--silver-light);
    line-height: 1.6; padding-left: 18px;
    position: relative;
  }
  .nmgc-goals-list li::before {
    content: "";
    position: absolute; left: 0; top: 9px;
    width: 6px; height: 1px;
    background: var(--silver-dark);
  }
  .nmgc-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 700; color: var(--white); text-decoration: none;
    border-bottom: 1px solid rgba(184,184,184,0.4);
    padding-bottom: 3px;
    transition: border-color 0.2s, gap 0.2s;
  }
  .nmgc-link:hover { border-color: var(--white); gap: 12px; }
  /* Badge */
  .nmgc-badge { display: flex; justify-content: center; }
  .nmgc-badge-inner {
    background: var(--black);
    border: 1px solid rgba(184,184,184,0.12);
    padding: 40px 32px;
    text-align: center;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    width: 100%;
  }
  .nmgc-badge-eyebrow {
    font-size: 9px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--silver-dark);
    font-weight: 600;
  }
  .nmgc-badge-year {
    font-family: var(--serif); font-size: 72px;
    font-weight: 800; line-height: 1.2;
    background: var(--silver-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
  }
  .nmgc-badge-role {
    font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--silver);
    font-weight: 600;
  }
  .nmgc-badge-divider {
    width: 40px; height: 1px;
    background: rgba(184,184,184,0.2);
    margin: 8px 0;
  }
  .nmgc-badge-abbr {
    font-family: var(--serif); font-size: 28px;
    font-weight: 800; color: var(--white);
    letter-spacing: 0.1em;
  }
  .nmgc-badge-full {
    font-size: 11px; color: var(--silver-dark);
    line-height: 1.5; text-align: center;
  }
  @media (max-width: 900px) {
    .nmgc-inner { grid-template-columns: 1fr; gap: 48px; }
    .nmgc-badge { justify-content: flex-start; }
    .nmgc-badge-inner { max-width: 280px; }
  }



  /* ── PHILANTHROPY ── */
  .philanthropy-section {
    padding: 96px 0;
    background: var(--black);
    border-top: 1px solid rgba(184,184,184,0.08);
    border-bottom: 1px solid rgba(184,184,184,0.08);
  }
  .philanthropy-header { margin-bottom: 64px; }
  .philanthropy-header .eyebrow { margin-bottom: 20px; }
  .philanthropy-header h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800; line-height: 1.05;
    margin-bottom: 20px;
  }
  .philanthropy-intro {
    font-size: 17px; color: var(--silver-light);
    line-height: 1.75; font-weight: 300;
    max-width: 680px;
  }

  /* Featured philanthropy */
  .philanthropy-featured {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
    background: var(--black-4);
    border: 1px solid rgba(184,184,184,0.12);
    padding: 48px;
    margin-bottom: 40px;
    position: relative;
  }
  .philanthropy-featured::before {
    content: "National Philanthropy";
    position: absolute;
    top: -1px; left: 48px;
    font-size: 9px; letter-spacing: 0.28em;
    text-transform: uppercase; font-weight: 700;
    color: var(--black);
    background: var(--silver-light);
    padding: 5px 14px;
  }
  .philanthropy-featured-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/3;
    background: transparent;
    border: none;
    padding: 32px;
  }
  .philanthropy-featured-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
  .philanthropy-featured-logo-placeholder .ph-monogram {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 800;
    background: var(--silver-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
  }
  .philanthropy-featured-logo-placeholder .ph-abbr {
    font-size: 9px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--silver-dark);
    font-weight: 600;
  }
  .philanthropy-featured-name {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
  }
  .philanthropy-featured-name .italic { font-style: italic; font-weight: 500; color: var(--silver); }
  .philanthropy-featured-desc {
    font-size: 15px;
    color: var(--silver-light);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 28px;
  }
  .philanthropy-featured-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 700; color: var(--white); text-decoration: none;
    border-bottom: 1px solid rgba(184,184,184,0.4);
    padding-bottom: 3px;
    transition: border-color 0.2s, gap 0.2s;
  }
  .philanthropy-featured-link:hover { border-color: var(--white); gap: 12px; }

  /* Service partners grid */
  .philanthropy-service-label {
    font-size: 10px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--silver);
    font-weight: 600; margin-bottom: 20px;
  }
  .philanthropy-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2px;
  }
  .philanthropy-service-item {
    background: #141414;
    border: 1px solid rgba(184,184,184,0.08);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
  }
  .philanthropy-service-item:hover {
    border-color: rgba(184,184,184,0.2);
    background: #1a1a1a;
  }
  .philanthropy-service-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
  }
  .philanthropy-service-desc {
    font-size: 12px;
    color: var(--silver);
    line-height: 1.6;
  }
  @media (max-width: 900px) {
    .philanthropy-section { padding: 72px 0; }
    .philanthropy-featured {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 36px 28px;
    }
    .philanthropy-featured-logo-wrap { aspect-ratio: auto; padding: 28px; }
    .philanthropy-service-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .philanthropy-service-grid { grid-template-columns: 1fr; }
  }

  /* ── PARTNERS ── */
  .partners-section {
    padding: 96px 0;
    background: var(--black);
    border-top: 1px solid rgba(184,184,184,0.08);
    border-bottom: 1px solid rgba(184,184,184,0.08);
  }
  .partners-header {
    margin-bottom: 56px;
  }
  .partners-header .eyebrow { margin-bottom: 20px; }
  .partners-header h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800; line-height: 1.05;
    margin-bottom: 20px;
  }
  .partners-intro {
    font-size: 17px; color: var(--silver-light);
    line-height: 1.75; font-weight: 300;
    max-width: 640px;
  }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }
  .partner-card {
    background: #141414;
    border: 1px solid rgba(184,184,184,0.25);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.25s;
  }
  .partner-card:hover { 
    border-color: rgba(184,184,184,0.3);     
    background: #1a1a1a;
  }
  .partner-logo-wrap {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--white);
  }
  .partner-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.4);
  }
  .partner-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
  }
  .partner-desc {
    font-size: 14px;
    color: var(--silver-dark);
    line-height: 1.7;
    flex: 1;
  }
  .partner-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 700; color: var(--silver); text-decoration: none;
    border-bottom: 1px solid rgba(184,184,184,0.25);
    padding-bottom: 3px; width: fit-content;
    transition: color 0.2s, border-color 0.2s, gap 0.2s;
  }
  .partner-link:hover { color: var(--white); border-color: var(--white); gap: 12px; }
  @media (max-width: 768px) {
    .partners-section { padding: 72px 0; }
    .partners-grid { grid-template-columns: 1fr; }
    .partners-header { margin-bottom: 40px; }
  }

  /* ── FOOTER MOBILE ── */
  .footer-mobile-social { display: none; }
  .footer-mobile-social-label {
    font-size: 10px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--silver-dark);
    font-weight: 600; display: block; margin-bottom: 16px;
  }
  .footer-mobile-social-icons {
    display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  }
  .footer-mobile-social-icons a {
    width: 44px; height: 44px;
    border: 1px solid rgba(184,184,184,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--silver); text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .footer-mobile-social-icons a:hover { border-color: var(--silver); color: var(--white); }
