:root {
    color-scheme: dark;
    --bg: #0f0f0f;
    --bg-soft: #1a1a1a;
    --bg-card: #181818;
    --accent: #ff6a00;
    --accent-strong: #ff7d1f;
    --text: #ffffff;
    --muted: #b0b0b0;
    --line: rgba(255, 255, 255, .12);
    --shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
        outline: 3px solid rgba(255, 106, 0, .8);
        outline-offset: 3px;
    }

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
}

h1 {
    font-size: clamp(3rem, 12vw, 7.75rem);
    max-width: 10ch;
    margin-bottom: 1.25rem;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2rem, 7vw, 4.25rem);
    margin-bottom: 1rem;
    letter-spacing: 0;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: .75rem;
}

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

.site-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(rgba(15, 15, 15, .97), rgba(15, 15, 15, .97)),
        var(--brand-watermark-url) center center / min(92vw, 1180px) auto no-repeat,
        rgba(15, 15, 15, .88);
    backdrop-filter: blur(18px);
    transform: translateY(0);
    transition: transform .2s ease;
}

    .site-header.is-hidden {
        transform: translateY(-100%);
    }

.nav-container,
.section-container {
    width: min(100% - 2rem, 1180px);
    margin-inline: auto;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 96px;
    gap: 1rem;
}

.mobile-menu-button {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--text);
}

    .mobile-menu-button span {
        display: block;
        width: 22px;
        height: 2px;
        margin: -7px 0;
        background: var(--text);
    }

.nav-links {
    position: fixed;
    inset: 96px 0 auto;
    display: none;
    min-height: calc(100vh - 96px);
    padding: 2rem;
    background: rgba(15, 15, 15, .98);
}


.nav-links.is-open {
    display: grid;
    align-content: start;
    gap: 1.25rem;
}

.nav-links a {
    color: var(--muted);
    font-weight: 700;
}

    .nav-links a.active,
    .nav-links a:hover {
        color: var(--text);
    }

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .85rem 1.15rem;
    border: 1px solid transparent;
    font-weight: 800;
}

.nav-cta,
.btn-primary {
    background: var(--accent);
    color: #111111 !important;
}

    .btn-primary:hover {
        background: var(--accent-strong);
    }

.btn-secondary {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
    color: var(--text);
}

.hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - 76px);
    isolation: isolate;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -2;
    background: linear-gradient(115deg, rgba(15, 15, 15, .38), rgba(15, 15, 15, .9)), url("/images/hero-construction.svg") center / cover no-repeat;
}

.hero-overlay {
    z-index: -1;
    background: linear-gradient(0deg, var(--bg), rgba(15, 15, 15, .08) 42%, rgba(15, 15, 15, .55));
}

.hero-content {
    display: grid;
    align-content: center;
    padding: 4rem 0 7rem;
}

.hero-logo {
    width: min(100%, 760px);
    height: auto;
    margin: 0 0 1.5rem;
}

    .hero-content > p:not(.eyebrow),
    .page-hero p {
        max-width: 690px;
        font-size: clamp(1.05rem, 3vw, 1.35rem);
    }

