/* Custom CSS for Elite Global Properties - Upcoming Projects */

body,
html {
    font-family: 'Poppins', sans-serif;
}

:root {
    --brand-forest: #173325;
    --brand-deep: #0f231a;
    --brand-gold: #ab985a;
    --text-ink: #10261c;
    --surface-soft: #f7f7f2;
}

/* Prevent layout shift when hiding scrollbar */
body {
    transition: padding-right 0.15s ease;
}

[x-cloak] {
    display: none !important;
}

/* Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f231a;
    z-index: 2000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader__inner {
    text-align: center;
    color: #ffffff;
}

.page-loader__logo {
    width: 164px;
    height: auto;
    margin-bottom: 1rem;
}

.page-loader__text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-sticky {
    position: fixed;
    background-color: rgba(23, 51, 37, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.site-header--solid {
    position: sticky;
    top: 0;
    background-color: #173325;
}

.site-header--solid.is-sticky {
    position: sticky;
    background-color: #173325;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Hamburger Menu */
.hamburger-toggle {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hamburger-toggle:hover svg {
    transform: scale(1.1);
}

.hamburger-icon {
    transition: all 0.3s ease;
    stroke-width: 2px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    height: 100svh;
    width: 100%;
    overflow-y: auto;
}

.mobile-menu-overlay {
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.mobile-menu a {
    position: relative;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #AB985A;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-menu a:hover::after {
    width: 100%;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: opacity, transform;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 540px;
    width: 90%;
    max-height: 92vh;
    overflow-y: auto;
    z-index: 1001;
    transform: translateZ(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
    line-height: 1;
    padding: 0.25rem;
}

.modal-close:hover {
    color: #000;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0f231a 0%, #173325 100%);
    color: rgba(247, 244, 236, 0.9);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 15%, rgba(171, 152, 90, 0.1), transparent 50%);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(171, 152, 90, 0.2);
}

.footer-column__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #AB985A;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-column__text {
    color: rgba(247, 244, 236, 0.9);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social__link {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(171, 152, 90, 0.15);
    border-radius: 50%;
    color: #AB985A;
    transition: all 0.3s ease;
}

.footer-social__link:hover {
    background: #AB985A;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-social__link svg {
    width: 1.125rem;
    height: 1.125rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(247, 244, 236, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #AB985A;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(247, 244, 236, 0.9);
}

.footer-contact__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: #AB985A;
    margin-top: 0.15rem;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter__input {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(171, 152, 90, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter__input::placeholder {
    color: rgba(247, 244, 236, 0.5);
}

.footer-newsletter__input:focus {
    border-color: #AB985A;
    background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter__button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    background: #AB985A;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-newsletter__button:hover {
    background: #9a8750;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(171, 152, 90, 0.3);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(247, 244, 236, 0.7);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal__divider {
    color: rgba(247, 244, 236, 0.4);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Developers Explorer */
.developers-page {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 14% 2%, rgba(171, 152, 90, 0.2), transparent 26%),
        radial-gradient(circle at 92% 8%, rgba(23, 51, 37, 0.08), transparent 30%),
        linear-gradient(180deg, #fbfbf8 0%, #f4f7f1 48%, #edf2ea 100%);
}

.developers-page::before,
.developers-page::after {
    content: '';
    position: fixed;
    z-index: -1;
    border-radius: 9999px;
    pointer-events: none;
    filter: blur(2px);
}

.developers-page::before {
    width: 16rem;
    height: 16rem;
    top: 8rem;
    right: -4rem;
    background: radial-gradient(circle, rgba(171, 152, 90, 0.22) 0%, rgba(171, 152, 90, 0) 72%);
}

.developers-page::after {
    width: 22rem;
    height: 22rem;
    bottom: -8rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(23, 51, 37, 0.12) 0%, rgba(23, 51, 37, 0) 72%);
}

.developers-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding-left: clamp(1rem, 2.8vw, 2rem);
    padding-right: clamp(1rem, 2.8vw, 2rem);
}

.explore-hero {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 2.1rem;
    padding: 0 0 0.9rem;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.explore-hero__content {
    min-width: 0;
    text-align: center;
}

.explore-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 9999px;
    background: rgba(171, 152, 90, 0.14);
    color: #173325;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.explore-hero__title {
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--brand-deep);
    max-width: 22ch;
    margin: 0 auto;
}

.explore-hero__copy {
    max-width: 62ch;
    margin: 1rem auto 0;
    color: rgba(23, 51, 37, 0.78);
    line-height: 1.75;
    font-size: 1.03rem;
}

.explore-hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.explore-hero__actions {
    margin-top: 1.1rem;
}

.explore-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.25rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f7f4ec;
    background: linear-gradient(135deg, #0f231a 0%, #173325 100%);
    box-shadow: 0 12px 24px rgba(15, 35, 26, 0.16);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.explore-hero__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(15, 35, 26, 0.2);
}

.explore-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1rem;  
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(23, 51, 37, 0.1);
    color: #173325;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 35, 26, 0.08);
}

.explore-stat strong {
    color: #8b7535;
    font-size: 1rem;
}

.developer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.developer-grid-load-more {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0;
}

.developer-grid-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    border: 2px solid #AB985A;
    background: transparent;
    color: #173325;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.developer-grid-button:hover {
    background: #AB985A;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(171, 152, 90, 0.3);
    transform: translateY(-2px);
}

.developer-grid-button svg {
    width: 20px;
    height: 20px;
}

.developer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.55rem;
    min-height: 100%;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(23, 51, 37, 0.08);
    box-shadow: 0 20px 40px rgba(15, 35, 26, 0.11);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.developer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(171, 152, 90, 0.12), transparent 34%);
    pointer-events: none;
}

