/* Portfolio Columns
-----------------------------------------------------------------*/
.portfolio-cols-section {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.portfolio-cols {
    display: flex;
    width: 100%;
    height: 100%;
}

.portfolio-col {
    position: relative;
    flex: 1;
    min-width: 56px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--ink);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    text-decoration: none;
    filter: brightness(1);
}

/* Dark overlay — base */
.portfolio-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 9, 0.72);
    transition: background 0.6s var(--ease);
    z-index: 1;
}

/* Gold gradient separator between columns */
.portfolio-col + .portfolio-col::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--gold-line) 20%,
        var(--gold) 50%,
        var(--gold-line) 80%,
        transparent 100%
    );
    opacity: 0.85;
    z-index: 2;
}

/* Hover on collapsed columns */
.portfolio-col:not(.active):hover {
    filter: brightness(1.08);
}

/* Active/expanded column */
.portfolio-col.active {
    flex: 4;
}

/* Active: light base overlay for bright-sky images */
.portfolio-col.active::before {
    background: rgba(10, 10, 9, 0.20);
}

/* Collapse non-active columns when one is active */
.portfolio-cols:has(.active) .portfolio-col:not(.active) {
    flex: 0.25;
}

/* Content wrapper */
.portfolio-col-content {
    position: absolute;
    bottom: clamp(28px, 4vh, 56px);
    left: clamp(20px, 3vw, 40px);
    right: clamp(20px, 3vw, 40px);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(4px, 0.6vh, 8px);
    padding-top: clamp(28px, 4vh, 56px);
}

/* Accent group: streak + eyebrow + diamond centered on same axis.
   Fixed width (2rem) lets us calculate the arrow offset below. */
.portfolio-col-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 2rem;
    gap: 8px;
    margin-bottom: 0.5rem;
}

/* Vertical gold streak */
.portfolio-col-streak {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, transparent 0%, var(--gold-line) 40%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.6s var(--ease) 0.08s;
    flex-shrink: 0;
}

/* Luxury overlay gradient on expanded column.
   width/height explicitly reset the separator rule's width:1px / opacity:0.85
   so this applies correctly on non-first columns too. */
.portfolio-col.active::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background:
        linear-gradient(0deg, rgba(10,10,9,0.82) 0%, rgba(10,10,9,0.30) 38%, rgba(10,10,9,0.06) 60%, transparent 76%),
        linear-gradient(90deg, rgba(10,10,9,0.32) 0%, transparent 55%),
        radial-gradient(ellipse 65% 55% at 72% 55%, rgba(206,173,106,0.06) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* Eyebrow index number — luxury section-tag style */
.portfolio-col-eyebrow {
    display: block;
    font-family: var(--display);
    font-size: clamp(0.62rem, 0.78vw, 0.68rem);
    letter-spacing: 0.32em;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease 0.1s, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    margin-bottom: 0.25rem;
}

/* Gold diamond accent */
.portfolio-col-diamond {
    display: block;
    font-size: 8px;
    line-height: 1;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(206, 173, 106, 0.55);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(0);
    margin-bottom: 0.5rem;
    transition: opacity 0.45s ease 0.18s, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.18s;
}

/* Category name — Cormorant Garamond for editorial luxury feel */
.portfolio-col-name {
    font-family: var(--serif);
    font-size: clamp(30px, 5.25vw, 84px);
    font-weight: 300;
    color: var(--smoke);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateY(18px);
    letter-spacing: 0.06em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
    transition:
        opacity 0.38s ease 0.18s,
        transform 0.38s cubic-bezier(0.4, 0, 0.2, 1) 0.18s,
        letter-spacing 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.14s;
}

/* CTA — luxury ghost button with diamond prefix and gradient streak suffix.
   margin-left: calc(1rem - 0.22rem) centers ::before diamond on accent axis. */
.portfolio-col-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-size: clamp(0.7rem, 0.85vw, 0.76rem);
    font-weight: 400;
    color: var(--ash);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.45s ease 0.42s,
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.42s,
        color 0.3s,
        gap 0.4s var(--ease);
    margin-top: clamp(4px, 0.6vh, 8px);
    margin-left: 0.78rem;
}

