:root {
    --font-serif: 'Libre Baskerville', serif;
    --font-sans: 'Mulish', sans-serif;
}

body {
    font-family: var(--font-sans);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: #fff;
    font-family: serif;
}

.navbar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo img {
    height: 40px;
    width: auto;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.navbar__link {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
}

.navbar__link--active {
    color: #1F5C91;
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #1F5C91;
    transition: all 0.3s ease;
}

/* Mobile menu */
.navbar__mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.navbar__mobile.is-open {
    display: flex;
}

.navbar__mobile-link {
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.navbar__mobile-link.navbar__link--active {
    color: #1F5C91;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar__links {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/eil.avif');
    background-size: cover;
    background-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 92, 145, 0.2);
}

.hero__content {
    position: relative;
    z-index: 10;
    height: 100%;
    max-width: 1280px;
    padding: 0 1rem;
    margin: 0 auto;
}

.hero__text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
}

.hero__heading {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 600;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.hero__cta:hover {
    background: #fff;
    color: #1F5C91;
}

.hero__cta svg {
    width: 24px;
    height: 24px;
}

.hero--work .hero__bg {
    background-image: url('../images/city.webp');
}

/* Responsive */
@media (min-width: 768px) {
    .hero__text {
        width: 40%;
    }

    .hero__heading {
        font-size: 1.875rem;
    }

    .hero__cta {
        padding: 0.75rem 1rem;
        font-size: 1.125rem;
    }

    .hero__cta svg {
        width: 32px;
        height: 32px;
    }
}

/* About */
.about {
    background: #1F5C91;
    padding: 2.5rem 1rem;
}

.about__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.about__row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.about__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about__heading {
    font-family: var(--font-serif);
    color: #C49C6B;
    font-size: 1.5rem;
    font-weight: 700;
}

.about__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
}

.about__subheading {
    font-family: var(--font-sans);
    color: #C49C6B;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.about__right {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about__image-wrap {
    width: 100%;
    height: 360px;
}

.about__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* Responsive */
@media (min-width: 1024px) {
    .about {
        padding: 5rem 1rem;
    }

    .about__row {
        flex-direction: row;
        gap: 5rem;
    }

    .about__left {
        width: 45%;
    }

    .about__right {
        width: 55%;
        justify-content: flex-end;
    }

    .about__image-wrap {
        height: 700px;
    }

    .about__heading {
        font-size: 2.25rem;
    }

    .about__body {
        font-size: 1.125rem;
    }

    .about__subheading {
        font-size: 1.5rem;
    }
}

/* How We Work */
.howwework {
    width: 100%;
    background: #fff;
    padding: 2.5rem 1rem;
}

.howwework__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.howwework__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.howwework__heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #C49C6B;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.howwework__subheading {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* Accordion */
.howwework__accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-sans);
}

.accordion__item {
    border-bottom: 1px solid #C49C6B;
    padding-bottom: 1rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.accordion__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion__item:nth-child(2) { transition-delay: 0.2s; }
.accordion__item:nth-child(3) { transition-delay: 0.4s; }
.accordion__item:nth-child(4) { transition-delay: 0.6s; }
.accordion__item:nth-child(5) { transition-delay: 0.8s; }

.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.accordion__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    font-family: var(--font-sans);
}

