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

  :root {
    --blue: #4DAAE0;
    --yellow: #FFC814;
    --sky: #B6E0F3;
    --gold: #FFDA68;
    --gray: #666666;
    --light-yellow: #FFE08A;
    --off-white: #F7F8FA;
    --dark-text: #1A2332;
    --mid-text: #4A5568;
    --border: #E2E8F0;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 36px; height: 36px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo-icon svg { width: 20px; height: 20px; }

  .nav-logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--dark-text);
    letter-spacing: -0.01em;
  }

  .nav-logo-text span { color: var(--blue); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--mid-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--blue); }
  .nav-links a.active { color: var(--dark-text); font-weight: 600; }

  .nav-cta {
    background: var(--light-yellow) !important;
    color: #6b4800 !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: #ffd96a !important; }

  /* ── HERO ── */
  .hero {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(160deg, #f0f9ff 0%, #fffdf0 60%, #f7f8fa 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77,170,224,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,200,20,0.09) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(77,170,224,0.12);
    color: #2a7aaa;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(77,170,224,0.25);
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--blue);
  }

  .hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
  }

  .hero-title em {
    font-style: italic;
    color: var(--yellow);
  }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--mid-text);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 2.5rem;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-yellow);
    color: #6b4800;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(255,224,138,0.45);
  }

  .btn-primary:hover { background: #ffd96a; transform: translateY(-1px); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background 0.2s;
  }

  .btn-secondary:hover { background: #3a96cc; }

  /* ── MISSION ── */
  .mission {
    padding: 6rem 2rem;
    background: var(--white);
  }

  .mission-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a7aaa;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--dark-text);
  }

  .section-title em { font-style: italic; color: var(--yellow); }

  .body-text {
    font-size: 1rem;
    color: var(--mid-text);
    line-height: 1.85;
    margin-bottom: 1.25rem;
  }

  .body-text:last-child { margin-bottom: 0; }

  /* Mission visual */
  .mission-visual {
    position: relative;
  }

  .mission-card {
    background: linear-gradient(135deg, #EBF6FD 0%, #D6EEF9 100%);
    border: 1px solid rgba(77,170,224,0.2);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
  }

  .mission-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(77,170,224,0.12);
  }

  .mission-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .mission-stat {
    background: white;
    border-radius: 14px;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .mission-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 4px;
  }

  .mission-stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.4;
  }

  .mission-quote {
    background: white;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 3px solid var(--blue);
  }

  .mission-quote p {
    font-size: 0.88rem;
    color: var(--mid-text);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 8px;
  }

  .mission-quote cite {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    font-style: normal;
  }

  /* ── VALUES ── */
  .values {
    background: var(--off-white);
    padding: 6rem 2rem;
  }

  .values-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .values-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .value-card.visible { opacity: 1; transform: translateY(0); }
  .value-card:nth-child(2) { transition-delay: 0.1s; }
  .value-card:nth-child(3) { transition-delay: 0.2s; }
  .value-card:nth-child(4) { transition-delay: 0.1s; }
  .value-card:nth-child(5) { transition-delay: 0.2s; }
  .value-card:nth-child(6) { transition-delay: 0.3s; }

  .value-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
  }

  .value-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
  }

  .value-body {
    font-size: 0.9rem;
    color: var(--mid-text);
    line-height: 1.75;
  }

  /* ── TEAM ── */
  .team {
    background: var(--white);
    padding: 6rem 2rem;
  }

  .team-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .team-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .team-card {
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .team-card.visible { opacity: 1; transform: translateY(0); }
  .team-card:nth-child(2) { transition-delay: 0.08s; }
  .team-card:nth-child(3) { transition-delay: 0.16s; }
  .team-card:nth-child(4) { transition-delay: 0.24s; }

  .team-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: white;
    position: relative;
  }

  .team-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--light-yellow), var(--blue)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
  }

  .team-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--dark-text);
    margin-bottom: 3px;
  }

  .team-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2a7aaa;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .team-bio {
    font-size: 0.85rem;
    color: var(--mid-text);
    line-height: 1.65;
  }

  /* ── STORY TIMELINE ── */
  .story {
    background: var(--off-white);
    padding: 6rem 2rem;
  }

  .story-inner {
    max-width: 780px;
    margin: 0 auto;
  }

  .story-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .timeline {
    position: relative;
    padding-left: 2rem;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), var(--light-yellow));
    border-radius: 2px;
  }

  .timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .timeline-item.visible { opacity: 1; transform: translateX(0); }
  .timeline-item:nth-child(2) { transition-delay: 0.1s; }
  .timeline-item:nth-child(3) { transition-delay: 0.2s; }
  .timeline-item:nth-child(4) { transition-delay: 0.3s; }
  .timeline-item:nth-child(5) { transition-delay: 0.4s; }
  .timeline-item:last-child { margin-bottom: 0; }

  .timeline-dot {
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--blue);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--blue);
    transform: translateX(-6px);
  }

  .timeline-dot.gold {
    background: var(--light-yellow);
    box-shadow: 0 0 0 2px var(--light-yellow);
  }

  .timeline-year {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2a7aaa;
    margin-bottom: 4px;
  }

  .timeline-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
  }

  .timeline-body {
    font-size: 0.92rem;
    color: var(--mid-text);
    line-height: 1.75;
  }

  /* ── DARK STRIP ── */
  .dark-strip {
    background: var(--dark-text);
    padding: 5rem 2rem;
    text-align: center;
  }

  .dark-strip-inner {
    max-width: 680px;
    margin: 0 auto;
  }

  .dark-strip h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: white;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .dark-strip h2 em { font-style: italic; color: var(--light-yellow); }

  .dark-strip p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .dark-strip .btn-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  