/* Diamond prefix */
.portfolio-col-arrow::before {
    content: '◆';
    font-size: 7px;
    color: var(--gold);
    text-shadow: 0 0 8px rgba(206, 173, 106, 0.5);
    flex-shrink: 0;
    transition: color 0.3s;
}

/* Horizontal gradient streak suffix */
.portfolio-col-arrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-line) 60%, transparent 100%);
    flex-shrink: 0;
    transition: width 0.4s var(--ease);
}

.portfolio-col.active:hover .portfolio-col-arrow {
    color: var(--gold);
    gap: 14px;
}

.portfolio-col.active:hover .portfolio-col-arrow::after {
    width: 56px;
}

/* Description — hidden by default, shown only on expanded column */
.portfolio-col-content p {
    max-width: 50%;
    font-size: clamp(12px, 1vw, 14px);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease 0.32s, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.32s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Reveal all content on active column */
.portfolio-col.active .portfolio-col-streak,
.portfolio-col.active .portfolio-col-eyebrow,
.portfolio-col.active .portfolio-col-diamond,
.portfolio-col.active .portfolio-col-name,
.portfolio-col.active .portfolio-col-arrow,
.portfolio-col.active .portfolio-col-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Active name: wider letter-spacing — Cormorant handles it elegantly */
.portfolio-col.active .portfolio-col-name {
    letter-spacing: clamp(0.1rem, 0.55vw, 0.55rem);
}

/* Exit: content flies upward when a column collapses */
.portfolio-col.will-leave .portfolio-col-streak,
.portfolio-col.will-leave .portfolio-col-eyebrow,
.portfolio-col.will-leave .portfolio-col-diamond,
.portfolio-col.will-leave .portfolio-col-name,
.portfolio-col.will-leave .portfolio-col-arrow,
.portfolio-col.will-leave .portfolio-col-content p {
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 1, 1);
}

/* Keep letter-spacing during will-leave */
.portfolio-col.will-leave .portfolio-col-name {
    letter-spacing: clamp(0.1rem, 0.55vw, 0.55rem);
}

/* Vertical tag name — shown on collapsed columns */
.portfolio-col-name-v {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    white-space: nowrap;
    font-size: clamp(12px, 1.4vw, 22px);
    font-weight: 300;
    letter-spacing: clamp(0.2rem, 0.5vw, 0.4rem);
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease 0.3s, transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1) 0.25s, color 0.3s;
}

.portfolio-col:not(.active):hover .portfolio-col-name-v {
    color: rgba(206, 173, 106, 0.85);
}

/* Slide vertical name out when column expands */
.portfolio-col.active .portfolio-col-name-v {
    opacity: 0;
    transform: translateX(-50%) translateY(-70%) rotate(-90deg);
    transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.4, 0, 1, 1);
}

/* Show accent (streak + number + diamond) on all columns, not just active */
.portfolio-col:not(.active) .portfolio-col-streak,
.portfolio-col:not(.active) .portfolio-col-eyebrow,
.portfolio-col:not(.active) .portfolio-col-diamond {
    opacity: 1;
    transform: translateY(0);
}

/* Remove name + arrow from flex flow on collapsed columns so they don't push accent up */
.portfolio-col:not(.active) .portfolio-col-name,
.portfolio-col:not(.active) .portfolio-col-arrow {
    display: none;
}

/* Restore display when column is active */
.portfolio-col.active .portfolio-col-name {
    display: block;
}

.portfolio-col.active .portfolio-col-arrow {
    display: inline-flex;
}

/* On desktop/tablet: anchor accent to bottom-center on collapsed columns */
@media (min-width: 768px) {
    .portfolio-col:not(.active) .portfolio-col-content {
        top: auto;
        bottom: clamp(20px, 2.5vh, 36px);
        left: 0;
        right: 0;
        align-items: center;
        padding-top: 0;
    }
}