.developer-card::after {
    content: '';
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: 0;
    height: 3px;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(171, 152, 90, 0.15) 0%, rgba(171, 152, 90, 0.8) 50%, rgba(171, 152, 90, 0.15) 100%);
}

.developer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 44px rgba(15, 35, 26, 0.13);
}

.developer-card--first {
    background-color: #ffffff !important;
    background-image: none !important;
}

.developer-card--first::before {
    display: none;
}

.developer-card__logo-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, rgba(23, 51, 37, 0.92), rgba(15, 35, 26, 0.86));
    border: 1px solid rgba(171, 152, 90, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.developer-card__logo {
    width: 92px;
    height: 92px;
    border-radius: 1.5rem;
    display: grid;
    place-items: center;
    background: var(--developer-logo-bg, linear-gradient(135deg, rgba(171, 152, 90, 0.2), rgba(23, 51, 37, 0.08)));
    border: 1px solid rgba(23, 51, 37, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 16px 28px rgba(15, 35, 26, 0.1);
    color: #173325;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.developer-card__logo-image {
    width: 84%;
    max-width: 230px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

.developer-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.developer-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(23, 51, 37, 0.72);
}

.developer-card__dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 9999px;
    background: #AB985A;
}

.developer-card__name {
    margin: 0;
    color: #0f231a;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.developer-card__summary {
    margin: 0;
    color: rgba(23, 51, 37, 0.74);
    line-height: 1.65;
    font-size: 0.94rem;
}

.developer-card__footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.95rem;
}

/* WhatsApp Quick Action */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 1100;
}

.whatsapp-float__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #25d366;
    background: #fff;
    color: #173325;
    border-radius: 999px;
    padding: 0.58rem 0.9rem;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(15, 35, 26, 0.14);
}

.whatsapp-float__icon {
    width: 22px;
    height: 22px;
    color: #25d366;
}

.wa-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.wa-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid rgba(171, 152, 90, 0.35);
    border-radius: 12px;
    padding: 1.1rem;
}

.wa-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.wa-card__title {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    color: #173325;
    font-weight: 700;
}

.wa-close {
    border: 0;
    background: transparent;
    color: #6f7f76;
    font-size: 1.2rem;
    cursor: pointer;
}

.wa-card p {
    color: #5a6c64;
    font-size: 0.93rem;
    margin-bottom: 0.7rem;
}

.wa-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.wa-input,
.wa-code {
    border: 1px solid rgba(171, 152, 90, 0.35);
    border-radius: 8px;
    padding: 0.68rem 0.75rem;
    font-size: 0.95rem;
    outline: none;
}

