/* ========================================
   NAVBAR
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(10, 25, 41, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 136, 46, 0.1);
    padding: 0.75rem 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar__logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--gold-400);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.navbar__logo:hover .navbar__logo-icon {
    border-color: var(--gold-300);
}

.navbar__logo-icon span {
    font-family: var(--font-playfair);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold-400);
}

.navbar__logo-text {
    display: none;
}

@media (min-width: 640px) {
    .navbar__logo-text {
        display: block;
    }
}

.navbar__logo-name {
    font-family: var(--font-playfair);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    display: block;
}

.navbar__logo-sub {
    font-family: var(--font-outfit);
    font-size: 0.625rem;
    color: var(--gold-400);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-top: -0.25rem;
}

.navbar__menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .navbar__menu {
        display: flex;
    }
}

.navbar__link {
    position: relative;
    padding: 0.5rem 1rem;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--navy-200);
}

.navbar__link:hover {
    color: var(--gold-400);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-400);
    transition: width 0.3s ease;
}

.navbar__link:hover::after {
    width: 75%;
}

.navbar__cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(212, 136, 46, 0.3);
    border-radius: 4px;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--gold-400);
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .navbar__cta {
        display: flex;
    }
}

.navbar__cta:hover {
    background: rgba(212, 136, 46, 0.1);
    border-color: var(--gold-400);
}

.navbar__cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    animation: pulse 2s ease-in-out infinite;
}

.navbar__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .navbar__toggle {
        display: none;
    }
}

.navbar__toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold-400);
    transition: all 0.3s ease;
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(10, 25, 41, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    text-align: center;
}

.mobile-menu__link {
    display: block;
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    color: #fff;
    padding: 0.75rem 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-menu__link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu__link:hover {
    color: var(--gold-400);
}

.mobile-menu__cta {
    margin-top: 2rem;
}

/* ========================================
   HERO
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 25, 41, 0.8), rgba(10, 25, 41, 0.6), var(--navy-950)),
                linear-gradient(to right, rgba(10, 25, 41, 0.8), transparent, rgba(10, 25, 41, 0.6));
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 136, 46, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero__inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 8rem 0 4rem;
}

@media (min-width: 1024px) {
    .hero__inner {
        flex-direction: row;
        gap: 5rem;
    }
}

.hero__content {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero__content {
        text-align: left;
    }
}

.hero__location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 136, 46, 0.2);
    background: rgba(10, 25, 41, 0.5);
    margin-bottom: 2rem;
}

.hero__location svg {
    color: var(--gold-400);
}

.hero__location span {
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: rgba(212, 136, 46, 0.8);
    letter-spacing: 0.1em;
}

.hero__title {
    font-family: var(--font-playfair);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero__roles {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .hero__roles {
        justify-content: flex-start;
    }
}

.hero__roles span {
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy-200);
}

.hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
}

.hero__tagline {
    font-family: var(--font-outfit);
    font-size: 1.125rem;
    color: var(--navy-300);
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .hero__tagline {
        margin: 0 0 2.5rem;
    }
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero__cta {
        justify-content: flex-start;
    }
}

/* Portrait */
.hero__portrait {
    flex-shrink: 0;
}

.hero__portrait-frame {
    position: relative;
    width: 18rem;
    height: 24rem;
}

@media (min-width: 640px) {
    .hero__portrait-frame {
        width: 20rem;
        height: 28rem;
    }
}

@media (min-width: 1024px) {
    .hero__portrait-frame {
        width: 24rem;
        height: 32rem;
    }
}

.hero__portrait-frame-outer,
.hero__portrait-frame-inner {
    position: absolute;
    border: 1px solid rgba(212, 136, 46, 0.2);
    border-radius: 4px;
}

.hero__portrait-frame-outer {
    inset: -0.75rem;
}

.hero__portrait-frame-inner {
    inset: -1.5rem;
    border-color: rgba(212, 136, 46, 0.1);
}

.hero__portrait-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.hero__portrait-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__portrait-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 41, 0.6), transparent);
}

.hero__stat {
    position: absolute;
    padding: 1rem 1.25rem;
}

.hero__stat--right {
    right: -1rem;
    bottom: 5rem;
}