/* Tablet: moderate adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .portfolio-col {
        min-width: 48px;
    }

    .portfolio-col-name {
        font-size: clamp(27px, 4.5vw, 54px);
        letter-spacing: 0.05em;
    }

    .portfolio-col.active .portfolio-col-name {
        letter-spacing: clamp(0.06rem, 0.6vw, 0.4rem);
    }

    .portfolio-col-name-v {
        font-size: clamp(11px, 1.5vw, 18px);
        letter-spacing: 0.25rem;
    }

    .portfolio-col:not(.active) .portfolio-col-content {
        left: 0;
        right: 0;
        align-items: center;
    }
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
    .portfolio-cols-section {
        height: auto;
        min-height: 100svh;
    }

    .portfolio-cols {
        flex-direction: column;
    }

    .portfolio-col {
        flex: none !important;
        height: 28vh;
        min-height: 160px;
        min-width: unset;
    }

    /* Extra height on the first item so its numbering clears the navbar */
    .portfolio-col:first-child {
        height: calc(28vh + 84px);
        min-height: calc(160px + 84px);
        transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .portfolio-cols:has(.active) .portfolio-col:not(.active) {
        flex: none !important;
    }

    .portfolio-col-streak,
    .portfolio-col-eyebrow,
    .portfolio-col-diamond,
    .portfolio-col-name,
    .portfolio-col-arrow {
        opacity: 1;
        transform: translateY(0);
    }

    .portfolio-col-content::before {
        display: none;
    }

    .portfolio-col-content p {
        display: none;
    }

    .portfolio-col-eyebrow {
        font-size: clamp(0.6rem, 2.5vw, 0.68rem);
        letter-spacing: 0.22em;
    }

    .portfolio-col-name {
        font-size: clamp(22px, 7vw, 44px);
        letter-spacing: 0.05em;
        transition: none;
    }

    .portfolio-col.active .portfolio-col-name {
        letter-spacing: 0.05em;
    }

    .portfolio-col-diamond {
        font-size: clamp(7px, 2.5vw, 9px);
    }

    .portfolio-col-arrow {
        font-size: clamp(0.62rem, 2.8vw, 0.72rem);
        letter-spacing: 0.2em;
    }

    .portfolio-col-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        gap: 4px;
    }

    .portfolio-col-content::before {
        display: none;
    }

    .portfolio-col-name-v {
        display: none;
    }

    .portfolio-col + .portfolio-col::after {
        display: none;
    }

    /* Always show name + arrow on mobile — no tap-to-expand interaction */
    .portfolio-col:not(.active) .portfolio-col-name {
        display: block;
    }

    .portfolio-col:not(.active) .portfolio-col-arrow {
        display: inline-flex;
    }

    /* Lighten overlay on mobile so content is legible without an active state */
    .portfolio-col::before {
        background: rgba(10, 10, 9, 0.48);
    }
}

/* Light mode: ensure text legibility — portfolio overlays always dark */
:root.light .portfolio-col-name,
:root.light .portfolio-col-arrow,
:root.light .portfolio-col-name-v,
:root.light .portfolio-col-content p {
    color: #fff;
}

:root.light .portfolio-col-arrow {
    color: rgba(255, 255, 255, 0.6);
}

:root.light .portfolio-col.active:hover .portfolio-col-arrow {
    color: var(--gold);
}

:root.light .portfolio-col-eyebrow {
    color: #ceaf6e;
}

:root.light .portfolio-col-name-v {
    color: rgba(255, 255, 255, 0.6);
}

:root.light .portfolio-col:not(.active):hover .portfolio-col-name-v {
    color: #ceaf6e;
}

/* ── Portfolio Showcase Header ──────────────────────────────────
-----------------------------------------------------------------*/
.showcase-header {
    position: relative;
    height: 68vh;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.showcase-header-bg {
    position: absolute;
    inset: 0;
    background-color: var(--ink-2);
}

.showcase-header-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: grayscale(65%) brightness(0.52) contrast(1.05);
    transition: filter 1.2s var(--ease);
    opacity: .2;
}

.showcase-header:hover .showcase-header-photo {
    filter: grayscale(25%) brightness(0.68) contrast(1.02);
}

.showcase-header-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,9,0.52) 0%, rgba(10,10,9,0.12) 35%, rgba(10,10,9,0.48) 65%, rgba(10,10,9,0.92) 100%),
        linear-gradient(90deg, rgba(10,10,9,0.58) 0%, transparent 60%),
        radial-gradient(ellipse 60% 65% at 72% 50%, rgba(206,173,106,0.06) 0%, transparent 60%);
}