.hero-actions,
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.eyebrow {
    margin-bottom: .85rem;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.section,
.page-hero,
.cta-section {
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.page-hero {
    background: linear-gradient(135deg, rgba(255, 106, 0, .12), transparent 38%), var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

    .page-hero h1 {
        max-width: 13ch;
        font-size: clamp(2.75rem, 9vw, 6.5rem);
    }

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

.section-header {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.service-grid,
.project-grid,
.testimonial-grid,
.feature-grid,
.footer-grid,
.contact-layout,
.split-section,
.form-grid {
    display: grid;
    gap: 1rem;
}

.form-grid-full {
    grid-column: 1 / -1;
}

    .service-card,
    .project-card,
    .testimonial-card,
    .form-card,
    .contact-panel,
    .stats-panel,
    .feature-grid > div {
        border: 1px solid var(--line);
        background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
        box-shadow: var(--shadow);
    }

.service-card,
.project-card {
    overflow: hidden;
}

    .service-card img,
    .project-card img,
    .gallery-item img {
        width: 100%;
        aspect-ratio: 16 / 11;
        object-fit: cover;
        background: #222222;
    }

.project-card-media {
    position: relative;
    overflow: hidden;
    background: #111111;
    aspect-ratio: 16 / 11;
}

.project-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.project-card-play-hint {
    position: absolute;
    inset: auto auto 0 0;
    padding: .4rem .75rem;
    background: rgba(0, 0, 0, .6);
    color: var(--text);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    pointer-events: none;
    transition: opacity .2s ease;
}

.project-card:hover .project-card-play-hint {
    opacity: 0;
}

    .service-card > div,
    .testimonial-card,
    .form-card,
    .contact-panel,
    .stats-panel,
    .feature-grid > div {
        padding: 1.25rem;
    }

.card-icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    place-items: center;
    background: rgba(255, 106, 0, .14);
    color: var(--accent);
    font-weight: 900;
}

.service-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem .75rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.service-card li,
.project-meta,
.form-note {
    color: var(--muted);
    font-size: .92rem;
}

    .service-card li::before {
        content: "";
        display: inline-block;
        width: 7px;
        height: 7px;
        margin-right: .45rem;
        background: var(--accent);
    }

.project-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

    .project-meta span {
        color: var(--accent);
        font-weight: 900;
    }

.split-section {
    align-items: start;
}

.feature-grid > div,
.stats-panel > div {
    display: grid;
    gap: .4rem;
}

.feature-grid strong,
.stats-panel strong {
    font-size: 1.1rem;
}

.feature-grid span,
.stats-panel span,
.testimonial-card figcaption span {
    color: var(--muted);
}

.testimonial-card {
    margin: 0;
    display: grid;
    align-content: start;
    gap: 0;
}

.testimonial-quote {
    margin: 0 0 1.25rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .testimonial-card figcaption {
        display: grid;
        margin-top: auto;
        padding-top: .85rem;
        border-top: 1px solid var(--line);
    }

/* ── Testimonial Carousel ─────────────────────────────────────────────── */

.tc-shell {
    display: grid;
    gap: 1.5rem;
    max-width: 780px;
    margin-inline: auto;
}

.tc-stage {
    position: relative;
    min-height: 220px;
}

.tc-card {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 2rem 2.25rem;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
    box-shadow: var(--shadow);
    animation: tc-fadein .45s ease both;
}

@keyframes tc-fadein {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tc-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.tc-quote {
    margin: 0;
    color: var(--text);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.7;
    font-style: italic;
}

.tc-author {
    display: grid;
    gap: .2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

    .tc-author strong {
        color: var(--text);
        font-size: .97rem;
    }

    .tc-author span {
        color: var(--muted);
        font-size: .85rem;
    }

.tc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tc-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
    flex-shrink: 0;
}

    .tc-arrow:hover {
        border-color: var(--accent);
        background: var(--accent);
        color: #111111;
    }

.tc-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .45rem;
}

.tc-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.tc-dot-active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.35);
}

/* ── End Testimonial Carousel ─────────────────────────────────────────── */

/* ── Gallery Carousel ─────────────────────────────────────────────────── */

.gc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
}

.gc-tab {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

    .gc-tab:hover {
        border-color: rgba(255, 106, 0, .4);
        color: var(--text);
    }

.gc-tab-active {
    border-color: var(--accent);
    background: rgba(255, 106, 0, .1);
    color: var(--text);
}

.gc-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 18px;
    padding: 0 .35rem;
    background: rgba(255, 255, 255, .1);
    color: var(--muted);
    font-size: .75rem;
    font-weight: 900;
    border-radius: 999px;
}

.gc-tab-active .gc-tab-count {
    background: rgba(255, 106, 0, .25);
    color: var(--accent);
}

.gc-shell {
    display: grid;
    gap: 1rem;
}

.gc-stage {
    position: relative;
    overflow: hidden;
    background: #111111;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 9;
    max-height: 72vh;
}

.gc-frame {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    animation: gc-fadein .4s ease both;
}

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

@keyframes gc-fadein {
    from {
        opacity: 0;
        transform: scale(1.03);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gc-zoom-hint {
    position: absolute;
    top: .75rem;
    right: .75rem;
    padding: .3rem .65rem;
    background: rgba(0, 0, 0, .6);
    color: var(--text);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
}

.gc-frame:hover .gc-zoom-hint {
    opacity: 1;
}

.gc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(0, 0, 0, .55);
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background .18s ease, border-color .18s ease;
}

    .gc-arrow:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: #111111;
    }

.gc-arrow-left {
    left: .75rem;
}

.gc-arrow-right {
    right: .75rem;
}

.gc-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .45rem;
}

