/* --- PORTFOLIO HERO SECTION --- */
.portfolio-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #0D1B2A;
}

.portfolio-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    will-change: transform;
}

.portfolio-overlay-base {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.55);
    z-index: 1;
}

.portfolio-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.9) 0%, transparent 100%);
    z-index: 2;
}

.portfolio-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(13, 27, 42, 0.6) 0%, transparent 100%);
    z-index: 2;
}

.portfolio-hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    /* Increased to stay above fixed elements if needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.portfolio-hero-inner {
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
    /* Space for scroll indicator */
}

.portfolio-breadcrumb {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.portfolio-breadcrumb span.gold-sep {
    color: #C9A84C;
    font-size: 8px;
}

.portfolio-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 18px;
}

.portfolio-topline .line-bar {
    width: 40px;
    height: 1px;
    background: #C9A84C;
    opacity: 0.6;
}

.portfolio-topline span.tag-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A84C;
}

.port-hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 88px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.port-hero-heading .port-line-wrap {
    overflow: hidden;
}

.port-hero-heading .port-line {
    display: block;
}

.portfolio-gold-line {
    width: 70px;
    height: 2px;
    background: #C9A84C;
    margin: 26px auto;
}

.portfolio-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto;
}

/* Glassmorphism Stats Bar */
.port-hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    padding: 24px 80px;
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.port-hero-stat {
    text-align: center;
    padding: 0 60px;
    position: relative;
}

.port-hero-stat:not(:last-child) {
    border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.port-hero-stat-num-row {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
}

.port-hero-stat-num-row span.suffix {
    color: #C9A84C;
}

.port-hero-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
}

/* Scroll Indicator */
.portfolio-hero .scroll-indicator {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Tablet Overrides */
@media (max-width: 1024px) {
    .port-hero-heading {
        font-size: 68px;
    }

    .portfolio-sub {
        font-size: 15px;
    }

    .port-hero-stats-bar {
        padding: 20px 40px;
    }

    .port-hero-stat {
        padding: 0 30px;
    }

    .port-hero-stat-num-row {
        font-size: 36px;
    }
}

/* Mobile Overrides */
@media (max-width: 768px) {
    .portfolio-hero-content {
        padding-bottom: 220px;
    }

    .port-hero-heading {
        font-size: 46px;
        line-height: 1.0;
    }

    .portfolio-sub {
        font-size: 14px;
        max-width: 100%;
    }

    .port-hero-stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 16px 24px;
        gap: 0;
    }

    .port-hero-stat {
        padding: 14px;
        border-right: none;
    }

    .port-hero-stat:nth-child(2n-1) {
        border-right: 1px solid rgba(201, 168, 76, 0.15) !important;
    }

    .port-hero-stat:nth-child(1),
    .port-hero-stat:nth-child(2) {
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .port-hero-stat:last-child {
        border-right: none !important;
    }

    .portfolio-hero .scroll-indicator {
        display: none;
    }
}

/* --- SECTION 02: FILTER & STATS STRIP --- */
.portfolio-stats-strip {
    background: #FAF9F7;
    padding: 22px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(13, 27, 42, 0.07);
}

.stats-strip-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.strip-stat {
    padding: 0 36px;
    text-align: center;
}

.strip-stat:first-child {
    padding-left: 0;
}

.strip-stat:last-child {
    padding-right: 0;
}

.strip-divider {
    width: 1px;
    height: 32px;
    background: rgba(201, 168, 76, 0.2);
}

.strip-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #0D1B2A;
    line-height: 1;
}

.strip-num span.gold-plus {
    color: #C9A84C;
}

.strip-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888888;
    margin-top: 4px;
}

.strip-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(13, 27, 42, 0.4);
}

.portfolio-filter-bar {
    background: #FFFFFF;
    padding: 18px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(13, 27, 42, 0.06);
    position: relative;
    z-index: 100;
}

/* Sticky State */
.portfolio-filter-bar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(13, 27, 42, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 14px 80px;
    transition: box-shadow 0.3s, padding 0.3s;
    background: rgba(255, 255, 255, 0.98);
}

.filter-pills {
    display: flex;
    gap: 8px;
    align-items: center;
}

.filter-pill {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(13, 27, 42, 0.15);
    color: #888888;
    background: transparent;
}