.showcase-header-streak {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--gold-line) 20%, rgba(206,173,106,0.38) 50%, var(--gold-line) 80%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.showcase-header-content {
    position: relative;
    z-index: 3;
    padding: 0 4rem clamp(2.5rem, 4.5vh, 4.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 820px;
    animation: lux-fadeUp 1.2s var(--ease) both;
}

/* Breadcrumb */
.showcase-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--body);
    font-size: clamp(0.68rem, 0.85vw, 0.72rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.showcase-breadcrumb a {
    color: var(--ash);
    text-decoration: none;
    transition: color 0.3s;
}

.showcase-breadcrumb a:hover {
    color: var(--gold);
}

.showcase-breadcrumb > span {
    color: rgba(206, 173, 106, 0.45);
    font-size: 0.58rem;
}

.showcase-breadcrumb-current {
    color: var(--ash-2) !important;
    font-size: inherit !important;
}

/* Eyebrow — reuses .section-tag from abcubed-luxury.css */
.showcase-eyebrow {
    margin-bottom: 0.1rem;
}

/* Title */
.showcase-header-title {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 6.5vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: var(--smoke);
    margin: 0;
}

:root.light .showcase-header-title { color: #fff; }

/* Description */
.showcase-header-desc {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: var(--ash);
    max-width: 460px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    margin: 0;
}

:root.light .showcase-header-desc { color: rgba(255,255,255,0.68); }

/* Filter bar */
.showcase-filter-bar {
    position: relative;
    z-index: 3;
    border-top: 1px solid var(--gold-line);
    background: rgba(10,10,9,0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.showcase-filter-inner {
    padding: 1.1rem 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.showcase-filter-label {
    font-family: var(--body);
    font-size: clamp(0.65rem, 0.82vw, 0.7rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.showcase-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.showcase-chip {
    font-family: var(--body);
    font-size: clamp(0.65rem, 0.82vw, 0.7rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    border: 1px solid var(--gold-line);
    padding: 0.32rem 0.8rem;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
    white-space: nowrap;
}

.showcase-chip:hover {
    color: var(--gold);
    border-color: rgba(206,173,106,0.55);
    background: var(--gold-glow);
}

/* ── Portfolio Showcase Project List ────────────────────────────
-----------------------------------------------------------------*/
.showcase-projects { display: block; }

.proj-item {
    display: block;
    position: relative;
    min-height: 56vh;
    overflow: hidden;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-line);
}

.proj-item:first-child { border-top: 1px solid var(--gold-line); }

.proj-item-bg {
    transition: transform 1.2s var(--ease);
    will-change: transform;
}

.proj-item:hover .proj-item-bg,
.proj-item-active .proj-item-bg { transform: scale(1.04); }

.proj-item-bg:before { transition: opacity 0.5s ease; }

.proj-item:hover .proj-item-bg:before,
.proj-item-active .proj-item-bg:before { opacity: 0.25 !important; }

.proj-item-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(10,10,9,0.90) 0%, rgba(10,10,9,0.38) 45%, rgba(10,10,9,0.14) 70%, transparent 100%),
        linear-gradient(90deg, rgba(10,10,9,0.42) 0%, transparent 62%);
    transition: background 0.6s var(--ease);
    pointer-events: none;
}

.proj-item:hover .proj-item-overlay {
    background:
        linear-gradient(0deg, rgba(10,10,9,0.94) 0%, rgba(10,10,9,0.48) 40%, rgba(10,10,9,0.20) 65%, transparent 100%),
        linear-gradient(90deg, rgba(10,10,9,0.52) 0%, transparent 62%);
}

.proj-item-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: clamp(2rem, 4vw, 4rem);
}

.proj-item-num {
    position: absolute;
    top: clamp(1.75rem, 3vh, 2.5rem);
    right: clamp(2rem, 4vw, 4rem);
    font-family: var(--display);
    font-size: clamp(0.65rem, 0.88vw, 0.74rem);
    letter-spacing: 0.35em;
    color: var(--gold);
    opacity: 0.45;
    transition: opacity 0.45s var(--ease);
}

.proj-item:hover .proj-item-num { opacity: 0.9; }

.proj-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.proj-item-gold-line {
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(206,173,106,0.25), transparent);
    transition: width 0.55s var(--ease);
    flex-shrink: 0;
}

.proj-item:hover .proj-item-gold-line { width: 72px; }

.proj-item-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.8vw, 4.5rem);
    font-weight: 300;
    color: var(--smoke);
    line-height: 1.08;
    letter-spacing: 0.01em;
    margin: 0;
    transition: color 0.35s;
}

.proj-item:hover .proj-item-title { color: #fff; }

.proj-item-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--body);
    font-size: clamp(0.65rem, 0.85vw, 0.72rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ash);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.42s var(--ease), transform 0.42s var(--ease), color 0.3s, gap 0.35s;
}