.gc-prefetch {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.gc-loading,
.gc-empty {
    color: var(--muted);
    padding: 2rem 0;
}

/* ── End Gallery Carousel ─────────────────────────────────────────────── */

.cta-section {
    background: linear-gradient(135deg, rgba(255, 106, 0, .22), transparent 45%), #111111;
}

.cta-inner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.gallery-grid {
    columns: 1;
    column-gap: 1rem;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    break-inside: avoid;
}

    .gallery-item:nth-child(2n) img {
        aspect-ratio: 4 / 5;
    }

    .gallery-item span {
        position: absolute;
        left: .85rem;
        bottom: .85rem;
        padding: .35rem .65rem;
        background: rgba(15, 15, 15, .82);
        color: var(--text);
        font-size: .8rem;
        font-weight: 800;
    }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, .9);
}

    .lightbox img {
        max-height: 82vh;
        border: 1px solid var(--line);
    }

.lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    min-height: 44px;
    border: 1px solid var(--line);
    background: var(--accent);
    color: #111111;
    font-weight: 900;
}

.narrow-container {
    max-width: 920px;
}

.form-card {
    display: grid;
    gap: 1rem;
}

label {
    display: grid;
    gap: .45rem;
    color: var(--text);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: #101010;
    color: var(--text);
    padding: .8rem .9rem;
}

textarea {
    resize: vertical;
}

.validation-message,
.validation-summary-errors {
    color: #ff9b68;
}

.quote-form {
    display: grid;
    gap: 1rem;
}

.form-note {
    margin: 0;
    color: var(--muted);
}

.status-message {
    padding: .85rem 1rem;
    border: 1px solid var(--line);
    font-weight: 700;
}

.status-success {
    border-color: rgba(72, 187, 120, .45);
    background: rgba(72, 187, 120, .12);
    color: #b9f6ca;
}

.status-error {
    border-color: rgba(245, 101, 101, .45);
    background: rgba(245, 101, 101, .12);
    color: #ffc4c4;
}

.button-spinner {
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
    border: 2px solid rgba(17, 17, 17, .25);
    border-top-color: #111111;
    border-radius: 999px;
    animation: button-spin .75s linear infinite;
}

@keyframes button-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-panel {
    display: grid;
    gap: 1rem;
    align-content: start;
}

    .contact-panel a,
    .footer a {
        color: var(--muted);
    }

        .contact-panel a:hover,
        .footer a:hover {
            color: var(--accent);
        }

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: .75rem 1rem;
        border: 1px solid rgba(255, 106, 0, .35);
        background: linear-gradient(180deg, rgba(255, 106, 0, .16), rgba(255, 255, 255, .04));
        color: #ffffff;
        font-weight: 800;
        letter-spacing: .02em;
        transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
    }

        .social-links a:hover {
            color: #111111;
            border-color: rgba(255, 106, 0, .9);
            background: var(--accent);
            box-shadow: 0 10px 24px rgba(255, 106, 0, .22);
            transform: translateY(-1px);
        }

.map-placeholder {
    display: grid;
    min-height: 260px;
    place-items: center;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), #121212;
    background-size: 36px 36px;
    color: var(--muted);
    font-weight: 900;
}

.stats-panel {
    display: grid;
    gap: 1rem;
}

    .stats-panel strong {
        color: var(--accent);
        font-size: 2.5rem;
    }