.filter-pill:hover {
    border-color: #C9A84C;
    color: #C9A84C;
}

.filter-pill.active {
    background: #C9A84C;
    color: #0D1B2A;
    border: 1.5px solid #C9A84C;
}

.filter-count {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #888888;
}

/* --- RESPONSIVE SECTION 02 --- */
@media (max-width: 1024px) {
    .portfolio-stats-strip {
        padding: 18px 40px;
    }

    .portfolio-filter-bar,
    .portfolio-filter-bar.is-sticky {
        padding: 14px 40px;
    }

    .strip-quote {
        display: none;
    }

    .strip-num {
        font-size: 28px;
    }

    .strip-stat {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .portfolio-stats-strip {
        flex-direction: column;
        gap: 14px;
        padding: 16px 24px;
        text-align: center;
    }

    .stats-strip-left {
        justify-content: center;
        gap: 16px;
    }

    .strip-divider,
    .stats-strip-right {
        display: none;
    }

    .portfolio-filter-bar {
        padding: 12px 24px;
        flex-direction: column;
        gap: 10px;
    }

    .portfolio-filter-bar.is-sticky {
        padding: 12px 24px;
    }

    .filter-pills {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

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

    .strip-num {
        font-size: 24px;
    }

    .strip-stat {
        padding: 0;
    }
}

/* =============================================
   SECTION 03 — MASONRY GALLERY
   ============================================= */

/* --- Custom Gold Cursor --- */
.gallery-cursor {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #C9A84C;
    color: #0D1B2A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    top: 0;
    left: 0;
    will-change: transform;
}

/* --- Gallery Section Wrapper --- */
.gallery-section {
    background: #FFFFFF;
    padding: 60px 40px 100px;
    width: 100%;
    box-sizing: border-box;
}

/* --- Masonry Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 320px;
    gap: 6px;
    width: 100%;
}

/* --- Each Gallery Item --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: #0D1B2A;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

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

/* --- Overlay --- */
.gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

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

/* --- Content (Category + Title + Location) --- */
.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
    z-index: 2;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

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

.gallery-cat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 5px;
}

.gallery-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
}

.gallery-location {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}

/* --- Gold Bottom Border --- */
.gallery-gold-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #C9A84C;
    width: 0;
    transition: width 0.5s ease 0.1s;
    z-index: 3;
}

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

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.96);
    backdrop-filter: blur(8px);
}

.lightbox-container {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lb-image-wrap {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 3px;
    position: relative;
}

.lb-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.lb-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 16px 4px 0;
}

.lb-info-cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 5px;
}

.lb-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.1;
}

.lb-info-location {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.lb-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

.lb-close-btn {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, color 0.3s;
}

.lb-close-btn:hover {
    border-color: #C9A84C;
    color: #C9A84C;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.lb-prev {
    left: -60px;
}

.lb-next {
    right: -60px;
}

.lb-prev:hover,
.lb-next:hover {
    background: #C9A84C;
    border-color: #C9A84C;
    color: #0D1B2A;
}

/* =============================================
   GALLERY RESPONSIVE
   ============================================= */

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .gallery-section {
        padding: 40px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 280px;
        gap: 5px;
    }

    .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gallery-section {
        padding: 20px 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
        gap: 4px;
    }

    .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
        cursor: default;
    }

    .gallery-cursor {
        display: none;
    }

    /* Always visible overlay + content on mobile */
    .gallery-overlay {
        opacity: 0.5;
    }

    .gallery-content {
        transform: translateY(0);
        opacity: 1;
    }

    .gallery-gold-bar {
        width: 40px;
    }

    /* Lightbox mobile */
    .lightbox-container {
        width: 95vw;
    }

    .lb-image-wrap {
        height: 50vh;
    }

    .lb-prev {
        left: -10px;
    }

    .lb-next {
        right: -10px;
    }

    .lb-info-title {
        font-size: 22px;
    }
}

/* Hide cursor on touch devices */
@media (hover: none) {
    .gallery-cursor {
        display: none;
    }
}

/* =============================================
   SECTION 04 — FEATURED PROJECT SPOTLIGHT
   ============================================= */
.spotlight-section {
    position: relative;
    overflow: hidden;
    height: 75vh;
    min-height: 580px;
    margin-top: 6px;
}