.wa-cta {
    width: 100%;
    border: 1px solid #25d366;
    background: #25d366;
    color: #fff;
    border-radius: 8px;
    padding: 0.72rem;
    font-weight: 700;
    cursor: pointer;
}

.wa-note {
    margin-top: 0.45rem;
    color: #73827a;
    font-size: 0.82rem;
    text-align: center;
}

.developer-card__projects {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0f231a;
    font-size: 0.92rem;
    font-weight: 700;
}

.developer-card__projects span {
    color: #AB985A;
}

.developer-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.15rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #0f231a 0%, #173325 100%);
    color: #f7f4ec;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(15, 35, 26, 0.16);
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.developer-card__button:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #173325 0%, #204636 100%);
    box-shadow: 0 16px 28px rgba(15, 35, 26, 0.2);
}



.developer-profile {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top left, rgba(171, 152, 90, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 244, 0.96) 100%);
    color: #0f231a;
    padding: 2rem;
    border: 1px solid rgba(23, 51, 37, 0.1);
    box-shadow: 0 22px 48px rgba(15, 35, 26, 0.12);
}

.developer-profile__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

.developer-profile__identity {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.developer-profile__intro {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.developer-profile__logo {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1.4rem;
    display: grid;
    place-items: center;
    background: var(--developer-logo-bg, linear-gradient(135deg, rgba(171, 152, 90, 0.2), rgba(255, 255, 255, 0.04)));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f7f4ec;
    font-size: 2.1rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 16px 32px rgba(0, 0, 0, 0.18);
}

.developer-profile__logo--image-wrap {
    width: clamp(5.8rem, 11vw, 7rem);
    height: clamp(5.8rem, 11vw, 7rem);
    border-radius: 1.35rem;
    background: linear-gradient(135deg, rgba(23, 51, 37, 0.9), rgba(15, 35, 26, 0.9));
    border: 1px solid rgba(171, 152, 90, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 32px rgba(0, 0, 0, 0.2);
    padding: 0.6rem;
}

.developer-profile__logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.3));
}

.developer-profile__kicker {
    margin: 0 0 0.3rem;
    color: rgba(15, 35, 26, 0.74);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.developer-profile__name {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #0f231a;
}

.developer-profile__summary {
    margin: 0.4rem 0 0;
    max-width: 58rem;
    color: rgba(15, 35, 26, 0.82);
    line-height: 1.68;
    font-size: 0.97rem;
}

.developer-profile__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.developer-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.95rem;
    border-radius: 9999px;
    background: rgba(15, 35, 26, 0.04);
    border: 1px solid rgba(23, 51, 37, 0.14);
    color: rgba(15, 35, 26, 0.95);
    font-size: 0.86rem;
    font-weight: 700;
}

.developer-chip span {
    color: #9b8342;
}

.developer-profile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.developer-profile__cta-row {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
}

.developer-profile__back,
.developer-profile__primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.9rem 1.2rem;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.developer-profile__back {
    background: rgba(15, 35, 26, 0.04);
    color: #0f231a;
    border: 1px solid rgba(23, 51, 37, 0.16);
}

.developer-profile__primary {
    background: linear-gradient(135deg, #AB985A 0%, #d6c08b 100%);
    color: #0f231a;
    box-shadow: 0 16px 28px rgba(171, 152, 90, 0.2);
}

.developer-profile__back:hover,
.developer-profile__primary:hover {
    transform: translateY(-1px);
}

.projects-section {
    margin-top: 1.75rem;
}

.projects-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.projects-section__title {
    margin: 0;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f231a;
}

.projects-section__copy {
    margin: 0.35rem 0 0;
    color: rgba(23, 51, 37, 0.72);
    line-height: 1.65;
}

.developer-detail-page {
    margin-top: 1rem;
}

.developer-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(23, 51, 37, 0.08);
    box-shadow: 0 18px 36px rgba(15, 35, 26, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.project-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card-link:focus-visible {
    outline: 3px solid rgba(171, 152, 90, 0.45);
    outline-offset: 3px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(15, 35, 26, 0.12);
}

.project-card__media {
    position: relative;
    min-height: 148px;
    padding: 1.2rem;
    background: var(--project-surface, linear-gradient(135deg, rgba(171, 152, 90, 0.08), rgba(15, 35, 26, 0.06)));
    overflow: hidden;
}

.project-card__media-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 16, 12, 0.62) 0%, rgba(8, 16, 12, 0.16) 55%, rgba(8, 16, 12, 0) 100%);
}

