:root {
    --bg: #ffffff;
    --ivory: #f4f2ec;
    --gold: #b3924f;
    --gold-light: #eacf97;
    --ink: #232320;
    --text: #0c0c0b;
    --muted: rgba(12, 12, 11, 0.62);
    --line: #e7e2d7;
    --accent: #a4453a;
    --wa: #25d366;
    --wa-dark: #1eb856;
    --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--ink);
    color: #fff;
}

img {
    max-width: 100%;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

    a:hover {
        color: var(--accent);
    }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin: 0;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }

.display {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.08;
}

.line-mask {
    display: block;
    overflow: hidden;
}

    .line-mask > span {
        display: block;
        transform: translateY(115%);
        transition: transform 1.1s var(--ease);
    }

    .line-mask:nth-child(2) > span {
        transition-delay: 0.12s;
    }

    .line-mask:nth-child(3) > span {
        transition-delay: 0.24s;
    }

[data-reveal].revealed .line-mask > span,
.revealed .line-mask > span {
    transform: none;
}

    .display em,
    h1 em,
    h2 em {
        font-style: italic;
        text-transform: lowercase;
        font-weight: 300;
        color: var(--accent);
        letter-spacing: 0;
    }

p {
    color: var(--muted);
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.overline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.66rem;
    font-weight: 500;
    color: var(--gold);
}

    .overline::before {
        content: "";
        width: 2.4rem;
        height: 1px;
        background: var(--gold);
        opacity: 0.7;
    }

.section {
    padding-block: clamp(5rem, 11vw, 9.5rem);
    position: relative;
}

    .section.bg-ivory {
        background: var(--ivory);
    }

.section-header {
    max-width: 680px;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

    .section-header.center {
        margin-inline: auto;
        text-align: center;
    }

        .section-header.center .overline::before {
            display: none;
        }

        .section-header.center .overline {
            justify-content: center;
        }

    .section-header p {
        margin-top: 1.4rem;
        font-size: 1rem;
    }

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    color: var(--text);
    padding-bottom: 0.4rem;
    position: relative;
}

    .arrow-link::after {
        content: "→";
        font-size: 1rem;
        letter-spacing: 0;
        transition: transform 0.4s var(--ease);
    }

    .arrow-link::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: var(--text);
        transform-origin: right;
        transition: transform 0.45s var(--ease);
    }

    .arrow-link:hover {
        color: var(--accent);
    }

        .arrow-link:hover::after {
            transform: translateX(8px);
        }

        .arrow-link:hover::before {
            transform: scaleX(0.4);
            transform-origin: left;
            background: var(--accent);
        }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1.05rem 2.4rem;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: transparent;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text);
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

    .btn:hover {
        background: var(--ink);
        color: #fff;
    }

.btn-solid {
    background: var(--ink);
    color: #fff;
}

    .btn-solid:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
    }

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.64rem;
}

.btn-wa {
    border-color: var(--wa);
    color: var(--wa-dark);
}

    .btn-wa:hover {
        background: var(--wa);
        border-color: var(--wa);
        color: #fff;
    }

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    z-index: 1040;
    pointer-events: none;
    background: transparent;
}

    .scroll-progress span {
        display: block;
        height: 100%;
        width: 100%;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.15s linear;
    }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1030;
    padding-block: 0.9rem;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

    .site-header .brand img,
    .site-header .main-nav a,
    .site-header .hamburger span {
        transition: all 0.4s var(--ease);
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand img {
    height: 44px;
    width: auto;
    transition: height 0.4s var(--ease);
}

.main-nav {
    display: flex;
    gap: 2.6rem;
}

    .main-nav a {
        position: relative;
        color: var(--text);
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        padding-block: 0.4rem;
    }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s var(--ease);
        }

        .main-nav a:hover::after,
        .main-nav a.active::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .main-nav a.active {
            color: var(--accent);
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    padding: 0.5rem 0.2rem;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 1.5px;
        background: var(--text);
        transition: all 0.3s var(--ease);
    }

    .hamburger:hover span {
        background: var(--accent);
    }

        .hamburger:hover span:first-child {
            transform: translateY(-2px);
        }

.mobile-menu {
    background: var(--bg);
    border-left: 1px solid var(--line);
    max-width: 360px;
    border-radius: 0;
}