.spotlight-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center top;
    top: -8%;
    will-change: transform;
}

.spotlight-layer-1 {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(13, 27, 42, 0.5);
}

.spotlight-layer-2 {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.97) 0%, rgba(13, 27, 42, 0.75) 40%, rgba(13, 27, 42, 0.2) 70%, transparent 100%);
}

.spotlight-layer-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 2;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.6) 0%, transparent 100%);
}

.spotlight-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

.spotlight-left {
    max-width: 560px;
}

.spotlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 22px;
}

@keyframes tagPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.spotlight-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C9A84C;
    animation: tagPulse 2s infinite;
}

.spotlight-tag span:last-child {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
}

.spotlight-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.0;
    max-width: 520px;
    margin-bottom: 18px;
}

.spotlight-gold-line {
    width: 70px;
    height: 2px;
    background: #C9A84C;
    margin-bottom: 22px;
}

.spotlight-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 460px;
    margin-bottom: 28px;
}

.spotlight-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.spotlight-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.meta-icon {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #C9A84C;
}

.spotlight-meta-item span:last-child {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}

.meta-sep {
    width: 1px;
    height: 16px;
    background: rgba(201, 168, 76, 0.25);
}

.spotlight-cta-row {
    display: flex;
    gap: 12px;
}

.spotlight-btn-primary {
    background: #C9A84C;
    color: #0D1B2A;
    padding: 13px 28px;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.spotlight-btn-primary:hover {
    background: #B8963E;
    transform: translateY(-2px);
}

.spotlight-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
    padding: 13px 28px;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}

.spotlight-btn-outline:hover {
    border-color: #C9A84C;
    color: #C9A84C;
}

.spotlight-stats {
    position: absolute;
    right: 80px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.spotlight-stat {
    text-align: right;
    padding: 16px 0;
}

.stat-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
}

.stat-suffix {
    color: #C9A84C;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
}

.stat-divider {
    width: 40px;
    height: 1px;
    background: rgba(201, 168, 76, 0.25);
    margin-left: auto;
}

/* --- RESPONSIVE SPOTLIGHT --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .spotlight-section {
        height: 65vh;
    }

    .spotlight-content {
        padding: 0 40px;
    }

    .spotlight-heading {
        font-size: 48px;
    }

    .spotlight-stats {
        bottom: 40px;
        right: 40px;
    }

    .stat-main {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .spotlight-section {
        height: auto;
        min-height: 0;
    }

    .spotlight-bg {
        object-position: center top;
    }

    .spotlight-content {
        padding: 60px 24px 40px;
        position: relative;
        flex-direction: column;
    }

    .spotlight-stats {
        display: none;
        position: static;
    }

    .spotlight-heading {
        font-size: 36px;
    }

    .spotlight-desc {
        font-size: 14px;
    }

    .spotlight-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .meta-sep {
        display: none;
    }

    .spotlight-cta-row {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .spotlight-btn-primary,
    .spotlight-btn-outline {
        width: 100%;
    }
}

/* =============================================
   SECTION 05 — CTA BANNER
   ============================================= */
.portfolio-cta {
    background: #FAF9F7;
    padding: 130px 80px;
    background-image: radial-gradient(circle, rgba(201, 168, 76, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
}

.portfolio-cta-panel {
    max-width: 860px;
    margin: 0 auto;
    padding: 72px 80px;
    background: #FFFFFF;
    border-radius: 4px;
    text-align: center;
    position: relative;
    overflow: visible;
}

/* Gold border draw-on */
.port-border-top,
.port-border-right,
.port-border-bottom,
.port-border-left {
    position: absolute;
    z-index: 1;
    background: #C9A84C;
}

.port-border-top {
    top: 0;
    left: 0;
    height: 1.5px;
    width: 0;
}

.port-border-right {
    top: 0;
    right: 0;
    width: 1.5px;
    height: 0;
}

.port-border-bottom {
    bottom: 0;
    right: 0;
    height: 1.5px;
    width: 0;
}

.port-border-left {
    bottom: 0;
    left: 0;
    width: 1.5px;
    height: 0;
}

.port-cta-tag {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 26px;
}

.port-cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    color: #0D1B2A;
    max-width: 520px;
    margin: 0 auto 18px;
}

.port-cta-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #888888;
    max-width: 460px;
    margin: 0 auto 44px;
}

