```css
/* ============================================================
   ALL-IN-ONE BRANDING SHOP
   PORTFOLIO PAGE STYLES
   Premium / Luxury Portfolio Design

   Page-specific styling only.
   Global styles belong in main.css.
============================================================ */


/* ============================================================
   PORTFOLIO HERO
============================================================ */

.portfolio-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(215, 180, 106, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 78%,
            rgba(215, 180, 106, 0.055),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #080808 0%,
            #0d0d0d 55%,
            #11100d 100%
        );

    border-bottom: 1px solid var(--border);
}

.portfolio-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.018) 50%,
            transparent 100%
        );
}

.portfolio-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -190px;
    top: 50%;
    transform: translateY(-50%);

    border: 1px solid rgba(215, 180, 106, 0.07);
    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(215, 180, 106, 0.018),
        0 0 0 140px rgba(215, 180, 106, 0.012);

    pointer-events: none;
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 100px 0;
}

.portfolio-hero h1 {
    max-width: 900px;
    margin: 0;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(52px, 7.5vw, 88px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -4px;
}

.portfolio-hero h1 span {
    display: block;
    color: var(--gold);
}

.portfolio-hero p {
    max-width: 650px;
    margin: 30px 0 0;

    color: var(--soft);
    font-size: 15px;
    line-height: 1.9;
}

.portfolio-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 38px;
}

.portfolio-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    transition:
        color var(--transition),
        transform var(--transition);
}

.portfolio-text-link span {
    color: var(--gold);
    font-size: 17px;

    transition:
        transform var(--transition);
}

.portfolio-text-link:hover {
    color: var(--gold-light);
    transform: translateX(2px);
}

.portfolio-text-link:hover span {
    transform: translateX(5px);
}


/* ============================================================
   PORTFOLIO INTRO
============================================================ */

.portfolio-intro {
    position: relative;
    padding: 105px 0;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--bg-2),
            #0b0b0b
        );

    border-bottom: 1px solid var(--border);
}

.portfolio-intro::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -180px;
    top: 50%;
    transform: translateY(-50%);

    border: 1px solid rgba(215, 180, 106, 0.05);
    border-radius: 50%;

    pointer-events: none;
}

.portfolio-intro-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 90px;
    align-items: start;
}

.portfolio-intro h2 {
    max-width: 680px;
    margin: 0;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.portfolio-intro h2 span {
    display: block;
    color: var(--gold);
}

.portfolio-intro-grid > div:last-child {
    position: relative;
    padding-top: 30px;
}

.portfolio-intro-grid > div:last-child::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 30px;

    width: 1px;
    height: 70px;

    background:
        linear-gradient(
            to bottom,
            var(--gold),
            transparent
        );

    opacity: 0.6;
}

.portfolio-intro p {
    max-width: 560px;
    margin: 0 0 21px;

    color: var(--soft);
    font-size: 14px;
    line-height: 1.95;
}

.portfolio-intro p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   PORTFOLIO SECTION
============================================================ */

.portfolio-section {
    position: relative;
    padding: 105px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(215, 180, 106, 0.035),
            transparent 35%
        ),
        var(--dark);

    border-bottom: 1px solid var(--border);
}


/* ============================================================
   FILTER
============================================================ */

.portfolio-filter {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 9px;
    margin-bottom: 55px;
}

.portfolio-filter-button {
    position: relative;

    min-height: 42px;
    padding: 0 19px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.018);

    color: var(--muted);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.portfolio-filter-button:hover {
    color: var(--gold-light);
    border-color: var(--border-gold);

    background:
        rgba(215, 180, 106, 0.045);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);

    transform: translateY(-2px);
}

.portfolio-filter-button.active {
    color: #090909;
    border-color: var(--gold);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    box-shadow:
        0 8px 30px rgba(215, 180, 106, 0.13);
}


/* ============================================================
   PORTFOLIO GRID
============================================================ */

.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* ============================================================
   PORTFOLIO CARD
============================================================ */

.portfolio-card {
    position: relative;
    min-width: 0;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.008)
        );

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 8px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.portfolio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            transparent 35%
        );

    opacity: 0.7;
}

.portfolio-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(215, 180, 106, 0.38);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(215, 180, 106, 0.045);
}

.portfolio-card-large {
    grid-column: span 2;
}


/* ============================================================
   CARD VISUAL
============================================================ */

.portfolio-card-visual {
    position: relative;

    min-height: 325px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--surface);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.portfolio-card-visual::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215, 180, 106, 0.045),
            transparent 68%
        );

    filter: blur(5px);
}

.portfolio-card-large .portfolio-card-visual {
    min-height: 410px;
}


/* ============================================================
   VISUAL BACKGROUNDS
============================================================ */

.portfolio-visual-branding {
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(215, 180, 106, 0.18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #181818,
            #090909
        );
}

.portfolio-visual-print {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(215, 180, 106, 0.11),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #151515,
            #0a0a0a
        );
}

.portfolio-visual-flyer {
    background:
        linear-gradient(
            145deg,
            #191919,
            #090909
        );
}

.portfolio-visual-labels {
    background:
        radial-gradient(
            circle at 30% 40%,
            rgba(215, 180, 106, 0.12),
            transparent 30%
        ),
        #101010;
}

.portfolio-visual-web {
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(215, 180, 106, 0.15),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #111111,
            #080808
        );
}

.portfolio-visual-sticker {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(215, 180, 106, 0.12),
            transparent 32%
        ),
        #111111;
}

.portfolio-visual-menu {
    background:
        linear-gradient(
            145deg,
            #181818,
            #090909
        );
}

.portfolio-visual-poster {
    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(215, 180, 106, 0.13),
            transparent 30%
        ),
        #101010;
}


/* ============================================================
   VISUAL NUMBER
============================================================ */

.portfolio-visual-number {
    position: absolute;
    top: 21px;
    left: 23px;
    z-index: 3;

    color: rgba(215, 180, 106, 0.62);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;
    letter-spacing: 1.5px;
}


/* ============================================================
   VISUAL LABEL
============================================================ */

.portfolio-visual-label {
    position: absolute;
    right: 22px;
    bottom: 21px;
    z-index: 3;

    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;

    background:
        rgba(0, 0, 0, 0.25);

    color: var(--muted);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


/* ============================================================
   BRANDING VISUAL
============================================================ */

.portfolio-visual-center {
    position: relative;
    z-index: 2;

    width: 132px;
    height: 132px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-gold);
    border-radius: 4px;

    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 60px;
    font-weight: 400;

    background:
        linear-gradient(
            145deg,
            rgba(215, 180, 106, 0.08),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 0 80px rgba(215, 180, 106, 0.08),
        inset 0 0 35px rgba(215, 180, 106, 0.025);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.portfolio-card:hover .portfolio-visual-center {
    transform: scale(1.04);

    box-shadow:
        0 0 100px rgba(215, 180, 106, 0.13),
        inset 0 0 40px rgba(215, 180, 106, 0.04);
}


/* ============================================================
   PRINT STACK
============================================================ */

.print-stack {
    position: relative;
    z-index: 2;

    width: 190px;
    height: 135px;
}

.print-stack span {
    position: absolute;

    width: 155px;
    height: 98px;

    border: 1px solid var(--border-gold);
    border-radius: 3px;

    background:
        linear-gradient(
            145deg,
            var(--surface-2),
            #111
        );

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.45s ease;
}

.print-stack span:nth-child(1) {
    top: 23px;
    left: 12px;
    transform: rotate(-9deg);
}

.print-stack span:nth-child(2) {
    top: 11px;
    left: 24px;
    transform: rotate(5deg);
}

.print-stack span:nth-child(3) {
    top: 0;
    left: 36px;
    transform: rotate(-1deg);

    background:
        linear-gradient(
            135deg,
            rgba(215, 180, 106, 0.15),
            rgba(255, 255, 255, 0.025)
        );
}

.portfolio-card:hover .print-stack span:nth-child(1) {
    transform: translate(-5px, 4px) rotate(-10deg);
}

.portfolio-card:hover .print-stack span:nth-child(2) {
    transform: translate(3px, -2px) rotate(6deg);
}

.portfolio-card:hover .print-stack span:nth-child(3) {
    transform: translate(5px, -5px) rotate(0deg);
}


/* ============================================================
   FLYER VISUAL
============================================================ */

.flyer-sheet {
    position: relative;
    z-index: 2;

    width: 180px;
    min-height: 225px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 3px;
    padding: 26px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eeeae2
        );

    color: #111;

    border-radius: 2px;

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.32);

    transform: rotate(-3deg);

    transition:
        transform 0.45s ease;
}

.portfolio-card:hover .flyer-sheet {
    transform:
        rotate(-1deg)
        translateY(-4px);
}

.flyer-sheet strong {
    display: block;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;
    line-height: 0.95;
}

.flyer-sheet small {
    margin-top: 15px;

    color: #6e6047;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ============================================================
   LABEL VISUAL
============================================================ */

.label-row {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 10px;

    width: min(85%, 410px);
}

.label-row span {
    display: block;

    padding: 15px 21px;

    border: 1px solid var(--border-gold);
    border-radius: 3px;

    background:
        linear-gradient(
            90deg,
            rgba(215, 180, 106, 0.07),
            rgba(215, 180, 106, 0.025)
        );

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.portfolio-card:hover .label-row span:nth-child(1) {
    transform: translateX(-5px);
}

.portfolio-card:hover .label-row span:nth-child(2) {
    transform: translateX(5px);
}

.portfolio-card:hover .label-row span:nth-child(3) {
    transform: translateX(-3px);
}


/* ============================================================
   WEBSITE / BROWSER VISUAL
============================================================ */

.browser-window {
    position: relative;
    z-index: 2;

    width: min(78%, 570px);

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;

    background: #090909;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.38);

    transition:
        transform 0.45s ease;
}

.portfolio-card:hover .browser-window {
    transform: translateY(-5px);
}

.browser-top {
    height: 31px;

    display: flex;
    align-items: center;

    gap: 6px;
    padding: 0 11px;

    border-bottom: 1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            #191919,
            #121212
        );
}

.browser-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--muted);
}

.browser-content {
    min-height: 210px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 36px;
}

.browser-content strong {
    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(21px, 3vw, 35px);
    font-weight: 400;
}

.browser-content small {
    margin-top: 8px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.browser-lines {
    display: flex;
    flex-direction: column;

    gap: 7px;

    width: 65%;
    margin-top: 26px;
}

.browser-lines span {
    height: 4px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.08);
}

.browser-lines span:nth-child(2) {
    width: 78%;
}

.browser-lines span:nth-child(3) {
    width: 55%;
}


/* ============================================================
   STICKER VISUAL
============================================================ */

.sticker-circle {
    position: relative;
    z-index: 2;

    width: 132px;
    height: 132px;

    display: grid;
    place-items: center;

    border: 2px solid var(--gold);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215, 180, 106, 0.14),
            rgba(215, 180, 106, 0.025)
        );

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;

    transform: rotate(-7deg);

    box-shadow:
        0 0 60px rgba(215, 180, 106, 0.08);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.portfolio-card:hover .sticker-circle {
    transform:
        rotate(-2deg)
        scale(1.06);

    box-shadow:
        0 0 80px rgba(215, 180, 106, 0.13);
}


/* ============================================================
   MENU VISUAL
============================================================ */

.menu-sheet {
    position: relative;
    z-index: 2;

    width: 180px;
    min-height: 225px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 26px;

    background:
        linear-gradient(
            145deg,
            #f3efe5,
            #e5dfd0
        );

    color: #151515;

    border-radius: 2px;

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.32);

    transform: rotate(3deg);

    transition:
        transform 0.45s ease;
}

.portfolio-card:hover .menu-sheet {
    transform:
        rotate(1deg)
        translateY(-4px);
}

.menu-sheet small {
    color: #766443;

    font-size: 7px;
    font-weight: 900;
    letter-spacing: 2px;
}

.menu-sheet strong {
    margin-top: 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
    font-weight: 400;
    line-height: 1;
}

.menu-sheet i {
    display: block;

    width: 100%;
    height: 3px;

    margin-top: 13px;

    background:
        rgba(0, 0, 0, 0.12);
}

.menu-sheet i:nth-of-type(2) {
    width: 75%;
}

.menu-sheet i:nth-of-type(3) {
    width: 55%;
}


/* ============================================================
   POSTER VISUAL
============================================================ */

.poster-sheet {
    position: relative;
    z-index: 2;

    width: 190px;
    min-height: 235px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 26px;

    border: 1px solid var(--border-gold);
    border-radius: 2px;

    background:
        linear-gradient(
            145deg,
            rgba(215, 180, 106, 0.17),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.3);

    transform: rotate(-2deg);

    transition:
        transform 0.45s ease;
}

.portfolio-card:hover .poster-sheet {
    transform:
        rotate(0deg)
        translateY(-5px);
}

.poster-sheet small {
    color: var(--gold);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.poster-sheet strong {
    margin: 10px 0;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 40px;
    font-weight: 400;
    line-height: 0.9;
}

.poster-sheet span {
    color: var(--soft);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ============================================================
   CARD CONTENT
============================================================ */

.portfolio-card-content {
    position: relative;
    z-index: 3;

    min-height: 195px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;
    padding: 29px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.008)
        );
}

.portfolio-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.9px;
    text-transform: uppercase;
}

.portfolio-category::before {
    content: "";

    width: 20px;
    height: 1px;

    background: var(--gold);
    opacity: 0.7;
}

.portfolio-card-content h3 {
    margin: 0;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.4px;
}

.portfolio-card-content p {
    max-width: 540px;

    margin: 13px 0 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.8;
}

.portfolio-card-arrow {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(215, 180, 106, 0.2);
    border-radius: 50%;

    color: var(--gold);

    font-size: 19px;
    line-height: 1;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease;
}

.portfolio-card:hover .portfolio-card-arrow {
    transform: translateX(5px);

    border-color: var(--gold);

    background:
        rgba(215, 180, 106, 0.08);
}


/* ============================================================
   JAVASCRIPT FILTER STATE
============================================================ */

.portfolio-card.is-hidden {
    display: none;
}


/* ============================================================
   PORTFOLIO SERVICES CTA
============================================================ */

.portfolio-services {
    position: relative;

    padding: 105px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(215, 180, 106, 0.075),
            transparent 28%
        ),
        var(--bg-2);
}

.portfolio-services::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    bottom: -230px;

    border: 1px solid rgba(215, 180, 106, 0.06);
    border-radius: 50%;

    pointer-events: none;
}

.portfolio-services-box {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 60px;

    border: 1px solid rgba(215, 180, 106, 0.16);
    border-radius: 8px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(215, 180, 106, 0.10),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.22);
}

.portfolio-services-box::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50px;

    width: 90px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}

.portfolio-services-box h2 {
    max-width: 680px;
    margin: 0;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -2px;
}

.portfolio-services-box h2 span {
    color: var(--gold);
}

.portfolio-services-box p {
    max-width: 620px;

    margin: 19px 0 0;

    color: var(--soft);

    font-size: 13px;
    line-height: 1.9;
}

.portfolio-services-actions {
    display: flex;
    flex: 0 0 auto;

    align-items: center;
    flex-direction: column;

    gap: 17px;

    min-width: 195px;
}

.portfolio-services-link {
    color: var(--muted);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    transition:
        color var(--transition);
}

.portfolio-services-link:hover {
    color: var(--gold);
}


/* ============================================================
   RESPONSIVE — 1100px
============================================================ */

@media (max-width: 1100px) {

    .portfolio-hero {
        min-height: 590px;
    }

    .portfolio-hero h1 {
        font-size: clamp(48px, 7vw, 76px);
    }

    .portfolio-intro-grid {
        gap: 55px;
    }

    .portfolio-card-content {
        padding: 25px;
    }

    .portfolio-card-content h3 {
        font-size: 23px;
    }

    .portfolio-services-box {
        padding: 50px;
        gap: 40px;
    }
}


/* ============================================================
   RESPONSIVE — 850px
============================================================ */

@media (max-width: 850px) {

    .portfolio-hero {
        min-height: auto;
    }

    .portfolio-hero-content {
        padding: 85px 0;
    }

    .portfolio-hero h1 {
        font-size: clamp(44px, 8vw, 66px);
        letter-spacing: -2.5px;
    }

    .portfolio-intro {
        padding: 80px 0;
    }

    .portfolio-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .portfolio-intro-grid > div:last-child {
        padding-top: 0;
    }

    .portfolio-intro-grid > div:last-child::before {
        display: none;
    }

    .portfolio-section {
        padding: 80px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .portfolio-card-large {
        grid-column: auto;
    }

    .portfolio-card-large .portfolio-card-visual,
    .portfolio-card-visual {
        min-height: 340px;
    }

    .portfolio-services {
        padding: 80px 0;
    }

    .portfolio-services-box {
        align-items: flex-start;
        flex-direction: column;

        padding: 45px;

        gap: 32px;
    }

    .portfolio-services-actions {
        width: 100%;
        align-items: flex-start;
    }
}


/* ============================================================
   RESPONSIVE — 600px
============================================================ */

@media (max-width: 600px) {

    .portfolio-hero-content {
        padding: 70px 0;
    }

    .portfolio-hero h1 {
        font-size: 43px;
        line-height: 1;
        letter-spacing: -1.7px;
    }

    .portfolio-hero p {
        margin-top: 22px;
        font-size: 13px;
        line-height: 1.8;
    }

    .portfolio-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .portfolio-text-link {
        justify-content: center;
        min-height: 42px;
    }

    .portfolio-intro {
        padding: 65px 0;
    }

    .portfolio-intro h2 {
        font-size: 38px;
        letter-spacing: -1.2px;
    }

    .portfolio-intro p {
        font-size: 12px;
    }

    .portfolio-section {
        padding: 65px 0;
    }

    .portfolio-filter {
        justify-content: flex-start;
        margin-bottom: 35px;
        gap: 7px;
    }

    .portfolio-filter-button {
        min-height: 38px;
        padding: 0 13px;
        font-size: 8px;
    }

    .portfolio-card-visual,
    .portfolio-card-large .portfolio-card-visual {
        min-height: 290px;
    }

    .portfolio-card-content {
        min-height: auto;
        padding: 22px;
        gap: 15px;
    }

    .portfolio-card-content h3 {
        font-size: 21px;
    }

    .portfolio-card-content p {
        font-size: 11px;
        line-height: 1.75;
    }

    .portfolio-card-arrow {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .portfolio-services {
        padding: 65px 0;
    }

    .portfolio-services-box {
        padding: 35px 22px;
    }

    .portfolio-services-box::before {
        left: 22px;
    }

    .portfolio-services-box h2 {
        font-size: 36px;
        letter-spacing: -1.2px;
    }

    .portfolio-services-box p {
        font-size: 12px;
    }

    .portfolio-services-actions {
        align-items: stretch;
    }

    .portfolio-services-actions .btn {
        width: 100%;
    }
}


/* ============================================================
   RESPONSIVE — 380px
============================================================ */

@media (max-width: 380px) {

    .portfolio-hero h1 {
        font-size: 38px;
    }

    .portfolio-card-visual,
    .portfolio-card-large .portfolio-card-visual {
        min-height: 260px;
    }

    .portfolio-card-content {
        padding: 19px;
    }

    .portfolio-card-content h3 {
        font-size: 19px;
    }

    .portfolio-card-arrow {
        width: 33px;
        height: 33px;
        font-size: 15px;
    }

    .portfolio-filter-button {
        padding: 0 10px;
        font-size: 8px;
    }

    .portfolio-services-box {
        padding: 29px 18px;
    }

    .portfolio-services-box h2 {
        font-size: 32px;
    }

    .portfolio-visual-center {
        width: 110px;
        height: 110px;
        font-size: 50px;
    }

    .flyer-sheet,
    .menu-sheet {
        width: 165px;
        min-height: 205px;
    }

    .poster-sheet {
        width: 170px;
        min-height: 215px;
    }
}


/* ============================================================
   ACCESSIBILITY
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .portfolio-card,
    .portfolio-text-link,
    .portfolio-text-link span,
    .portfolio-card-arrow,
    .portfolio-visual-center,
    .print-stack span,
    .flyer-sheet,
    .label-row span,
    .browser-window,
    .sticker-circle,
    .menu-sheet,
    .poster-sheet,
    .portfolio-filter-button {
        transition: none;
    }
}
```