/* ====================== LOGO SCALING ====================== */
.logo-image {
    width: 80px;           /* Default size for tablets & large screens */
    height: auto;
    display: block;
    object-fit: contain;    /* Maintains aspect ratio */
    transition: width 0.3s ease;
}

/* Larger screens */
@media (min-width: 1024px) {
    .logo-image {
        width: 80px;
    }
}

/* Medium screens (tablets) */
@media (max-width: 1023px) and (min-width: 768px) {
    .logo-image {
        width: 70px;
    }
}

/* Mobile phones */
@media (max-width: 767px) {
    .logo-image {
        width: 50px;       /* Smaller on mobile */
    }
}

/* Optional: Extra small phones */
@media (max-width: 480px) {
    .logo-image {
        width: 30px;
    }
}



/* ====================== CONTENT IMAGE SCALING ====================== */
.content-image {
    height: 600px;           /* Default size for tablets & large screens */
    width: auto;
    display: block;
    object-fit: contain;    /* Maintains aspect ratio */
    transition: width 0.3s ease;
}

/* Larger screens */
@media (min-height: 1024px) {
    .content-image {
        height: 500px;
    }
}

/* Medium screens (tablets) */
@media (max-height: 1023px) and (min-height: 768px) {
    .content-image {
        height: 500px;
    }
}

/* Mobile phones */
@media (max-height: 767px) {
    .content-image {
        height: 300px;       /* Smaller on mobile */
    }
}

/* Optional: Extra small phones */
@media (max-height: 480px) {
    .content-image {
        height: 280px;
    }
}



/* ====================== HAMBURGER MENU ====================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 1rem 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-links a {
    font-size: 1.1rem;
    color: var(--mid-text);
    text-decoration: none;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .desktop-menu { display: none; }
    .hamburger { display: flex; }
}



  /* ── FOOTER ── */
  footer {
    background: var(--dark-text);
    color: rgba(255,255,255,0.6);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .footer-inner { max-width: 1100px; margin: 0 auto; }

  .footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
  }

  .footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    max-width: 280px;
    line-height: 1.6;
  }

  .footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }

  .footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }

  .footer-col ul a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: var(--yellow); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

  .footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--yellow); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .mission-inner { grid-template-columns: 1fr; gap: 3rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    nav { padding: 0 1rem; }
    .nav-links { display: none; }
    .footer-top { flex-direction: column; }
  }

  @media (max-width: 520px) {
    .team-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
  }