.accordion__icon {
    font-size: 1.5rem;
    color: #C49C6B;
    font-weight: 300;
    margin-left: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion__item.is-open .accordion__icon {
    transform: rotate(45deg);
}

.accordion__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.accordion__body p {
    margin-top: 1rem;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.accordion__item.is-open .accordion__body {
    max-height: 300px;
}

/* Responsive */
@media (min-width: 1024px) {
    .howwework {
        padding: 5rem 1rem;
    }

    .howwework__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .howwework__heading {
        font-size: 2.25rem;
    }

    .howwework__subheading {
        font-size: 1.875rem;
    }

    .accordion__title {
        font-size: 1.25rem;
    }

    .accordion__body p {
        font-size: 1.125rem;
    }
}

/* Selected Projects */
.projects {
    padding: 5rem 1rem;
    background: #1F5C91;
    color: #fff;
}

.projects__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.projects__heading {
    font-family: var(--font-serif);
    color: #C49C6B;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
}

.projects__subheading {
    font-family: var(--font-serif);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.25;
    font-weight: 500;
    margin-top: 1.5rem;
    letter-spacing: -0.025em;
}

.projects__carousel-wrap {
    margin-top: 2.5rem;
    position: relative;
    width: 100%;
}

.projects__carousel {
    overflow: hidden;
    width: 100%;
}

.projects__track {
    display: flex;
    gap: 16px;
    will-change: transform;
}

.projects__item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.projects__item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.projects__item h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
}

.projects__arrows {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.projects__arrow {
    padding: 0.5rem;
    border: 1px solid #fff;
    background: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.projects__arrow:hover {
    background: #fff;
    color: #1F5C91;
}

.projects__viewall {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.projects__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-sans);
    transition: background 0.2s ease, color 0.2s ease;
}

.projects__cta:hover {
    background: #fff;
    color: #1F5C91;
}

@media (min-width: 768px) {
    .projects__heading {
        font-size: 2.25rem;
    }

    .projects__subheading {
        font-size: 1.5rem;
        width: 50%;
    }

    .projects__item img {
        height: 450px;
    }

    .projects__item h3 {
        font-size: 1.125rem;
    }

    .projects__cta {
        padding: 0.75rem 1rem;
        font-size: 1.125rem;
    }

    .projects__arrow {
        padding: 0.75rem;
    }
}

/* Contact */
.contact {
    width: 100%;
    background: #fff;
    padding: 2.5rem 1rem;
}

.contact__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact__heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #C49C6B;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.contact__subheading {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.25;
    font-weight: 500;
    margin-top: 1.5rem;
    letter-spacing: -0.025em;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-family: var(--font-sans);
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
}

.contact__label span {
    color: #ef4444;
}

.contact__input {
    width: 100%;
    border: 1px solid #C49C6B;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.2s ease;
    box-sizing: border-box;
}

.contact__input:focus {
    box-shadow: 0 0 0 2px #C49C6B;
}

.contact__textarea {
    resize: vertical;
}

.contact__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1F5C91;
    color: #fff;
    border: 1px solid transparent;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact__submit:hover {
    background: #fff;
    color: #1F5C91;
    border-color: #1F5C91;
}

/* Responsive */
@media (min-width: 1024px) {
    .contact {
        padding: 5rem 1rem;
    }

    .contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact__heading {
        font-size: 2.25rem;
    }

    .contact__subheading {
        font-size: 1.5rem;
    }

    .contact__submit {
        font-size: 1.125rem;
    }
}

/* Footer */
.footer {
    width: 100%;
    background: #C49C6B;
    padding: 3rem 1rem;
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.footer__logo img {
    height: 40px;
    width: auto;
}

.footer__email {
    font-family: var(--font-serif);
}

.footer__email a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1F5C91;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.2s ease;
}

.footer__email a:hover {
    color: rgba(0, 0, 0, 0.8);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #1F5C91;
    transition: background 0.3s ease;
}

.footer__social-link:hover {
    background: #fff;
}

.footer__copy {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    text-align: center;
}

.footer__copy p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 1rem;
    }

    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__email {
        text-align: center;
    }

    .footer__social {
        justify-content: flex-end;
    }

    .footer__copy p {
        font-size: 0.875rem;
    }
}

/* Services */
.services {
    width: 100%;
    background: #1F5C91;
    padding: 2.5rem 1rem;
}

.services__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.services__heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #C49C6B;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.services__subheading {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
    margin-top: 1.5rem;
    letter-spacing: -0.025em;
}

.services__accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-sans);
}

.accordion__title--white {
    color: #fff !important;
}

.accordion__body--white {
    color: rgba(255, 255, 255, 0.8) !important;
}

@media (min-width: 1024px) {
    .services {
        padding: 5rem 1rem;
    }

    .services__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .services__heading {
        font-size: 1.875rem;
    }

    .services__subheading {
        font-size: 1.5rem;
    }
}

/* Team */
.team {
    width: 100%;
    background: #fff;
    padding: 2.5rem 1rem;
}

.team__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.team__heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #C49C6B;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.team__subheading {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.25;
    margin-top: 1.5rem;
    letter-spacing: -0.025em;
}

.team__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-sans);
}

.team__member {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.team__member.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.team__member:nth-child(2) { transition-delay: 0.2s; }
.team__member:nth-child(3) { transition-delay: 0.4s; }
.team__member:nth-child(4) { transition-delay: 0.6s; }
.team__member:nth-child(5) { transition-delay: 0.8s; }

.team__member-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team__name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
}

.team__linkedin {
    width: 32px;
    height: 32px;
    background: #1F5C91;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.team__linkedin:hover {
    background: #fff;
    color: #1F5C91;
    outline: 1px solid #1F5C91;
}

.team__role {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
    border-bottom: 1px solid #C49C6B;
    padding-bottom: 0.5rem;
    margin-top: 0.25rem;
}

@media (min-width: 1024px) {
    .team {
        padding: 5rem 1rem;
    }

    .team__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .team__heading {
        font-size: 1.875rem;
    }

    .team__subheading {
        font-size: 1.5rem;
    }

    .team__name {
        font-size: 1.25rem;
    }

    .team__role {
        font-size: 1.125rem;
    }
}

/* Work Grid */
.workgrid {
    width: 100%;
    background: #1F5C91;
    padding: 2.5rem 1rem;
}

.workgrid__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.workgrid__header {
    margin-bottom: 5rem;
}

.workgrid__heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #C49C6B;
    letter-spacing: -0.01em;
}

.workgrid__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.workgrid__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workgrid__image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #e5e7eb;
}

.workgrid__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.workgrid__item:hover .workgrid__image img {
    transform: scale(1.03);
}

.workgrid__title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    color: #C49C6B;
    line-height: 1.25;
}

.workgrid__desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .workgrid {
        padding: 5rem 1rem;
    }

    .workgrid__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 3rem;
    }

    .workgrid__heading {
        font-size: 3rem;
    }

    .workgrid__title {
        font-size: 1.5rem;
    }

    .workgrid__desc {
        font-size: 1.125rem;
    }
}