.proj-item:hover .proj-item-cta,
.proj-item-active .proj-item-cta {
    opacity: 1;
    transform: translateY(0);
    color: var(--gold);
}

.proj-item-cta::after {
    content: '→';
    transition: transform 0.3s var(--ease);
}

.proj-item:hover .proj-item-cta::after { transform: translateX(4px); }

/* ── Showcase Empty State ───────────────────────────────────────
-----------------------------------------------------------------*/
.showcase-empty { text-align: center; }

.showcase-empty-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.showcase-empty-text {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ash);
    line-height: 1.7;
    margin: 0;
}

/* ── Light Mode ─────────────────────────────────────────────────
-----------------------------------------------------------------*/
:root.light .showcase-filter-bar { background: rgba(8,8,7,0.72); }

:root.light .showcase-chip {
    color: rgba(255,255,255,0.55);
    border-color: rgba(206,173,106,0.22);
}

:root.light .showcase-chip:hover {
    color: #ceaf6e;
    border-color: rgba(206,173,106,0.6);
    background: rgba(206,173,106,0.06);
}

:root.light .showcase-breadcrumb a { color: rgba(255,255,255,0.55); }
:root.light .showcase-breadcrumb a:hover { color: #ceaf6e; }
:root.light .showcase-breadcrumb-current { color: rgba(255,255,255,0.35) !important; }

/* Eyebrow and filter label sit on dark overlays — use light gold, not the dark light-mode gold */
:root.light .showcase-eyebrow { color: rgba(206,173,106,0.8); }
:root.light .showcase-eyebrow::before { background: rgba(206,173,106,0.5); }
:root.light .showcase-filter-label { color: rgba(206,173,106,0.8); }

:root.light .proj-item-title { color: rgba(255,255,255,0.9); }
:root.light .proj-item:hover .proj-item-title { color: #fff; }
:root.light .proj-item-cta { color: rgba(255,255,255,0.5); }
:root.light .proj-item:hover .proj-item-cta,
:root.light .proj-item-active .proj-item-cta { color: #ceaf6e; }
:root.light .proj-item-num { color: rgba(206,173,106,0.8); }

:root.light .showcase-header-bg { background-color: #141412; }

:root.light .showcase-header-overlay {
    background:
        linear-gradient(180deg, rgba(10,10,9,0.52) 0%, rgba(10,10,9,0.12) 35%, rgba(10,10,9,0.48) 65%, rgba(10,10,9,0.92) 100%),
        linear-gradient(90deg, rgba(10,10,9,0.58) 0%, transparent 60%),
        radial-gradient(ellipse 60% 65% at 72% 50%, rgba(206,173,106,0.06) 0%, transparent 60%);
}

/* ── Responsive ─────────────────────────────────────────────────
-----------------------------------------------------------------*/
@media (max-width: 1024px) {
    .showcase-header-content,
    .showcase-filter-inner { padding-left: 2.5rem; padding-right: 2.5rem; }
    .showcase-header-streak { right: 22%; }
    .proj-item-content { padding: 2.5rem; }
    .proj-item-num { right: 2.5rem; }
}

@media (max-width: 767px) {
    .showcase-header { height: auto; min-height: 65svh; }
    .showcase-header-streak { display: none; }
    .showcase-header-content {
        padding: 100px 1.5rem clamp(1.5rem, 3vh, 2rem);
        gap: 0.85rem;
    }
    .showcase-filter-inner {
        padding: 0.9rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }
    .proj-item { min-height: 44vh; }
    .proj-item-content { padding: 1.5rem; }
    .proj-item-num { right: 1.5rem; top: 1.25rem; }
    .proj-item-title { font-size: clamp(1.75rem, 7vw, 2.8rem); }
    .proj-item-cta { opacity: 1; transform: none; }
}