.mobile-menu-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--text);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

    .mobile-nav a {
        font-family: var(--font-head);
        font-size: 1.7rem;
        font-weight: 300;
        color: var(--text);
        padding-block: 0.7rem;
        border-bottom: 1px solid var(--line);
        transition: all 0.3s var(--ease);
    }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: var(--accent);
            padding-left: 0.6rem;
        }

.mobile-menu-contact {
    margin-top: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

    .mobile-menu-contact a {
        color: var(--muted);
    }

        .mobile-menu-contact a:hover {
            color: var(--accent);
        }

.mobile-menu-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

    .mobile-menu-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid var(--line);
        border-radius: 0;
        color: var(--text);
    }

        .mobile-menu-social a:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

.hero {
    padding: 6.5rem 0 0;
}

.hero-label {
    text-align: center;
    margin-bottom: 1.5rem;
}

    .hero-label .overline::before {
        display: none;
    }

    .hero-label .overline {
        justify-content: center;
    }

.hero-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    isolation: isolate;
    background: var(--ivory);
}

    .hero-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.4s var(--ease);
}

    .hero-slide.visible {
        opacity: 1;
        animation: kenBurns 7.5s var(--ease) forwards;
    }

@keyframes kenBurns {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.12);
    }
}

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

    .hero-intro h1 {
        text-wrap: balance;
    }

    .hero-intro p {
        max-width: 560px;
        margin: 1.8rem auto 0;
    }

.hero-cta-links {
    display: flex;
    gap: 2.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.6rem;
}

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

.hero-est {
    margin-top: 2.4rem;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

.intro-statement {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

    .intro-statement h2 {
        text-wrap: balance;
    }

    .intro-statement p {
        max-width: 560px;
        margin: 1.8rem auto 0;
    }

.cat-list {
    border-top: 1px solid var(--line);
}

.cat-row {
    display: grid;
    grid-template-columns: 4rem 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.7rem 0.5rem;
    border-bottom: 1px solid var(--line);
    transition: all 0.4s var(--ease);
}

    .cat-row:hover {
        background: var(--ivory);
        padding-left: 1.4rem;
    }

.cat-num {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.cat-title {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.15;
    color: var(--text);
    transition: color 0.3s var(--ease);
}

    .cat-row:hover .cat-title {
        color: var(--accent);
    }

.cat-meta {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

    .cat-meta span {
        font-size: 0.66rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .cat-meta i {
        font-style: normal;
        font-size: 1.1rem;
        color: var(--text);
        transition: transform 0.4s var(--ease);
    }

    .cat-row:hover .cat-meta i {
        transform: translateX(8px);
        color: var(--accent);
    }

.works-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(0.9rem, 1.6vw, 1.4rem);
    align-items: start;
}

.work-item {
    position: relative;
    margin: 0;
    cursor: zoom-in;
    --ar: 4 / 5;
}

    .work-item.r-34 {
        --ar: 3 / 4;
    }

    .work-item.r-1610 {
        --ar: 16 / 10;
    }

    .work-item a {
        display: block;
        overflow: hidden;
    }

    .work-item img {
        display: block;
        width: 100%;
        aspect-ratio: var(--ar);
        object-fit: cover;
        transition: transform 1.1s var(--ease), opacity 0.5s var(--ease);
    }

    .work-item:hover img {
        transform: scale(1.05);
        opacity: 0.94;
    }

.w-5 { grid-column: span 5; }
.w-4 { grid-column: span 4; }
.w-3 { grid-column: span 3; }
.w-6 { grid-column: span 6; }
.w-7 { grid-column: span 7; }
.w-12 { grid-column: span 12; }

.work-offset {
    padding-top: clamp(2.5rem, 6vw, 5.5rem);
}

.work-caption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.8rem;
}

    .work-caption span {
        font-size: 0.62rem;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .work-caption i {
        font-style: normal;
        font-size: 0.62rem;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        color: var(--gold);
    }

.quote-block {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

    .quote-block .overline {
        justify-content: center;
    }

        .quote-block .overline::before {
            display: none;
        }

    .quote-block blockquote {
        font-family: var(--font-head);
        font-style: italic;
        font-weight: 300;
        font-size: clamp(1.6rem, 3.6vw, 2.7rem);
        line-height: 1.45;
        color: var(--text);
        margin: 2rem 0;
        text-wrap: balance;
    }

    .quote-block figcaption {
        font-size: 0.66rem;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold);
    }

.testimonials {
    display: grid;
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.testimonial {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), visibility 0.9s;
}

    .testimonial.active {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .testimonial .overline {
        justify-content: center;
    }

        .testimonial .overline::before {
            display: none;
        }

    .testimonial blockquote {
        font-family: var(--font-head);
        font-style: italic;
        font-weight: 300;
        font-size: clamp(1.6rem, 3.6vw, 2.7rem);
        line-height: 1.45;
        color: var(--text);
        margin: 2rem 0;
        text-wrap: balance;
    }

    .testimonial figcaption {
        font-size: 0.66rem;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold);
    }

.t-dots {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 2.2rem;
}

.t-dot {
    width: 28px;
    height: 2px;
    padding: 0;
    border: none;
    background: var(--line);
    cursor: pointer;
    transition: background 0.3s var(--ease), width 0.3s var(--ease);
}

    .t-dot:hover {
        background: var(--muted);
    }

    .t-dot.active {
        background: var(--gold);
        width: 40px;
    }

.insta-strip {
    padding-block: clamp(1rem, 3vw, 2.5rem) clamp(4rem, 8vw, 6.5rem);
}

.insta-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.9rem;
}

    .insta-grid a {
        position: relative;
        display: block;
        overflow: hidden;
        aspect-ratio: 1;
    }

        .insta-grid a::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(12, 12, 11, 0.45);
            opacity: 0;
            transition: opacity 0.4s var(--ease);
            z-index: 1;
        }

        .insta-grid a svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.6);
            opacity: 0;
            transition: all 0.4s var(--ease);
            z-index: 2;
            color: #fff;
        }

        .insta-grid a img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.9s var(--ease);
        }

        .insta-grid a:hover::before {
            opacity: 1;
        }

        .insta-grid a:hover svg {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .insta-grid a:hover img {
            transform: scale(1.07);
        }

.cat-cover {
    position: relative;
    min-height: 64vh;
    display: flex;
    align-items: flex-end;
    padding: calc(6.5rem + 3rem) 0 3.5rem;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.cat-cover-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 10, 9, 0.58) 0%, rgba(10, 10, 9, 0.24) 45%, rgba(255, 255, 255, 0.94) 96%, #ffffff 100%);
}

    .cat-cover .breadcrumb-nav a,
    .cat-cover .breadcrumb-nav .sep {
        color: rgba(253, 252, 250, 0.75);
    }

        .cat-cover .breadcrumb-nav a:hover {
            color: var(--gold-light);
        }

    .cat-cover .breadcrumb-nav .current {
        color: var(--gold-light);
    }

    .cat-cover h1 {
        margin: 1.4rem 0 0.9rem;
        font-size: clamp(2.4rem, 5vw, 3.8rem);
        text-transform: uppercase;
        font-weight: 300;
        color: #fdfcfa;
        text-shadow: 0 4px 34px rgba(0, 0, 0, 0.35);
    }

        .cat-cover h1 em {
            text-transform: lowercase;
        }

    .cat-cover p {
        max-width: 620px;
        color: rgba(253, 252, 250, 0.85);
    }