.footer {
    border-top: 1px solid var(--line);
    background:
        linear-gradient(rgba(9, 9, 9, .98), rgba(9, 9, 9, .98)),
        var(--brand-watermark-url) center 2rem / min(92vw, 1180px) auto no-repeat,
        #090909;
    padding-top: 3rem;
}

    .footer h2 {
        font-size: 1rem;
    }

.footer-grid {
    gap: 2rem;
}

    .footer-grid > div {
        display: grid;
        align-content: start;
        gap: .7rem;
    }

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
    font-size: .9rem;
}

.success-hero {
    min-height: 68vh;
    display: grid;
    align-items: center;
}

/* ── Service Gallery ──────────────────────────────────────────────────── */

.sg-grid {
    display: grid;
    gap: 1.25rem;
}

.sg-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
    box-shadow: var(--shadow);
    color: var(--text);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    cursor: pointer;
}

    .sg-card:hover,
    .sg-card:focus-visible {
        transform: translateY(-5px);
        box-shadow: 0 32px 72px rgba(0, 0, 0, .58);
        border-color: rgba(255, 106, 0, .5);
    }

/* Image container — clips zoom and overlay */
.sg-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #1a1a1a;
}

    .sg-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .38s ease;
    }

    .sg-card:hover .sg-card-image img,
    .sg-card:focus-visible .sg-card-image img {
        transform: scale(1.09);
    }

.sg-card-image-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(255, 106, 0, .1), transparent 55%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .03) 0px, rgba(255, 255, 255, .03) 1px, transparent 1px, transparent 18px),
        #1a1a1a;
}

/* CTA overlay — slides up from the bottom of the image on hover */
.sg-card-overlay {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: .9rem 1rem;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform .28s ease;
}

    .sg-card-overlay span {
        color: #111111;
        font-weight: 900;
        font-size: .95rem;
        letter-spacing: .03em;
        text-transform: uppercase;
    }

    .sg-card:hover .sg-card-overlay,
    .sg-card:focus-visible .sg-card-overlay {
        transform: translateY(0);
    }

/* Text body — no CTA button here */
.sg-card-body {
    display: grid;
    gap: .55rem;
    align-content: start;
    padding: 1.15rem 1.25rem 1.35rem;
}

    .sg-card-body h3 {
        margin: 0;
        font-size: 1.15rem;
        color: var(--text);
    }

    .sg-card-body p {
        margin: 0;
        font-size: .93rem;
        color: var(--muted);
        line-height: 1.5;
    }

/* ── End Service Gallery ──────────────────────────────────────────────── */

#blazor-error-ui {
    display: none;
    position: fixed;
    inset: auto 0 0;
    z-index: 1000;
    padding: 1rem 3rem 1rem 1rem;
    background: #b32121;
    color: #ffffff;
}

    #blazor-error-ui .dismiss {
        position: absolute;
        right: 1rem;
        top: .75rem;
        cursor: pointer;
    }

@media (min-width: 640px) {
    .service-grid,
    .project-grid,
    .testimonial-grid,
    .feature-grid,
    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gallery-grid {
        columns: 2;
    }
}

@media (min-width: 900px) {
    .mobile-menu-button {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        align-items: center;
        min-height: 0;
        padding: 0;
        background: transparent;
        gap: 1.25rem;
    }

    .service-grid,
    .project-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .split-section,
    .contact-layout,
    .cta-inner {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    }

    .gallery-grid {
        columns: 3;
    }
}

@media (min-width: 1200px) {
    .sg-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: no-preference) {
    .btn,
    .project-card,
    .service-card,
    .gallery-item,
    .sg-card {
        transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .2s ease;
    }

        .btn:hover,
        .project-card:hover,
        .service-card:hover,
        .gallery-item:hover,
        .sg-card:hover {
            transform: translateY(-3px);
        }

    .sg-card-image img {
        transition: transform .38s ease;
    }

    .sg-card-overlay {
        transition: transform .28s ease;
    }
}
