

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

  * { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --gold: #D4AF37;
    --gold2: #C9A227;
    --gold-light: #F0D060;
    --gold-glow: rgba(212,175,55,0.3);
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --text: #111111;
    --text2: #444444;
    --text3: #888888;
  }

  body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

  /* SPLASH */
  #splash {
    position: fixed; inset: 0; z-index: 1000;
    background: linear-gradient(135deg, #ffffff 0%, #fdf8e8 50%, #fafaf5 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  #splash.exit { opacity: 0; pointer-events: none; }

  .logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }

  .logo-text-row { display: flex; align-items: center; gap: 0; }
  .logo-letter {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 500;
    color: #222;
    letter-spacing: 0.12em;
    transition: opacity 1.2s ease, transform 1.2s ease;
    line-height: 1;
  }
  .logo-letter.fade-out { opacity: 0; transform: translateY(-20px); }

  .globe-container {
    width: clamp(64px, 10vw, 110px);
    height: clamp(64px, 10vw, 110px);
    position: relative;
    margin: 0 4px;
    transition: transform 1.5s cubic-bezier(0.4,0,0.2,1), width 1.5s ease, height 1.5s ease;
  }
  .globe-container.zoom {
    transform: scale(25);
    opacity: 0;
    transition: transform 2s cubic-bezier(0.4,0,0.2,1), opacity 0.5s ease 1.5s;
  }

  #globeCanvas {
    width: 100%; height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(212,175,55,0.5), 0 0 60px rgba(212,175,55,0.2), inset 0 0 20px rgba(212,175,55,0.1);
  }

  .logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(12px, 2vw, 15px);
    letter-spacing: 0.45em;
    color: var(--gold);
    font-weight: 400;
    text-transform: uppercase;
    transition: opacity 1.2s ease;
    margin-top: 4px;
  }
  .logo-subtitle.fade-out { opacity: 0; }

  .scroll-hint {
    position: absolute; bottom: 60px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: float 2.5s ease-in-out infinite;
    transition: opacity 0.5s ease;
  }
  .scroll-hint span {
    font-size: 12px; letter-spacing: 0.25em; color: #aaa;
    text-transform: uppercase; font-weight: 300;
  }
  .scroll-arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold)); margin: 0 auto; }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  .scroll-hint.hide { opacity: 0; }

  /* MAIN SITE */
  #site { opacity: 0; transition: opacity 0.8s ease; }
  #site.visible { opacity: 1; }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display:flex;justify-content: center;align-items: center;
    padding: 20px 40px;
    background: transparent;
    /* backdrop-filter: blur(12px); */
    /* border-bottom: 0.5px solid rgba(212,175,55,0.2); */
    
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    
  }
  
  nav.scrolled { padding: 20px 40px;   background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    
    border-bottom: 0.5px solid rgba(212,175,55,0.2);}