.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 6.5rem);
    align-items: center;
}

.about-media {
    position: relative;
}

    .about-media img {
        width: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .about-media::after {
        content: "";
        position: absolute;
        top: 1.4rem;
        left: 1.4rem;
        right: -1.4rem;
        bottom: -1.4rem;
        border: 1px solid var(--gold);
        opacity: 0.5;
        z-index: -1;
        transition: all 0.6s var(--ease);
    }

    .about-media:hover::after {
        top: 0.8rem;
        left: 0.8rem;
    }

.about-badge {
    position: absolute;
    bottom: -1.6rem;
    right: -1rem;
    background: var(--gold-light);
    color: var(--ink);
    border-radius: 999px;
    width: 132px;
    height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-head);
    line-height: 1.2;
}

    .about-badge strong {
        font-size: 1.9rem;
        font-weight: 400;
    }

    .about-badge span {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-family: var(--font-body);
    }

.about-body h2 {
    margin: 1.4rem 0 1.6rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin: 2.2rem 0 0;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
}

    .about-stats div strong {
        display: block;
        font-family: var(--font-head);
        font-weight: 400;
        font-size: 1.9rem;
        line-height: 1.1;
        color: var(--text);
    }

    .about-stats div span {
        font-size: 0.62rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
    }

.about-body .arrow-link,
.about-body .btn {
    margin-top: 2.4rem;
}

.about-sign {
    margin-top: 2rem;
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-top: 3rem;
    border: 1px solid var(--line);
}