.hero__stat--left {
    left: -1rem;
    top: 5rem;
}

@media (min-width: 640px) {
    .hero__stat--right {
        right: -2rem;
    }
    
    .hero__stat--left {
        left: -2rem;
    }
}

.hero__stat-value {
    display: block;
    font-family: var(--font-playfair);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gold-400);
}

.hero__stat-label {
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: var(--navy-300);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__accent {
    position: absolute;
    width: 2rem;
    height: 2rem;
}

.hero__accent--tl {
    top: 0;
    left: 0;
    border-top: 2px solid rgba(212, 136, 46, 0.5);
    border-left: 2px solid rgba(212, 136, 46, 0.5);
}

.hero__accent--br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid rgba(212, 136, 46, 0.5);
    border-right: 2px solid rgba(212, 136, 46, 0.5);
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero__scroll span {
    display: block;
    font-family: var(--font-outfit);
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--navy-400);
    margin-bottom: 0.5rem;
}

.hero__scroll-arrow {
    animation: float 2s ease-in-out infinite;
}

.hero__scroll-arrow svg {
    color: rgba(212, 136, 46, 0.6);
}

/* ========================================
   ABOUT
======================================== */
.about {
    background: var(--navy-950);
}

.about__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 136, 46, 0.2), transparent);
}

.about__orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
}

.about__orb--1 {
    top: 5rem;
    right: 5rem;
    background: rgba(212, 136, 46, 0.05);
}

.about__orb--2 {
    bottom: 5rem;
    left: 5rem;
    background: rgba(72, 101, 129, 0.1);
}

.about__grid {
    display: grid;
    gap: 4rem;
    margin-top: 5rem;
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.about__text {
    font-family: var(--font-outfit);
    font-size: 1.125rem;
    color: var(--navy-200);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about__text .text-gold {
    color: var(--gold-400);
    font-weight: 600;
}

.about__quote {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(212, 136, 46, 0.4);
    margin-top: 3rem;
}

.about__quote-icon {
    position: absolute;
    top: -0.5rem;
    left: -1rem;
    color: rgba(212, 136, 46, 0.2);
}

.about__quote blockquote {
    font-family: var(--font-playfair);
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about__quote cite {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    font-style: normal;
    color: var(--gold-400);
    letter-spacing: 0.1em;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about__stat-card {
    padding: 1.5rem;
    text-align: center;
    transition: all 0.5s ease;
}

.about__stat-card:hover {
    border-color: rgba(212, 136, 46, 0.3);
}

.about__stat-card svg {
    color: rgba(212, 136, 46, 0.6);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.about__stat-card:hover svg {
    color: var(--gold-400);
}

.about__stat-value {
    display: block;
    font-family: var(--font-playfair);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.about__stat-label {
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: var(--navy-300);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about__image {
    position: relative;
    height: 18rem;
    margin-top: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .about__image {
        height: 20rem;
    }
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about__image:hover img {
    transform: scale(1.05);
}

.about__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10, 25, 41, 0.8), transparent);
}

.about__image-title {
    font-family: var(--font-playfair);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.about__image-sub {
    display: block;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: rgba(212, 136, 46, 0.8);
    margin-top: 0.25rem;
}

.about__image-accent {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    border-top: 1px solid rgba(212, 136, 46, 0.4);
    border-right: 1px solid rgba(212, 136, 46, 0.4);
}

/* ========================================
   STATS BAR
======================================== */
.stats-bar {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(to right, var(--navy-950), rgba(10, 25, 41, 0.8), var(--navy-950));
}

.stats-bar__line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 136, 46, 0.2), transparent);
}

.stats-bar__line--top {
    top: 0;
}

.stats-bar__line--bottom {
    bottom: 0;
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stats-bar__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stats-bar__item {
    text-align: center;
}

.stats-bar__value {
    display: block;
    font-family: var(--font-playfair);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stats-bar__value {
        font-size: 3rem;
    }
}

.stats-bar__label {
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: var(--navy-300);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .stats-bar__label {
        font-size: 0.875rem;
    }
}

.stats-bar__line-small {
    width: 2rem;
    height: 1px;
    background: rgba(212, 136, 46, 0.3);
    margin: 0.75rem auto 0;
    transition: width 0.5s ease;
}

.stats-bar__item:hover .stats-bar__line-small {
    width: 4rem;
}

/* ========================================
   JOURNEY / TIMELINE
======================================== */
.journey {
    background: linear-gradient(to bottom, var(--navy-950), rgba(10, 25, 41, 0.5), var(--navy-950));
}

.journey__line {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 136, 46, 0.2), transparent);
}

@media (min-width: 1024px) {
    .journey__line {
        display: block;
    }
}

.timeline {
    margin-top: 5rem;
}

.timeline__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .timeline__item {
        margin-bottom: 3rem;
    }
    
    .timeline__item--left {
        flex-direction: row;
    }
    
    .timeline__item--right {
        flex-direction: row-reverse;
    }
    
    .timeline__item--left .timeline__content {
        text-align: right;
        margin-left: auto;
    }
    
    .timeline__item--right .timeline__content {
        text-align: left;
        margin-right: auto;
    }
}

.timeline__content {
    flex: 1;
    max-width: 30rem;
    padding: 1.5rem 2rem;
    transition: border-color 0.5s ease;
}

.timeline__content:hover {
    border-color: rgba(212, 136, 46, 0.2);
}

.timeline__year {
    font-family: var(--font-playfair);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 0.1em;
}

.timeline__title {
    font-family: var(--font-playfair);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0.5rem 0 0.75rem;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .timeline__title {
        font-size: 1.5rem;
    }
}

.timeline__content:hover .timeline__title {
    color: var(--gold-300);
}

.timeline__desc {
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--navy-300);
    line-height: 1.6;
}