.project-card__media-title {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    z-index: 2;
}

.project-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.45rem 0.7rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.74);
    color: #173325;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

.project-card__content {
    padding: 1.25rem;
}

.project-card__name {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f231a;
}

.project-card__location {
    margin: 0 0 0.9rem;
    color: rgba(23, 51, 37, 0.72);
    font-size: 0.93rem;
}

.project-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.project-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.7rem;
    border-radius: 9999px;
    background: rgba(15, 35, 26, 0.05);
    color: #173325;
    font-size: 0.78rem;
    font-weight: 600;
}

.project-card__summary {
    margin: 0;
    color: rgba(23, 51, 37, 0.74);
    line-height: 1.7;
    font-size: 0.92rem;
}

.project-card__tagline {
    margin: 0 0 0.8rem;
    color: #AB985A;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.project-card__unit-types {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(23, 51, 37, 0.08);
}

.project-card__unit-types-label {
    margin: 0 0 0.7rem;
    color: #173325;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-card__unit-type-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.project-card__unit-type-item {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.7rem 0.85rem;
    border-radius: 1rem;
    background: rgba(15, 35, 26, 0.04);
    border: 1px solid rgba(171, 152, 90, 0.14);
}

.project-card__unit-type-name {
    color: #173325;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
}

.project-card__unit-type-size {
    color: rgba(23, 51, 37, 0.72);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

/* Featured First Card */
.project-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, rgba(171, 152, 90, 0.08) 0%, rgba(23, 51, 37, 0.04) 100%);
    border: 2px solid rgba(171, 152, 90, 0.2);
}

.project-card--featured:hover {
    transform: scale(1.01);
    box-shadow: 0 32px 64px rgba(15, 35, 26, 0.15);
}

.project-card--featured .project-card__media {
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.project-card--featured .project-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card--featured .project-card__name {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.project-card--featured .project-card__summary {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Empty State */
.empty-state {
    padding: 4rem 2rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.72);
    border: 2px dashed rgba(23, 51, 37, 0.14);
    color: rgba(23, 51, 37, 0.72);
    text-align: center;
    grid-column: 1 / -1;
}

.empty-state__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    opacity: 0.4;
    color: rgba(23, 51, 37, 0.6);
}

.empty-state__icon svg {
    width: 100%;
    height: 100%;
}

.empty-state__title {
    margin: 0 0 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(23, 51, 37, 0.8);
}

.empty-state__message {
    margin: 0 0 1.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(23, 51, 37, 0.6);
}

.empty-state__cta {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    background: rgba(171, 152, 90, 0.1);
    border: 1px solid rgba(171, 152, 90, 0.3);
    border-radius: 999px;
    color: #173325;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.empty-state__cta:hover {
    background: rgba(171, 152, 90, 0.2);
    border-color: rgba(171, 152, 90, 0.5);
}

/* Responsive Grid - Organized properly from large to small */
@media (max-width: 1399px) {
    .developer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    .developer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .developer-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .developer-grid {
        grid-template-columns: 1fr;
    }

    .developer-projects-grid {
        grid-template-columns: 1fr;
    }

    .developer-grid-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (min-width: 900px) {
    .projects-section__header {
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .project-card--featured {
        grid-template-columns: 1fr;
    }

    .project-card--featured .project-card__media {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-hero,
    .developer-profile {
        padding: 1.4rem;
    }

    .project-card--featured {
        grid-template-columns: 1fr;
    }

    .project-card--featured .project-card__content {
        padding: 1.5rem;
    }

    .project-card--featured .project-card__name {
        font-size: 1.2rem;
    }

    .empty-state {
        padding: 2.5rem 1.5rem;
    }
}

    .explore-hero {
        text-align: center;
    }

    .explore-hero__title,
    .explore-hero__copy {
        margin-left: auto;
        margin-right: auto;
    }

    .explore-hero__stats {
        justify-content: center;
    }


    .developer-detail-page {
        margin-top: 0.35rem;
    }

    .developer-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }
