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

body {
    font-family: 'Inter', sans-serif;
    background: #949494;
    color: #1E2D3B;
    font-size: 24px
}

a {
    text-decoration: none;
    color: inherit
}

/* ── Navigation ─────────────────────────────────────────────────────── */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    max-width: 120px
}

.logo img {
    max-width: 100%;
    height: auto;
    animation: logoPulse 3s ease-in-out infinite;
    transform-origin: center
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em
}

.logo-text span {
    color: #FBB040
}

.nav-links {
    display: flex;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.nav-links a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em
}

.nav-links a:hover {
    color: #FBB040
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s
}

.nav-cta {
    background: #FBB040;
    color: #1E2D3B;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    animation: navBlink 1.2s ease-in-out infinite
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
    padding: 6rem 2.5rem 5rem;
    max-width: 100%
}

.hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.12;
    font-family: 'Playfair Display', serif;
    color: #FBB040;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    max-width: 100%
}

.hero h1 em {
    font-style: italic;
    color: #fff
}

.hero p {
    font-size: clamp(16px, 2.5vw, 24px);
    color: #949494;
    line-height: 1.75;
    max-width: 530px;
    margin-bottom: 2.25rem
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: clamp(14px, 2.5vw, 36px);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    padding: 0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FBB040;
    flex-shrink: 0
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-p {
    background: #FBB040;
    color: #1E2D3B;
    border: none;
    padding: 18px 42px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block
}

.btn-s {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 42px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block
}

.btn-p:hover {
    background: #e09e2e
}

.btn-s:hover {
    border-color: rgba(255, 255, 255, 0.3)
}

hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08)
}

/* ── Sections ───────────────────────────────────────────────────────── */
.section {
    padding: 4.5rem 2.5rem
}

.eyebrow {
    font-size: clamp(16px, 3vw, 33px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FBB040;
    margin-bottom: .75rem
}

.section-h {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #FBB040;
    margin-bottom: .65rem;
    letter-spacing: -0.01em
}

.section-sub {
    font-size: clamp(15px, 2vw, 24px);
    color: #1E2D3B;
    line-height: 1.7;
    max-width: 490px;
    margin-bottom: 2.75rem
}

/* ── Dark / Yellow info boxes ───────────────────────────────────────── */
.info-box-dark {
    background: #1E2D3B;
    border-radius: 12px;
    padding: 2rem 3rem;
    margin-bottom: 2.75rem;
    width: 100%
}

.info-box-dark p {
    font-size: clamp(15px, 2vw, 24px);
    color: #fff;
    line-height: 1.75;
    margin: 0
}

.info-box-yellow {
    background: #FBB040;
    border-radius: 12px;
    padding: 2rem 3rem;
    margin-bottom: 2rem
}

.colored-container {
    background: #1E2D3B;
    border-radius: 12px;
    padding: 2rem 3rem;
    margin-top: 1.5rem;
    width: 100%
}

.colored-container p {
    font-size: clamp(15px, 2vw, 24px);
    color: #fff;
    line-height: 1.75;
    margin: 0
}

/* ── Services grid ──────────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    align-items: stretch
}

.svc {
    background: transparent;
    padding: 1.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.12s;
    cursor: pointer;
    display: flex;
    flex-direction: column
}

.svc:last-child {
    border-right: none
}

.svc:hover {
    background: rgba(255, 255, 255, 0.1)
}

.svc.featured {
    background: #949494
}

.svc.featured:hover {
    background: #888
}

.svc-num {
    font-size: 48px;
    color: #FBB040;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: .5rem;
    line-height: 1;
    letter-spacing: -0.02em
}

.svc.featured .svc-num {
    color: rgba(251, 176, 64, 0.4)
}

.svc h3 {
    font-size: clamp(18px, 2.5vw, 34px);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: .45rem
}

.svc.featured h3 {
    color: #FBB040
}

.svc p {
    font-size: 13px;
    color: #fff;
    line-height: 1.6
}

.svc.featured p {
    color: #1E2D3B
}

.new-badge {
    display: inline-block;
    background: #FBB040;
    color: #1E2D3B;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    margin-bottom: .6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase
}

/* ── Team grid ──────────────────────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

/* ── Research grid ──────────────────────────────────────────────────── */
.research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 2rem
}

/* ── Publications grid ──────────────────────────────────────────────── */
.pub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    margin-top: 2rem
}

/* ── CTA Band ───────────────────────────────────────────────────────── */
.cta-band {
    padding: 5rem 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #1E2D3B
}

.cta-band h2 {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #FBB040;
    margin-bottom: .65rem;
    letter-spacing: -0.01em
}

.cta-band p {
    font-size: clamp(15px, 2vw, 24px);
    color: #fff;
    margin-bottom: 2.25rem
}

.input-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap
}

.input-row input {
    padding: 11px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    width: 250px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none
}

.input-row input:focus {
    border-color: #FBB040
}

/* ── Footer ─────────────────────────────────────────────────────────── */
footer {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

footer p {
    font-size: 14px;
    color: #1E2D3B
}

.ft-links {
    display: flex;
    gap: 1.75rem
}

.ft-links a {
    font-size: 14px;
    color: #1E2D3B;
    font-weight: 500
}

.ft-links a:hover {
    color: #FBB040
}

/* ── Article pages ──────────────────────────────────────────────────── */
.article-wrap {
    line-height: 24px
}

.article-wrap ul {
    margin: 0;
    padding: 0
}

.article-wrap ul li {
    list-style-type: none;
    display: block;
    margin: 0 0 10px;
    line-height: 24px;
    font-size: 14px
}

.article-wrap h2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 32px;
    margin: 24px 0 0
}

.article-wrap p {
    font-size: 14px
}

.text-white {
    color: #fff
}

/* ── Animations ─────────────────────────────────────────────────────── */
@keyframes logoPulse {
    0% {
        opacity: 0.7;
        transform: scale(0.97)
    }

    50% {
        opacity: 1;
        transform: scale(1.03)
    }

    100% {
        opacity: 0.7;
        transform: scale(0.97)
    }
}

@keyframes navBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

/* ── Stat strip ─────────────────────────────────────────────────────── */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.stat {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08)
}

.stat:last-child {
    border-right: none
}

.stat-n {
    font-size: 18px;
    font-weight: 600;
    color: #FBB040;
    letter-spacing: -0.01em
}

.stat-l {
    font-size: 12px;
    color: #949494;
    margin-top: 5px
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════════════ */

/* ── Tablet landscape: ≤1024px ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .svc {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12)
    }

    .svc:last-child {
        border-bottom: none
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important
    }

    .research-grid {

        grid-template-columns: repeat(2, 1fr) !important
    }
}

/* ── Tablet portrait: ≤800px ────────────────────────────────────────── */
@media (max-width: 800px) {
    .stat-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08)
    }

    .stat:last-child {
        border-bottom: none
    }
}

/* ── Mobile: ≤768px ─────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Nav */
    .nav {
        padding: .9rem 1.2rem;
        flex-wrap: wrap;
        gap: .5rem;
        position: relative
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: .5rem 0;
        order: 4;
        position: static;
        transform: none
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        font-size: 30px;
        padding: .6rem 0;
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.1)
    }

    .nav-links a:last-child {
        border-bottom: none
    }

    .hamburger {
        display: flex
    }

    .nav-cta {
        font-size: 13px;
        padding: 8px 14px;
        animation: none;
        opacity: 1
    }

    /* Hero */
    .hero {
        padding: 3rem 1.2rem 2.5rem
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px
    }

    .btn-p,
    .btn-s {
        padding: 14px 20px;
        font-size: 16px;
        width: 100%;
        text-align: center;
        display: block
    }

    /* Sections */
    .section {
        padding: 2.5rem 1.2rem
    }

    /* Info boxes */
    .info-box-dark,
    .info-box-yellow,
    .colored-container {
        padding: 1.5rem 1.25rem
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr !important
    }

    .svc {
        border-right: none;
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.1)
    }

    .svc:last-child {
        border-bottom: none
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr !important
    }

    /* Research */
    .research-grid {
        grid-template-columns: 1fr !important
    }

    /* Publications */
    .pub-grid {
        grid-template-columns: 1fr !important
    }

    /* Stat strip */
    .stat-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    /* CTA band */
    .cta-band {
        padding: 3rem 1.2rem
    }

    .input-row {
        flex-direction: column;
        align-items: stretch
    }

    .input-row input {
        width: 100%
    }

    .input-row .btn-p {
        width: 100%;
        text-align: center
    }

    /* Footer */
    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem
    }

    .ft-links {
        flex-wrap: wrap;
        gap: 1rem
    }
}

/* ── Small mobile: ≤480px ───────────────────────────────────────────── */
@media (max-width: 480px) {
    .nav {
        padding: .75rem 1rem
    }

    .section {
        padding: 2rem 1rem
    }

    .hero {
        padding: 2.5rem 1rem 2rem
    }

    .cta-band {
        padding: 2.5rem 1rem
    }

    footer {
        padding: 1rem
    }

    .info-box-dark,
    .info-box-yellow,
    .colored-container {
        padding: 1.25rem 1rem
    }
}