*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-deep:   #1B4332;
      --green-mid:    #2D6A4F;
      --green-light:  #52B788;
      --green-pale:   #D8F3DC;
      --gold:         #C9973A;
      --gold-light:   #F0C97A;
      --cream:        #FAF8F3;
      --cream-dark:   #F0EDE5;
      --white:        #FFFFFF;
      --text-dark:    #1A1A1A;
      --text-mid:     #3D3D3D;
      --text-muted:   #767676;
      --border:       rgba(27, 67, 50, 0.12);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 5%;
      background: rgba(250, 248, 243, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 32px rgba(27,67,50,0.10); }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 40px; height: 40px;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 2px var(--green-deep);
      flex-shrink: 0;
    }
    .nav-logo-text { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.25rem; color: var(--green-deep); letter-spacing: 0.01em; }
    .nav-logo-text span { color: var(--gold); }

    .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
    .nav-links a { text-decoration: none; font-size: 0.88rem; font-weight: 500; color: var(--text-mid); letter-spacing: 0.02em; transition: color 0.2s; }
    .nav-links a:hover { color: var(--green-deep); }

    .nav-cta {
      background: var(--green-deep);
      color: var(--white) !important;
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--green-mid) !important; color: var(--white) !important; }

    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--green-deep); border-radius: 2px; transition: all 0.3s; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 7rem 5% 5rem;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, #1B4332 0%, #2D6A4F 50%, #1B4332 100%);
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-gold-blob {
      position: absolute;
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(201,151,58,0.18) 0%, transparent 70%);
      top: -80px; right: -80px;
      pointer-events: none;
    }
    .hero-gold-blob-2 {
      position: absolute;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(82,183,136,0.15) 0%, transparent 70%);
      bottom: 60px; left: 5%;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      max-width: 760px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(201,151,58,0.18);
      color: var(--gold-light);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.35rem 1rem;
      border-radius: 100px;
      border: 1px solid rgba(201,151,58,0.35);
      margin-bottom: 1.8rem;
      animation: fadeUp 0.8s ease both;
    }
    .hero-eyebrow::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--gold-light);
      border-radius: 50%;
    }

    .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.08;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s 0.15s ease both;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 1.08rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      max-width: 580px;
      margin-bottom: 2.8rem;
      font-weight: 300;
      animation: fadeUp 0.8s 0.28s ease both;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-bottom: 2.8rem;
      animation: fadeUp 0.8s 0.38s ease both;
    }
    .hero-pill {
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 500;
      border: 1px solid rgba(255,255,255,0.25);
      color: rgba(255,255,255,0.85);
      letter-spacing: 0.03em;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      animation: fadeUp 0.8s 0.46s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--gold);
      color: var(--white);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.92rem;
      padding: 0.85rem 1.8rem;
      border-radius: 8px;
      letter-spacing: 0.02em;
      transition: all 0.2s;
      border: none; cursor: pointer;
    }
    .btn-primary:hover { background: #b8862e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,151,58,0.4); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.92rem;
      padding: 0.85rem 1.8rem;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.35);
      letter-spacing: 0.02em;
      transition: all 0.2s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

    .hero-scroll-hint {
      position: absolute;
      bottom: 2.5rem; left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255,255,255,0.45);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      animation: fadeIn 1.5s 1s ease both;
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
      animation: scrollBounce 1.8s infinite;
    }

    /* ── SECTION SCAFFOLDING ── */
    section { padding: 6rem 5%; }
    .section-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green-mid);
      background: var(--green-pale);
      padding: 0.3rem 0.85rem;
      border-radius: 100px;
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--green-deep);
      line-height: 1.15;
      margin-bottom: 1.1rem;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-lead {
      font-size: 1.05rem;
      color: var(--text-mid);
      line-height: 1.85;
      max-width: 620px;
      font-weight: 300;
    }
    .centered { text-align: center; }
    .centered .section-lead { margin: 0 auto; }

    /* ── ABOUT STRIP ── */
    #about {
      background: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-card {
      background: var(--green-deep);
      border-radius: 20px;
      padding: 3rem;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(201,151,58,0.25) 0%, transparent 70%);
    }
    .about-monogram {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      font-weight: 700;
      color: rgba(255,255,255,0.08);
      line-height: 1;
      position: absolute;
      bottom: 1rem; right: 1.5rem;
      letter-spacing: -0.02em;
      pointer-events: none;
      user-select: none;
    }
    .about-card-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-style: italic;
      font-weight: 400;
      line-height: 1.55;
      color: var(--gold-light);
      margin-bottom: 1.5rem;
    }
    .about-card-name {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }
    .about-stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 1.5rem;
    }
    .about-stat {
      background: var(--cream);
      border-radius: 12px;
      padding: 1.2rem;
      text-align: center;
    }
    .about-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--green-deep);
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .about-stat-label {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .about-text .section-tag { margin-bottom: 1rem; }
    .about-intro-list { margin-top: 1.5rem; list-style: none; }
    .about-intro-list li {
      display: flex;
      gap: 0.85rem;
      padding: 0.7rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.95rem;
      color: var(--text-mid);
      align-items: flex-start;
    }
    .about-intro-list li::before {
      content: '';
      flex-shrink: 0;
      width: 7px; height: 7px;
      background: var(--gold);
      border-radius: 50%;
      margin-top: 0.45rem;
    }

    /* ── PILLARS ── */
    #pillars { background: var(--cream); }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
      margin-top: 3.5rem;
    }
    .pillar-card {
      background: var(--white);
      border-radius: 18px;
      padding: 2.5rem 2rem;
      border: 1px solid var(--border);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .pillar-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .pillar-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(27,67,50,0.12); }
    .pillar-card:hover::after { opacity: 1; }

    .pillar-card.edtech::after  { background: linear-gradient(90deg, #1B4332, #52B788); }
    .pillar-card.agritech::after { background: linear-gradient(90deg, #52B788, #C9973A); }
    .pillar-card.fintech::after  { background: linear-gradient(90deg, #C9973A, #1B4332); }

    .pillar-icon {
      width: 58px; height: 58px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .pillar-icon svg { width: 30px; height: 30px; }

    .pillar-card.edtech .pillar-icon  { background: #D8F3DC; }
    .pillar-card.agritech .pillar-icon { background: #FEF9EE; }
    .pillar-card.fintech .pillar-icon  { background: #FFF8EE; }

    .pillar-badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.2rem 0.7rem;
      border-radius: 100px;
      margin-bottom: 0.7rem;
    }
    .pillar-card.edtech .pillar-badge  { background: var(--green-pale); color: var(--green-deep); }
    .pillar-card.agritech .pillar-badge { background: #FEF9EE; color: #7D5A0B; }
    .pillar-card.fintech .pillar-badge  { background: #FFF3E0; color: #8B5E0A; }

    .pillar-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--green-deep);
      margin-bottom: 0.6rem;
      line-height: 1.2;
    }
    .pillar-tagline {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.9rem;
    }
    .pillar-desc {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }
    .pillar-features { list-style: none; }
    .pillar-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--text-mid);
      padding: 0.3rem 0;
    }
    .pillar-features li::before {
      content: '→';
      color: var(--green-light);
      font-weight: 600;
      flex-shrink: 0;
    }

    /* ── ECOSYSTEM ── */
    #ecosystem {
      background: var(--green-deep);
      color: var(--white);
    }
    #ecosystem .section-tag { background: rgba(201,151,58,0.2); color: var(--gold-light); }
    #ecosystem .section-title { color: var(--white); }
    #ecosystem .section-title em { color: var(--gold-light); }
    #ecosystem .section-lead { color: rgba(255,255,255,0.7); }

    .cycle-wrapper {
      margin-top: 4rem;
      position: relative;
    }

    .cycle-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      grid-template-rows: auto auto auto;
      gap: 1.5rem 2rem;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .cycle-node {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 1.8rem 1.5rem;
      text-align: center;
      transition: all 0.3s;
    }
    .cycle-node:hover {
      background: rgba(255,255,255,0.11);
      border-color: rgba(201,151,58,0.5);
      transform: scale(1.02);
    }
    .cycle-node-icon {
      font-size: 2rem;
      margin-bottom: 0.6rem;
      display: block;
    }
    .cycle-node-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .cycle-node-sub {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      font-weight: 300;
    }

    .cycle-center {
      grid-column: 2;
      grid-row: 1 / 4;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cycle-center-badge {
      width: 120px; height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold) 0%, #E8B84B 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      box-shadow: 0 0 0 16px rgba(201,151,58,0.12), 0 0 0 32px rgba(201,151,58,0.06);
    }
    .cycle-center-badge span:first-child {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .cycle-center-badge span:last-child {
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
    }

    .cycle-arrow {
      text-align: center;
      color: rgba(201,151,58,0.7);
      font-size: 1.5rem;
    }

    .ecosystem-insights {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      margin-top: 3.5rem;
    }
    .insight-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 1.4rem;
    }
    .insight-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      font-weight: 300;
    }
    .insight-card strong {
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 0.5rem;
    }

    /* ── ETHICS ── */
    #ethics { background: var(--white); }
    .ethics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      margin-top: 3rem;
    }
    .ethics-card {
      border-radius: 14px;
      padding: 1.6rem 1.3rem;
      background: var(--cream);
      border: 1px solid var(--border);
      transition: all 0.25s;
    }
    .ethics-card:hover { border-color: var(--green-light); transform: translateY(-3px); }
    .ethics-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--green-pale);
      line-height: 1;
      margin-bottom: 0.6rem;
    }
    .ethics-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--green-deep);
      margin-bottom: 0.4rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .ethics-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.65;
      font-weight: 300;
    }

    /* ── DIRECTOR ── */
    #director {
      background: var(--cream-dark);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .director-block .section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }
    .director-name-card {
      margin-top: 2rem;
      background: var(--white);
      border-radius: 16px;
      padding: 2rem;
      border: 1px solid var(--border);
    }
    .director-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--green-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--gold-light);
      margin-bottom: 1rem;
    }
    .director-full-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--green-deep);
      margin-bottom: 0.2rem;
    }
    .director-role {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .director-addresses {
      border-top: 1px solid var(--border);
      padding-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .director-addr-row {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      font-size: 0.87rem;
      color: var(--text-mid);
    }
    .addr-icon {
      width: 22px; height: 22px;
      background: var(--green-pale);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .addr-icon svg { width: 13px; height: 13px; fill: var(--green-deep); }

    .contact-methods {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .contact-card {
      background: var(--white);
      border-radius: 14px;
      padding: 1.4rem 1.6rem;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
      color: var(--text-dark);
      transition: all 0.2s;
    }
    .contact-card:hover { border-color: var(--green-light); transform: translateX(4px); }
    .contact-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 22px; height: 22px; }
    .contact-icon.phone { background: #E8FFF3; }
    .contact-icon.phone svg { fill: #128C7E; }
    .contact-icon.email { background: #FFF5E8; }
    .contact-icon.email svg { fill: var(--gold); }
    .contact-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
    .contact-value { font-size: 0.97rem; font-weight: 500; color: var(--green-deep); }

    /* ── SOCIAL MEDIA ── */
    .social-bar {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .social-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px; height: 44px;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.22s;
      position: relative;
      overflow: hidden;
    }
    .social-btn svg { width: 20px; height: 20px; position: relative; z-index: 1; }
    .social-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.22s;
      border-radius: 10px;
    }
    .social-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
    .social-btn:hover::before { opacity: 1; }

    /* Hero variant — ghost style on dark bg */
    .social-bar.hero-social .social-btn {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .social-bar.hero-social .social-btn svg { fill: rgba(255,255,255,0.85); }
    .social-bar.hero-social .social-btn.fb::before  { background: #1877F2; }
    .social-bar.hero-social .social-btn.ig::before  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
    .social-bar.hero-social .social-btn.yt::before  { background: #FF0000; }
    .social-bar.hero-social .social-btn.tt::before  { background: #010101; }
    .social-bar.hero-social .social-btn.li::before  { background: #0A66C2; }
    .social-bar.hero-social .social-btn:hover svg   { fill: #fff; }

    /* Contact section variant — colored icons on white */
    .social-bar.contact-social .social-btn {
      width: auto;
      padding: 0 1.1rem;
      gap: 0.55rem;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 500;
      font-family: 'Outfit', sans-serif;
    }
    .social-bar.contact-social .social-btn span { position: relative; z-index: 1; }
    .social-bar.contact-social .social-btn.fb  { background: #E8F0FE; color: #1877F2; }
    .social-bar.contact-social .social-btn.ig  { background: #FFF0F5; color: #C13584; }
    .social-bar.contact-social .social-btn.yt  { background: #FFF0F0; color: #FF0000; }
    .social-bar.contact-social .social-btn.tt  { background: #F0F0F0; color: #010101; }
    .social-bar.contact-social .social-btn.li  { background: #E8F4FD; color: #0A66C2; }
    .social-bar.contact-social .social-btn.fb svg { fill: #1877F2; }
    .social-bar.contact-social .social-btn.ig svg { fill: #C13584; }
    .social-bar.contact-social .social-btn.yt svg { fill: #FF0000; }
    .social-bar.contact-social .social-btn.tt svg { fill: #010101; }
    .social-bar.contact-social .social-btn.li svg { fill: #0A66C2; }
    .social-bar.contact-social .social-btn.fb::before { background: #1877F2; }
    .social-bar.contact-social .social-btn.ig::before { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
    .social-bar.contact-social .social-btn.yt::before { background: #FF0000; }
    .social-bar.contact-social .social-btn.tt::before { background: #010101; }
    .social-bar.contact-social .social-btn.li::before { background: #0A66C2; }
    .social-bar.contact-social .social-btn:hover { color: #fff; }
    .social-bar.contact-social .social-btn:hover svg { fill: #fff; }

    /* Footer variant — subtle on dark */
    .social-bar.footer-social .social-btn {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      width: 38px; height: 38px;
    }
    .social-bar.footer-social .social-btn svg { fill: rgba(255,255,255,0.55); width: 17px; height: 17px; }
    .social-bar.footer-social .social-btn.fb::before { background: #1877F2; }
    .social-bar.footer-social .social-btn.ig::before { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
    .social-bar.footer-social .social-btn.yt::before { background: #FF0000; }
    .social-bar.footer-social .social-btn.tt::before { background: #333; }
    .social-bar.footer-social .social-btn.li::before { background: #0A66C2; }
    .social-bar.footer-social .social-btn:hover svg  { fill: #fff; }

    .social-section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 0.75rem;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark);
      color: rgba(255,255,255,0.55);
      padding: 3rem 5%;
    }
    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .footer-brand {}
    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .footer-brand-sub {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
    }
    .footer-motto {
      margin-top: 0.7rem;
      font-style: italic;
      font-size: 0.87rem;
      color: var(--gold-light);
      font-family: 'Cormorant Garamond', serif;
    }
    .footer-links-col h4 {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 0.9rem;
    }
    .footer-links-col a {
      display: block;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.88rem;
      padding: 0.25rem 0;
      transition: color 0.2s;
    }
    .footer-links-col a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.8rem;
      font-size: 0.8rem;
    }
    .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes scrollBounce {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50% { transform: scaleY(0.6); opacity: 0.4; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      #about, #director { grid-template-columns: 1fr; gap: 2.5rem; }
      .pillars-grid { grid-template-columns: 1fr; }
      .ethics-grid { grid-template-columns: repeat(2, 1fr); }
      .cycle-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .cycle-center { grid-column: 1; grid-row: auto; margin: 1rem 0; }
      .ecosystem-insights { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      nav { padding: 1rem 4%; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 65px; left: 0; right: 0;
        background: var(--cream);
        padding: 1.5rem 5%;
        border-bottom: 1px solid var(--border);
        gap: 1rem;
        z-index: 99;
      }
      .hamburger { display: flex; }
      .ethics-grid { grid-template-columns: 1fr; }
      #about, #director { padding: 4rem 5%; }
      .about-stat-row { grid-template-columns: repeat(3,1fr); }
      .hero-actions { flex-direction: column; }
      .footer-inner { flex-direction: column; }
    }