.timeline__dot {
    display: none;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    position: relative;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .timeline__dot {
        display: flex;
    }
}

.timeline__dot-inner {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 4px var(--navy-950), 0 0 0 6px rgba(212, 136, 46, 0.2);
}

.timeline__dot-ping {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(212, 136, 46, 0.1);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Empty space for alignment */
.timeline__item::after {
    content: '';
    flex: 1;
    display: none;
}

@media (min-width: 1024px) {
    .timeline__item::after {
        display: block;
    }
}

/* ========================================
   VENTURES
======================================== */
.ventures {
    background: var(--navy-950);
}

.ventures__grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 5rem;
}

@media (min-width: 640px) {
    .ventures__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ventures__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.venture-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.venture-card__bg {
    position: absolute;
    inset: 0;
}

.venture-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
    transition: all 0.7s ease;
}

.venture-card:hover .venture-card__bg img {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.venture-card__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy-950), rgba(10, 25, 41, 0.6), transparent);
}

.venture-card__year {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 136, 46, 0.3);
    background: rgba(10, 25, 41, 0.5);
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: var(--gold-400);
    letter-spacing: 0.1em;
}

.venture-card__content {
    position: relative;
    height: 20rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 640px) {
    .venture-card__content {
        height: 24rem;
    }
}

.venture-card__icon {
    margin-bottom: 1rem;
    color: var(--gold-400);
    transition: transform 0.3s ease;
}

.venture-card:hover .venture-card__icon {
    transform: translateY(-0.5rem) scale(1.1);
}

.venture-card__category {
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(212, 136, 46, 0.8);
    margin-bottom: 0.5rem;
}

.venture-card__name {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.venture-card:hover .venture-card__name {
    color: var(--gold-300);
}

.venture-card__desc {
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--navy-200);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.venture-card:hover .venture-card__desc {
    max-height: 100px;
    opacity: 1;
}

.venture-card__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--gold-400);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.venture-card:hover .venture-card__link {
    opacity: 1;
    transform: translateX(0);
}

.venture-card__line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold-500), var(--gold-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.venture-card:hover .venture-card__line {
    transform: scaleX(1);
}

/* Marquee */
.ventures__marquee {
    margin-top: 5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.ventures__marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.ventures__marquee-item {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.1);
}

.ventures__marquee-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(212, 136, 46, 0.3);
}

/* ========================================
   REAL ESTATE PROJECTS
======================================== */
.real-projects {
    background: linear-gradient(to bottom, var(--navy-950), rgba(10, 25, 41, 0.3), var(--navy-950));
}

