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

:root {
    --navy: #233857;
    --navy-dark: #182e4d;
    --navy-border: #38547c;
    --navy-border-hover: #4f77b0;
    --orange: #eb5c2b;
    --orange-light: #f3931b;
    --white: #ffffff;
    --text-muted: #516e7a;
    --text-body: #1e1e1e;
    --container: 1170px;
    --radius-lg: 25px;
    --radius-md: 10px;
    --shadow-card: 2px 5px 10px rgba(79, 119, 176, 0.1);
    --font-heading: "Poppins", sans-serif;
    --font-body: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 60px 0;
    overflow: hidden;
}

.section--navy {
    background: var(--navy);
    color: var(--white);
}

.section--white {
    background: var(--white);
    color: var(--text-body);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 12px;
    text-align: center;
}

.section__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 32px;
    text-align: center;
}

.section--navy .section__subtitle {
    color: var(--white);
}

.section--white .section__title {
    color: var(--navy);
}

.section--white .section__subtitle {
    color: var(--navy);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border: 0;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn--primary {
    background: linear-gradient(120deg, var(--orange-light) 0%, var(--orange) 100%);
    color: var(--white);
}

.btn--primary:hover {
    background: linear-gradient(150deg, var(--orange) 0%, var(--orange-light) 100%);
}

.btn--outline {
    background: transparent;
    color: var(--orange-light);
    border: 1px solid var(--orange-light);
}

.btn--outline:hover {
    background: #111e33;
    color: var(--white);
}

.btn--dark {
    background: var(--navy);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--navy-dark);
}

/* Header */
.site-header {
    background: var(--navy);
    padding: 16px 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.site-brand__logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.site-brand__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Hero */
.hero {
    padding: 50px 0;
    background: var(--navy);
    color: var(--white);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 8px;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 16px;
}

.hero__body {
    font-style: italic;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 24px;
    max-width: 520px;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.hero__visual-main {
    position: relative;
    z-index: 2;
    max-width: 400px;
    width: 100%;
}

.hero__layer {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero__layer--1 { top: 48px; left: 44px; width: 125px; }
.hero__layer--2 { top: 125px; right: 60px; width: 125px; }
.hero__layer--3 { bottom: 49px; left: 0; width: 150px; }

/* Feature cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.feature-card {
    position: relative;
    background: var(--navy-dark);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    border-color: var(--navy-border-hover);
    box-shadow: var(--shadow-card);
}

.feature-card__link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}

.feature-card__icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    object-fit: contain;
}

.feature-card__icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
    margin: 0 auto 24px;
}

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 12px;
    text-transform: capitalize;
}

.feature-card__desc {
    margin: 0;
    line-height: 1.5;
}

/* Mission */
.mission {
    position: relative;
    padding: 80px 0;
}

.mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission__media {
    position: relative;
}

.mission__image {
    border-radius: 30px;
    width: 100%;
}

.mission__shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.mission__shape--1 { top: -56px; left: 26px; width: 25%; }
.mission__shape--2 { bottom: -80px; left: 15px; width: 25%; }

.mission__label {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.mission__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 16px;
}

.mission__body {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 24px;
    text-align: justify;
}

/* Accordion */
.accordion {
    max-width: var(--container);
    margin: 0 auto;
}

.accordion__item {
    margin-bottom: 25px;
}

.accordion__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px;
    background: var(--navy-dark);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.accordion__header.is-open {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-bottom: 0;
}

.accordion__icon svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
    flex-shrink: 0;
}

.accordion__title {
    flex: 1;
}

.accordion__toggle {
    width: 14px;
    height: 14px;
    fill: var(--white);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.accordion__header.is-open .accordion__toggle {
    transform: rotate(90deg);
}

.accordion__content {
    display: none;
    padding: 20px;
    background: var(--navy-dark);
    border: 1px solid var(--navy-border);
    border-top: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
}

.accordion__content.is-open {
    display: block;
}

.accordion__content ul {
    margin: 0;
    padding-left: 20px;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
}

.team-card__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 16px;
    background: #eee;
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px;
}

.team-card__role {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    font-weight: 400;
}

.section__title--team {
    color: var(--text-muted);
}

/* CTA strip */
.cta-strip {
    background: var(--navy);
    color: var(--white);
    padding: 50px 24px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact__eyebrow {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
}

.contact__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin: 0 0 16px;
    line-height: 1.2;
}

.contact__intro {
    margin: 0 0 24px;
    max-width: 420px;
}

.contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact__list svg {
    width: 18px;
    height: 18px;
    fill: #000;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Form */
.contact-form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font: inherit;
    background: var(--white);
}

.form-control:focus {
    outline: 2px solid var(--navy-border-hover);
    border-color: var(--navy-border-hover);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.form-alert--success {
    background: #e7f7ed;
    border: 1px solid #b6e3c5;
    color: #1a7f37;
}

.form-alert--error {
    background: #fdecea;
    border: 1px solid #f5c2c0;
    color: #b42318;
}

.form-alert--warning {
    background: #fff4e5;
    border: 1px solid #ffcc80;
    color: #663c00;
}

.form-alert ul {
    margin: 0;
    padding-left: 18px;
}

/* Social + footer */
.social-bar {
    padding: 24px 0;
    text-align: center;
}

.social-bar__icons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.social-bar__icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
}

.social-bar__icons svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Article / team single */
.page-main {
    padding: 48px 0 80px;
}

.page-header {
    margin-bottom: 32px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--navy);
    margin: 0;
}

.page-content {
    max-width: 800px;
    line-height: 1.7;
}

.page-content h2,
.page-content h3 {
    color: var(--navy);
    font-family: var(--font-heading);
}

.page-content a {
    color: var(--orange);
}

.team-profile {
    display: grid;
    grid-template-columns: minmax(220px, 400px) 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.team-profile__photo {
    width: 100%;
    border-radius: 8px;
}

.team-profile__name {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0 0 8px;
    color: var(--navy);
}

.team-profile__role {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.team-profile__bio {
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero__grid,
    .mission__grid,
    .contact__grid,
    .feature-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 280px;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .section {
        padding: 40px 0;
    }

    .feature-grid,
    .team-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 40px 24px;
    }

    .hero__body {
        max-width: none;
    }

    .team-profile {
        grid-template-columns: 1fr;
    }

    .site-header .btn {
        display: none;
    }
}