/* 
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 500; color: #111;
    display: flex; align-items: center; gap: 8px; text-decoration: none;
  }
  .nav-logo .gold-dot { color: var(--gold); } */

  .nav-links { display: flex; justify-content: center;align-items: center; gap: 32px; align-items: center; }
  .nav-links a {
    font-size: 13px; font-weight: 400; color: #444; text-decoration: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    padding: 10px 24px; background: var(--gold); color: #fff !important;
    border-radius: 2px; font-weight: 500 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold2) !important; color: #fff !important; }

  /* HERO */
  #hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, #ffffff 0%, #fdf9ef 40%, #fafafa 100%);
    padding: 120px 40px 80px;
  }

  .particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .particle {
    position: absolute; width: 10px; height: 10px;
    background: var(--gold); border-radius: 50%; opacity: 0;
    animation: particle-float linear infinite;
  }
  @keyframes particle-float {
    0% { opacity: 0; transform: translateY(100vh) translateX(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20px) translateX(20px); }
  }

  .world-map-bg {
    position: absolute; inset: 0;
    opacity: 0.04; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath d='M150 150 Q200 120 250 140 Q280 160 300 150 Q340 130 380 145 Q420 160 460 140 Q500 120 540 135 Q580 150 620 140 Q660 130 700 145 Q740 160 780 150 Q820 135 860 145' stroke='%23D4AF37' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='200' cy='200' r='30' fill='%23D4AF37' opacity='0.5'/%3E%3Ccircle cx='500' cy='180' r='20' fill='%23D4AF37' opacity='0.5'/%3E%3Ccircle cx='750' cy='220' r='25' fill='%23D4AF37' opacity='0.4'/%3E%3Ccircle cx='350' cy='280' r='15' fill='%23D4AF37' opacity='0.4'/%3E%3Cpath d='M100 300 Q250 260 400 280 Q550 300 700 270 Q800 255 900 280' stroke='%23D4AF37' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-size: cover;
  }

  .hero-content { max-width: 800px; text-align: center; position: relative; z-index: 1; }
  .hero-eyebrow {
    font-size: 16px; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; width: 40px; height: 0.5px; background: var(--gold);
  }
  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 500; line-height: 1.15; color: #111;
    margin-bottom: 24px; letter-spacing: -0.01em;
  }
  .hero-h1 em { font-style: normal; color: var(--gold); }
  .hero-sub {
    font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 16px;
    letter-spacing: 0.05em;
  }
  .hero-tagline {
    font-size: 13px; color: #999; letter-spacing: 0.3em;
    text-transform: uppercase; margin-bottom: 48px;
    display: flex; align-items: center; justify-content: center; gap: 16px;
  }
  .hero-tagline span { width: 1px; height: 20px; background: var(--gold); opacity: 0.4; }

  .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    padding: 16px 40px; background: var(--gold); color: #fff;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s; border-radius: 2px;
  }
  .btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
  .btn-outline {
    padding: 16px 40px; background: transparent; color: #111;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500; border: 0.5px solid #ccc; cursor: pointer;
    transition: border-color 0.2s, transform 0.15s; border-radius: 2px;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

  /* STATS */
  #stats {
    padding: 80px 40px;
    background: #000000;
    display: flex; align-items: center; justify-content: center;
  }
  .stats-grid {
    max-width: 1100px; width: 100%;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
  }
  .stat-item {
    padding: 40px; text-align: center;
    border-right: 0.5px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px; font-weight: 500; color: var(--gold);
    line-height: 1; margin-bottom: 8px;
  }
  .stat-label { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

  /* ABOUT */
  #about {
    padding: 120px 40px;
    background: var(--off-white);
    display: flex; justify-content: center;
  }
  .about-inner {
    max-width: 1100px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .about-visual {
    position: relative; height: 320px;
    background: linear-gradient(135deg, #ffffff 0%, #E1E3E7 100%);
    border-radius: 2px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .about-globe-wrap { position: relative; }
  #aboutGlobe {
    width: 280px; height: 280px;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(212,175,55,0.4), 0 20px 60px rgba(0,0,0,0.1);
  }
  .about-text { padding: 20px 0; }
  .section-eyebrow {
    font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 20px;
  }
  .section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500; line-height: 1.2; color: #111; margin-bottom: 24px;
  }
  .section-body { font-size: 15px; line-height: 1.9; color: #555; margin-bottom: 32px; }
  .gold-line { width: 60px; height: 2px; background: var(--gold); margin-bottom: 32px; }

  .about-pills { display: flex; flex-wrap: wrap; gap: 10px; }
  .pill {
    padding: 8px 20px; border: 0.5px solid var(--gold);
    color: var(--gold2); font-size: 12px; letter-spacing: 0.08em;
    font-weight: 400; border-radius: 20px;
    background: rgba(212,175,55,0.04);
  }

  /* SERVICES */
  #services {
    padding: 120px 40px;
    background: #fff;
    display: flex; flex-direction: column; align-items: center;
  }
  .section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }

  .services-bento {
    max-width: 1100px; width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .service-card {
    padding: 40px;
    border: 0.5px solid rgba(0,0,0,0.08);
    border-radius: 2px;
    background: var(--off-white);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    cursor: default;
  }
  .service-card:hover {
    box-shadow: 0 8px 40px rgba(212,175,55,0.12);
    background: #000000;
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-3px);
  }
  .service-card.large { grid-column: span 2; }
  .service-icon {
    width: 48px; height: 48px; margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(212,175,55,0.1); border-radius: 2px;
    color: var(--gold); font-size: 22px;
  }
  .service-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 500; color: #111;
    margin-bottom: 12px; line-height: 1.3;
  }
  .service-card:hover .service-title{
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 500; color: #B8860B;
    margin-bottom: 12px; line-height: 1.3;
  }
  .service-desc { font-size: 14px; line-height: 1.8; color: #666; }
  .service-card:hover .service-desc{
    font-size: 14px; line-height: 1.8; color: #FFFFFF; 
  }

  /* PROGRAMS */
  #programs {
    padding: 120px 40px;
    background: linear-gradient(160deg, #000000 0%, #000000 100%);
    display: flex; flex-direction: column; align-items: center;
  }
  #programs .section-eyebrow { color: var(--gold-light); }
  #programs .section-h2 { color: #fff; }

  .adc-timeline { max-width: 900px; width: 100%; margin-top: 64px; }
  .timeline-step {
    display: flex; gap: 32px; margin-bottom: 0; position: relative;
  }
  .timeline-line-wrap {
    display: flex; flex-direction: column; align-items: center; width: 20px; flex-shrink: 0;
  }
  .timeline-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0; margin-top: 5px;
    box-shadow: 0 0 12px rgba(212,175,55,0.6);
  }
  .timeline-connector { flex: 1; width: 1px; background: rgba(212,175,55,0.2); min-height: 40px; }
  .timeline-content { padding-bottom: 48px; flex: 1; }
  .tl-num {
    font-size: 11px; letter-spacing: 0.25em; color: rgba(212,175,55,0.5);
    text-transform: uppercase; margin-bottom: 8px;
  }
  .tl-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 500; color: #fff;
    margin-bottom: 8px;
  }
  .tl-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); }

  .coming-soon-row {
    display: flex; gap: 16px; max-width: 900px; width: 100%; margin-top: 48px;
    flex-wrap: wrap;
  }
  .cs-pill {
    padding: 12px 24px; border: 0.5px solid rgba(212,175,55,0.3);
    color: rgba(212,175,55,0.6); font-size: 12px; letter-spacing: 0.15em;
    text-transform: uppercase; border-radius: 2px;
  }
  .cs-pill span { color: rgba(255,255,255,0.3); font-size: 10px; margin-left: 8px; }


  /* Team */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --gold:       #c9a227;
      --gold2:      #b8901f;
      --gold-light: rgba(201,162,39,0.25);
      --off-white:  #f9f7f4;
    }
 
    /* ── SECTION ── */
    #team {
      padding: 120px 40px;
      background: var(--off-white);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
 
    /* ── HEADER ── */
    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .section-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 14px;
    }
    .section-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 500;
      color: #111;
      line-height: 1.2;
    }
 
    /* ── GRID WRAPPER ── */
    .team-grid {
      max-width: 1100px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
 
    /* ── ROW 1: 2 centered cards ── */
    .patron-row {
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    .patron-row .team-card {
      flex: 0 1 320px;
    }
 
    /* ── ROW 2: 4 equal cards ── */
    .staff-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
 
    /* ── CARD ── */
    .team-card {
      position: relative;
      overflow: hidden;
      border-radius: 3px;
      aspect-ratio: 3 / 4;
      background: #c8bfae;
      cursor: pointer;
    }
 
    /* ── IMAGE ── */
    .team-card img.card-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.55s ease;
    }
    .team-card:hover img.card-photo {
      transform: scale(1.06);
    }
 
    /* ── PLACEHOLDER (shown when no image) ── */
    .img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(160deg, #e8dcc8 0%, #cbbfa6 100%);
      font-family: 'Playfair Display', serif;
      font-size: clamp(48px, 7vw, 88px);
      color: rgba(139, 100, 40, 0.28);
      font-weight: 600;
      letter-spacing: 0.04em;
      transition: transform 0.55s ease;
    }
    .team-card:hover .img-placeholder {
      transform: scale(1.06);
    }
 
    /* ── BOTTOM STRIP (always visible) ── */
    .card-strip {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 48px 22px 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .team-card:hover .card-strip {
      opacity: 0;
    }
    .strip-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(13px, 1.3vw, 17px);
      font-weight: 500;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 5px;
    }
    .strip-role {
      font-family: 'Inter', sans-serif;
      font-size: clamp(8px, 0.8vw, 10px);
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255, 215, 100, 0.92);
      font-weight: 500;
      line-height: 1.5;
    }
 
    /* ── HOVER OVERLAY ── */
    .card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.80);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 32px 24px;
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .team-card:hover .card-overlay {
      opacity: 1;
    }
 
    /* small circular avatar inside overlay */
    .overlay-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 2px solid rgba(201, 162, 39, 0.55);
      overflow: hidden;
      margin-bottom: 14px;
      flex-shrink: 0;
    }
    .overlay-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .overlay-avatar .av-init {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(201, 162, 39, 0.15);
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: var(--gold);
      font-weight: 500;
    }
 
    .overlay-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(14px, 1.3vw, 18px);
      font-weight: 500;
      color: #fff;
      margin-bottom: 7px;
      line-height: 1.3;
    }
    .overlay-role {
      font-family: 'Inter', sans-serif;
      font-size: clamp(8px, 0.78vw, 10px);
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 16px;
      line-height: 1.55;
    }
    .overlay-divider {
      width: 32px;
      height: 1px;
      background: rgba(201, 162, 39, 0.4);
      margin: 0 auto 16px;
    }
    .overlay-bio {
      font-family: 'Inter', sans-serif;
      font-size: clamp(10px, 0.95vw, 13px);
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.78);
    }
 
    /* ── REVEAL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .staff-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 640px) {
      #team { padding: 72px 16px; }
      .patron-row {
        flex-direction: column;
        align-items: center;
      }
      .patron-row .team-card {
        flex: none;
        width: 100%;
        max-width: 400px;
      }
      .staff-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
    }
    @media (max-width: 400px) {
      .staff-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
    }
 
    /* ── TOUCH: show overlay on tap ── */
    @media (hover: none) {
      .card-overlay   { opacity: 0; transition: opacity 0.3s; }
      .card-strip     { opacity: 1; transition: opacity 0.3s; }
      .team-card.tapped .card-overlay { opacity: 1; }
      .team-card.tapped .card-strip   { opacity: 0; }
    }

  /* JOURNEY */
  #journey {
    padding: 120px 40px;
    background: #fff;
    display: flex; flex-direction: column; align-items: center;
  }
  .journey-steps {
    max-width: 1100px; width: 100%;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 64px; position: relative;
  }
  .journey-steps::before {
    content: ''; position: absolute;
    top: 28px; left: 12%; right: 12%; height: 0.5px;
    background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  }
  .journey-step { text-align: center; padding: 0 20px; position: relative; }
  .journey-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gold); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(212,175,55,0.35);
    position: relative; z-index: 1;
  }
  .journey-label {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 8px;
  }
  .journey-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 500; color: #111; margin-bottom: 8px;
  }
  .journey-desc { font-size: 13px; line-height: 1.7; color: #777; }

  /* CONTACT */
  #contact {
    padding: 120px 40px;
    background: var(--off-white);
    display: flex; flex-direction: column; align-items: center;
  }

  .footer_head{
    color: #FFFFFF59;
  }
  .contact-inner {
    max-width: 1100px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .contact-info .section-body { margin-bottom: 40px; }
  .contact-detail {
    display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
  }
  .contact-detail-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(212,175,55,0.1); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 16px;
  }
  .contact-detail-text { font-size: 14px; line-height: 1.6; color: #555; }
  .contact-detail-text strong { display: block; font-weight: 500; color: #222; font-size: 13px; margin-bottom: 2px; }

  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #888; font-weight: 500; }
  .form-group input, .form-group select, .form-group textarea {
    padding: 14px 16px; border: 0.5px solid #ddd;
    font-size: 14px; color: #111; background: #fff;
    border-radius: 2px; font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }

  /* FOOTER */
  footer {
    background: #0a0a08; padding: 80px 40px 40px;
    display: flex; flex-direction: column; align-items: center;
  }
  .footer-inner {
    max-width: 1100px; width: 100%;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-brand .nav-logo { color: #fff; margin-bottom: 16px; display: inline-flex; }
  .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.35); max-width: 260px; }
  .footer-brand .initiative { font-size: 11px; color: rgba(212,175,55,0.5); letter-spacing: 0.1em; margin-top: 12px; }
  .footer-col h4 {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.3); margin-bottom: 20px; font-weight: 500;
  }
  .footer-col a {
    display: block; font-size: 13px; color: rgba(255,255,255,0.5);
    text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1100px; width: 100%; padding-top: 24px;
    border-top: 0.5px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
  .social-links { display: flex; gap: 16px; }
  .social-links a {
    width: 36px; height: 36px; border: 0.5px solid rgba(255,255,255,0.1);
    border-radius: 2px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3); font-size: 14px; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .social-links a:hover { border-color: var(--gold); color: var(--gold); }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    #hero { padding: 100px 24px 60px; }
    .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 300px; }
    .services-bento { grid-template-columns: 1fr; }
    .service-card.large { grid-column: span 1; }
    .journey-steps { grid-template-columns: 1fr 1fr; }
    .journey-steps::before { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
    .form-row { grid-template-columns: 1fr; }
  }

  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