.real-projects__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.real-projects__orb--1 {
    width: 600px;
    height: 600px;
    top: 5%;
    left: -15%;
    background: rgba(212, 136, 46, 0.04);
}

.real-projects__orb--2 {
    width: 500px;
    height: 500px;
    bottom: 5%;
    right: -10%;
    background: rgba(72, 101, 129, 0.05);
}

.real-projects__list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 4rem;
}

/* RP Card */
.rp-card {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .rp-card {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
    }
    
    .rp-card--reversed {
        direction: rtl;
    }
    
    .rp-card--reversed > * {
        direction: ltr;
    }
}

/* Image */
.rp-card__image {
    position: relative;
}

.rp-card__image-inner {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.rp-card__image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rp-card:hover .rp-card__image-inner img {
    transform: scale(1.08);
}

.rp-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 41, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

/* Status Badge */
.rp-card__status {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(10, 25, 41, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 136, 46, 0.25);
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-300);
    letter-spacing: 0.05em;
    z-index: 2;
}

.rp-card__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    animation: pulse 2s ease-in-out infinite;
}

/* Corner accents */
.rp-card__accent {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.rp-card:hover .rp-card__accent {
    opacity: 1;
}

.rp-card__accent--tl {
    top: -6px;
    left: -6px;
    border-top: 2px solid var(--gold-400);
    border-left: 2px solid var(--gold-400);
}

.rp-card__accent--br {
    bottom: -6px;
    right: -6px;
    border-bottom: 2px solid var(--gold-400);
    border-right: 2px solid var(--gold-400);
}

/* Content */
.rp-card__content {
    position: relative;
}

.rp-card__number {
    display: block;
    font-family: var(--font-playfair);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 136, 46, 0.08);
    line-height: 1;
    margin-bottom: -1.5rem;
    position: relative;
}

@media (min-width: 640px) {
    .rp-card__number {
        font-size: 5rem;
        margin-bottom: -2rem;
    }
}

.rp-card__name {
    font-family: var(--font-playfair);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .rp-card__name {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .rp-card__name {
        font-size: 2.5rem;
    }
}

.rp-card:hover .rp-card__name {
    color: var(--gold-300);
}

.rp-card__location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.rp-card__location svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

.rp-card__location span {
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--gold-400);
    letter-spacing: 0.02em;
}

.rp-card__desc {
    font-family: var(--font-outfit);
    font-size: 0.9375rem;
    color: var(--navy-200);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Details */
.rp-card__details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rp-card__detail-label {
    display: block;
    font-family: var(--font-outfit);
    font-size: 0.6875rem;
    color: var(--navy-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.375rem;
}

.rp-card__detail-value {
    display: block;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: #fff;
    font-weight: 500;
}

/* CTA Button */
.rp-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border: 1px solid rgba(212, 136, 46, 0.3);
    border-radius: 4px;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.rp-card__cta:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-950);
    transform: translateX(4px);
    box-shadow: 0 0 25px rgba(212, 136, 46, 0.2);
}

.rp-card__cta svg {
    transition: transform 0.3s ease;
}

.rp-card__cta:hover svg {
    transform: translateX(4px);
}

/* ========================================
   QUOTE SECTION
======================================== */
.quote-section {
    position: relative;
    padding: 8rem 0 10rem;
    overflow: hidden;
}

.quote-section__bg {
    position: absolute;
    inset: 0;
}

.quote-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 41, 0.85);
}

.quote-section__overlay::before,
.quote-section__overlay::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 8rem;
    z-index: 1;
}

.quote-section__overlay::before {
    top: 0;
    background: linear-gradient(to bottom, var(--navy-950), transparent);
}

.quote-section__overlay::after {
    bottom: 0;
    background: linear-gradient(to top, var(--navy-950), transparent);
}