.value-item {
    padding: 2.2rem 1.9rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    transition: background 0.4s var(--ease);
}

    .value-item:hover {
        background: var(--ivory);
    }

    .value-item h3 {
        font-size: 1.25rem;
        margin: 0.9rem 0 0.5rem;
    }

    .value-item p {
        font-size: 0.88rem;
        margin: 0;
    }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.info-card {
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 2.4rem 2rem;
    transition: all 0.4s var(--ease);
}

    .info-card:hover {
        border-color: var(--ink);
    }

    .info-card h3 {
        font-size: 1.3rem;
        margin: 1.1rem 0 0.7rem;
    }

    .info-card p, .info-card li {
        color: var(--muted);
        font-size: 0.92rem;
    }

    .info-card ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    color: var(--gold);
}

.wa-card {
    background: var(--ink);
    color: #f2efe9;
    padding: clamp(3rem, 6vw, 5rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
}

    .wa-card h2 {
        color: #f6f3ec;
        margin: 1rem 0 0.7rem;
    }

        .wa-card h2 em {
            color: var(--gold-light);
        }

    .wa-card p {
        color: rgba(242, 239, 233, 0.66);
        margin: 0;
        max-width: 460px;
    }

    .wa-card .overline {
        color: var(--gold-light);
    }

    .wa-card .btn-wa {
        white-space: nowrap;
    }

.wa-float {
    position: fixed;
    bottom: 1.6rem;
    right: 1.6rem;
    z-index: 1500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    box-shadow: 0 14px 34px -12px rgba(37, 211, 102, 0.55);
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

    .wa-float::before {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 1px solid rgba(37, 211, 102, 0.5);
        animation: waPulse 2.6s var(--ease) infinite;
    }

    .wa-float:hover {
        transform: translateY(-4px) scale(1.04);
        background: var(--wa-dark);
        color: #fff;
    }

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

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.page-hero {
    padding: calc(6.5rem + 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
}

    .page-hero h1 {
        font-size: clamp(2.4rem, 5vw, 3.8rem);
        margin: 1.4rem 0 0.9rem;
        text-transform: uppercase;
        font-weight: 300;
    }

        .page-hero h1 em {
            text-transform: lowercase;
        }

    .page-hero p {
        max-width: 620px;
        font-size: 1rem;
    }

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

    .breadcrumb-nav a {
        color: var(--muted);
    }

        .breadcrumb-nav a:hover {
            color: var(--accent);
        }

    .breadcrumb-nav .sep {
        opacity: 0.5;
    }

    .breadcrumb-nav .current {
        color: var(--gold);
    }

.masonry {
    columns: 3;
    column-gap: 1.1rem;
}

.g-item {
    position: relative;
    display: block;
    margin: 0 0 1.1rem;
    break-inside: avoid;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--ivory);
}

    .g-item img {
        display: block;
        width: 100%;
        transition: transform 1s var(--ease), opacity 0.5s var(--ease);
    }

    .g-item:hover img {
        transform: scale(1.04);
        opacity: 0.94;
    }

    .g-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(12, 12, 11, 0.5));
        opacity: 0;
        transition: opacity 0.45s var(--ease);
        pointer-events: none;
    }

    .g-item:hover::after {
        opacity: 1;
    }

.g-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2rem 1.1rem 0.9rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.45s var(--ease);
    z-index: 1;
}

    .g-item:hover .g-caption {
        opacity: 1;
        transform: none;
    }

.g-caption span {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #f4f2ec;
}

.g-caption i {
    font-style: normal;
    font-size: 0.9rem;
    color: #f4f2ec;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 2.6rem;
    border-bottom: 1px solid var(--line);
}