.port-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 36px;
}

.port-btn-primary {
    background: #C9A84C;
    color: #0D1B2A;
    padding: 15px 40px;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-decoration: none;
    transition: all 0.4s ease;
}

.port-btn-primary:hover {
    background: #B8963E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.port-btn-outline {
    background: transparent;
    border: 1.5px solid #0D1B2A;
    color: #0D1B2A;
    padding: 15px 40px;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-decoration: none;
    transition: all 0.4s ease;
}

.port-btn-outline:hover {
    background: #0D1B2A;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.port-cta-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.port-contact-line {
    width: 50px;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
    margin-bottom: 16px;
}

.port-contact-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #AAAAAA;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.port-contact-text .gold-sep {
    color: #C9A84C;
    font-size: 8px;
}

/* Responsive CTA */
@media (max-width: 1024px) {
    .portfolio-cta {
        padding: 90px 40px;
    }

    .portfolio-cta-panel {
        padding: 56px 48px;
    }

    .port-cta-heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .portfolio-cta {
        padding: 60px 24px;
    }

    .portfolio-cta-panel {
        padding: 40px 24px;
    }

    .port-cta-heading {
        font-size: 32px;
    }

    .port-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .port-btn-primary,
    .port-btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    .port-contact-text {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .port-contact-text .gold-sep {
        display: none;
    }
}

/* =============================================
   SECTION 01 — CONTACT PAGE HERO
   ============================================= */
.contact-hero {
    position: relative;
    height: 75vh;
    min-height: 650px;
    width: 100%;
    background-color: #0D1B2A;
    overflow: hidden;
    padding-top: 0 !important;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-overlay-base,
.contact-overlay-top,
.contact-overlay-bottom {
    pointer-events: none;
}

.contact-overlay-base {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(13, 27, 42, 0.72);
}

.contact-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(13, 27, 42, 0.55) 0%, transparent 100%);
}

.contact-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    z-index: 3;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, transparent 100%);
}

.contact-hero-content {
    position: absolute !important;
    inset: 0 !important;
    z-index: 5 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 140px 40px 100px !important;
}

.contact-breadcrumb {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
}

.contact-breadcrumb span.gold-sep {
    color: #C9A84C;
    font-size: 8px;
}

.contact-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.contact-topline .line-bar {
    width: 36px;
    height: 1px;
    background: #C9A84C;
    opacity: 0.6;
}

.contact-topline span {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A84C;
}

.contact-heading {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(38px, 6vw, 64px) !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    line-height: 1.1 !important;
    max-width: 1200px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 10px !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 5 !important;
}

.contact-hero-line-wrap {
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    text-align: center !important;
    height: 1.3em;
    margin-bottom: -0.2em;
}

.contact-hero-line {
    display: block !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    color: #FFFFFF !important;
    white-space: nowrap !important;
    text-align: center !important;
    will-change: transform;
    margin: 0 !important;
}

.contact-gold-line {
    width: 70px;
    height: 2px;
    background: #C9A84C;
    margin: 22px auto;
}

.contact-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.contact-badge {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 7px 16px;
    border-radius: 2px;
}

@keyframes greenPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4CAF50;
    animation: greenPulse 1.8s infinite;
}

.contact-badge span {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
}

/* Scroll Hint */
.scroll-down-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.hint-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.35);
    animation: arrowBounce 1.5s infinite ease-in-out;
}

.hint-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

/* Responsive Contact Hero */
@media (max-width: 1024px) {
    .contact-heading {
        font-size: 52px !important;
    }

    .contact-sub {
        font-size: 15px;
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }

    .contact-hero-content {
        padding: 100px 24px 60px !important;
    }

    .contact-heading {
        font-size: 38px !important;
        line-height: 1.2;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .contact-sub {
        font-size: 14px;
        max-width: 100%;
        padding: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .contact-gold-line {
        width: 52px;
    }

    .contact-badge span {
        font-size: 11px;
    }
}
/* =============================================
   SECTION 02: MAIN CONTACT SPLIT
   ============================================= */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 750px;
    background: #FFFFFF;
}