.quote-section__content {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.quote-section__line {
    width: 5rem;
    height: 1px;
    background: rgba(212, 136, 46, 0.5);
    margin: 0 auto 2.5rem;
}

.quote-section__mark {
    display: block;
    font-family: var(--font-playfair);
    font-size: 8rem;
    line-height: 0.5;
    color: var(--gold-400);
    opacity: 0.1;
    margin-bottom: -2rem;
}

@media (min-width: 640px) {
    .quote-section__mark {
        font-size: 12rem;
        margin-bottom: -4rem;
    }
}

.quote-section__text {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .quote-section__text {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .quote-section__text {
        font-size: 2.25rem;
    }
}

.quote-section__author {
    margin-top: 2.5rem;
}

.quote-section__author-line {
    width: 3rem;
    height: 1px;
    background: rgba(212, 136, 46, 0.4);
    margin: 0 auto 1rem;
}

.quote-section__author-name {
    display: block;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--gold-400);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.quote-section__author-title {
    display: block;
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: var(--navy-400);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* ========================================
   GALLERY
======================================== */
.gallery {
    background: linear-gradient(to bottom, var(--navy-950), rgba(10, 25, 41, 0.3), var(--navy-950));
}

.gallery__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .gallery__filters {
        gap: 0.75rem;
    }
}

.gallery__filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--navy-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery__filter:hover {
    border-color: rgba(212, 136, 46, 0.3);
    color: var(--gold-400);
}

.gallery__filter.active {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-950);
    font-weight: 600;
    box-shadow: 0 0 20px rgba(212, 136, 46, 0.3);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 10;
}

.gallery-item--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item__inner {
    position: relative;
    height: 12rem;
}

@media (min-width: 640px) {
    .gallery-item__inner {
        height: 14rem;
    }
}

.gallery-item--featured .gallery-item__inner {
    height: 100%;
    min-height: 20rem;
}

.gallery-item__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-item__inner img {
    transform: scale(1.1);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(10, 25, 41, 0.9), rgba(10, 25, 41, 0.2), transparent);
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
}

@media (min-width: 640px) {
    .gallery-item__overlay {
        padding: 1.25rem;
    }
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item__category {
    font-family: var(--font-outfit);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 0.25rem;
}

.gallery-item__title {
    font-family: var(--font-playfair);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

@media (min-width: 640px) {
    .gallery-item__title {
        font-size: 1rem;
    }
}

.gallery-item__subtitle {
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: var(--navy-300);
    margin-top: 0.25rem;
}

.gallery-item__zoom {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(10, 25, 41, 0.6);
    border: 1px solid rgba(212, 136, 46, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item__zoom {
    opacity: 1;
}

.gallery-item__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold-500), var(--gold-300));
    transition: width 0.5s ease;
}

.gallery-item:hover .gallery-item__line {
    width: 100%;
}

/* ========================================
   GLOBAL PRESENCE
======================================== */
.global {
    background: var(--navy-950);
}

.global__orb {
    position: absolute;
    top: 25%;
    right: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(212, 136, 46, 0.03);
    filter: blur(80px);
}

.global__map {
    padding: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .global__map {
        padding: 3rem;
    }
}

.global__map-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    max-height: 500px;
}