.filter-btn {
    padding: 0.8rem 1.4rem;
    border: none;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    background: transparent;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

    .filter-btn:hover {
        color: var(--accent);
    }

    .filter-btn.active {
        color: var(--text);
        border-bottom-color: var(--accent);
    }

.g-item.is-hidden {
    display: none;
}

.map-wrap {
    border: 1px solid var(--line);
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

    .map-wrap iframe {
        display: block;
        width: 100%;
        height: 420px;
        border: 0;
        filter: grayscale(1);
    }

.site-footer {
    background: var(--ink);
    color: rgba(242, 239, 233, 0.72);
    padding: clamp(4rem, 7vw, 6rem) 0 2rem;
    margin-top: 0;
}

    .site-footer h3 {
        color: #f2efe9;
    }

.footer-brand img {
    height: 48px;
    width: auto;
}

.footer-desc {
    margin: 1.5rem 0 1.7rem;
    font-size: 0.9rem;
    max-width: 340px;
    color: rgba(242, 239, 233, 0.55);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(242, 239, 233, 0.22);
        color: #f2efe9;
    }

        .footer-social a:hover {
            border-color: var(--gold-light);
            color: var(--gold-light);
        }

.footer-title {
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.6rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .footer-links a {
        color: rgba(242, 239, 233, 0.7);
        font-size: 0.92rem;
    }

        .footer-links a:hover {
            color: var(--gold-light);
            padding-left: 4px;
        }

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

    .footer-contact li {
        display: flex;
        gap: 0.75rem;
        align-items: flex-start;
        color: rgba(242, 239, 233, 0.7);
        font-size: 0.92rem;
    }

    .footer-contact svg {
        flex-shrink: 0;
        margin-top: 4px;
        color: var(--gold-light);
    }

    .footer-contact a {
        color: rgba(242, 239, 233, 0.7);
    }

        .footer-contact a:hover {
            color: var(--gold-light);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid rgba(242, 239, 233, 0.14);
    margin-top: 3rem;
    padding-top: 1.8rem;
}

    .footer-bottom p {
        font-size: 0.78rem;
        margin: 0;
        color: rgba(242, 239, 233, 0.45);
    }

.error-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
}

.error-code {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: clamp(6rem, 16vw, 11rem);
    line-height: 1;
    color: var(--gold);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

    [data-reveal].revealed {
        opacity: 1;
        transform: none;
    }

[data-reveal="clip"] {
    opacity: 1;
    transform: none;
    clip-path: inset(6% 5% 6% 5%);
    transition: clip-path 1.3s var(--ease);
}

    [data-reveal="clip"].revealed {
        clip-path: inset(0 0 0 0);
    }

[data-reveal="left"] {
    transform: translateX(-30px);
}

[data-reveal="right"] {
    transform: translateX(30px);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 9, 0.96);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

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

.lightbox-img {
    max-width: min(92vw, 1300px);
    max-height: 82vh;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(244, 242, 236, 0.7);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    white-space: nowrap;
}

.lightbox-counter {
    position: absolute;
    top: 1.6rem;
    left: 1.8rem;
    color: rgba(244, 242, 236, 0.7);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(244, 242, 236, 0.25);
    border-radius: 0;
    background: transparent;
    color: #f4f2ec;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

    .lightbox-close:hover,
    .lightbox-prev:hover,
    .lightbox-next:hover {
        border-color: var(--gold-light);
        color: var(--gold-light);
    }

.lightbox-close { top: 1.4rem; right: 1.6rem; }
.lightbox-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 991.98px) {
    .about-teaser {
        grid-template-columns: 1fr;
    }

    .masonry {
        columns: 2;
    }

    .about-media {
        max-width: 480px;
    }

    .wa-card {
        grid-template-columns: 1fr;
    }

    .works-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .w-5 { grid-column: span 3; }
    .w-4 { grid-column: span 3; }
    .w-3 { grid-column: span 3; }
    .w-6 { grid-column: span 6; }
    .w-7 { grid-column: span 6; }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

        .insta-grid a:nth-child(n+4) {
            display: none;
        }

    .work-offset {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .masonry {
        columns: 1;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .insta-grid a:nth-child(5) {
            display: none;
        }

    .footer-bottom {
        flex-direction: column;
    }

    .hero-content {
        padding-top: 7rem;
    }

    .hero-frame {
        aspect-ratio: 4 / 5;
    }

    .lightbox-prev { left: 0.6rem; }
    .lightbox-next { right: 0.6rem; }

    .wa-float {
        width: 52px;
        height: 52px;
        bottom: 1.1rem;
        right: 1.1rem;
    }

    .about-badge {
        right: 0.8rem;
        width: 110px;
        height: 110px;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .w-5, .w-4, .w-3, .w-6, .w-7 {
        grid-column: span 1;
    }

    .cat-row {
        grid-template-columns: 2.6rem 1fr auto;
        gap: 0.8rem;
    }

    .cat-meta span {
        display: none;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-slide {
        opacity: 0;
    }

    .hero-slide:first-child {
        opacity: 1;
    }

    [data-reveal],
    [data-reveal="clip"] {
        opacity: 1;
        transform: none;
        clip-path: none;
    }

    .line-mask > span {
        transform: none;
    }
}