.global__map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.global__dot {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.global__dot-inner {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(212, 136, 46, 0.7);
    position: relative;
    z-index: 2;
}

.global__dot--main .global__dot-inner {
    width: 1rem;
    height: 1rem;
    background: var(--gold-400);
    box-shadow: 0 0 15px rgba(212, 136, 46, 0.5);
}

.global__dot-ping {
    position: absolute;
    inset: -0.5rem;
    border-radius: 50%;
    background: rgba(212, 136, 46, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.global__dot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 0.75rem;
    background: rgba(36, 59, 83, 0.95);
    border: 1px solid rgba(212, 136, 46, 0.2);
    border-radius: 4px;
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.global__dot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(36, 59, 83, 0.95);
}

.global__dot:hover .global__dot-tooltip {
    opacity: 1;
    visibility: visible;
}

.global__lists {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .global__lists {
        grid-template-columns: repeat(2, 1fr);
    }
}

.global__list {
    padding: 2rem;
}

.global__list-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.global__list-header svg {
    color: var(--gold-400);
}

.global__list-header h3 {
    font-family: var(--font-playfair);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.global__list-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.global__list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.global__list-item svg {
    color: rgba(212, 136, 46, 0.5);
    transition: color 0.3s ease;
}

.global__list-item:hover svg {
    color: var(--gold-400);
}

.global__list-item span {
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--navy-200);
    transition: color 0.3s ease;
}

.global__list-item:hover span {
    color: #fff;
}

/* ========================================
   CONTACT
======================================== */
.contact {
    background: linear-gradient(to bottom, var(--navy-950), rgba(10, 25, 41, 0.3), var(--navy-950));
}

.contact__orb {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 136, 46, 0.03);
    filter: blur(80px);
}

.contact__grid {
    display: grid;
    gap: 2rem;
    margin-top: 5rem;
}

@media (min-width: 1024px) {
    .contact__grid {
        grid-template-columns: 2fr 3fr;
    }
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    transition: border-color 0.5s ease;
}

.contact__card:hover {
    border-color: rgba(212, 136, 46, 0.3);
}

.contact__card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 4px;
    background: rgba(212, 136, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.contact__card:hover .contact__card-icon {
    background: rgba(212, 136, 46, 0.2);
}

.contact__card-icon svg {
    color: var(--gold-400);
}

.contact__card-content h4 {
    font-family: var(--font-outfit);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.contact__card-content p,
.contact__card-content a {
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--navy-300);
}

.contact__card-content a:hover {
    color: var(--gold-400);
}

.contact__social {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
}

.contact__social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-300);
    transition: all 0.3s ease;
}

.contact__social-link:hover {
    border-color: rgba(212, 136, 46, 0.3);
    background: rgba(212, 136, 46, 0.05);
    color: var(--gold-400);
}

.contact__form-wrapper {
    padding: 2rem;
}

@media (min-width: 640px) {
    .contact__form-wrapper {
        padding: 2.5rem;
    }
}

.contact__form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .contact__form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact__form-group {
    margin-bottom: 1.5rem;
}

.contact__form-group label {
    display: block;
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: var(--navy-300);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact__form-group input,
.contact__form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(10, 25, 41, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: #fff;
    transition: border-color 0.3s ease;
}

.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
    color: var(--navy-500);
}

.contact__form-group input:focus,
.contact__form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 136, 46, 0.5);
}

.contact__form-group textarea {
    resize: none;
}

.contact__submit {
    width: 100%;
}

@media (min-width: 640px) {
    .contact__submit {
        width: auto;
    }
}

.contact__form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    text-align: center;
    display: none;
}

.contact__form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.contact__form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    position: relative;
    padding: 4rem 0;
    background: var(--navy-950);
}

.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer__top {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__logo-icon {
    width: 3rem;
    height: 3rem;
    border: 2px solid var(--gold-400);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo-icon span {
    font-family: var(--font-playfair);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-400);
}

.footer__logo-name {
    font-family: var(--font-playfair);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    display: block;
}

.footer__logo-sub {
    font-family: var(--font-outfit);
    font-size: 0.625rem;
    color: var(--gold-400);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-top: -0.25rem;
}

.footer__back-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(212, 136, 46, 0.2);
    border-radius: 4px;
    background: transparent;
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--gold-400);
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer__back-top:hover {
    background: rgba(212, 136, 46, 0.05);
    border-color: rgba(212, 136, 46, 0.4);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__copyright {
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--navy-400);
}

.footer__credits {
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: var(--navy-500);
}

/* ========================================
   LIGHTBOX
======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 25, 41, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__inner {
    position: relative;
    max-width: 64rem;
    width: 100%;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox__inner {
    transform: scale(1);
}

.lightbox__image {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox__info {
    margin-top: 1rem;
}

.lightbox__category {
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.lightbox__title {
    font-family: var(--font-playfair);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-top: 0.25rem;
}

.lightbox__subtitle {
    font-family: var(--font-outfit);
    font-size: 0.875rem;
    color: var(--navy-300);
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(212, 136, 46, 0.3);
    background: transparent;
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox__close:hover {
    background: rgba(212, 136, 46, 0.1);
}

/* ========================================
   UTILITIES
======================================== */
.text-gold {
    color: var(--gold-400);
    font-weight: 600;
}

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

/* Hide elements when filtered */
.gallery-item.hidden {
    display: none;
}
