:root {
    --bg: #080808;
    --bg2: #101010;
    --card: #171717;
    --line: rgba(255, 255, 255, .1);
    --text: #f7f0e5;
    --muted: #b8afa3;
    --soft: #82786b;
    --gold: #d8a847;
    --gold2: #8b6422;
    --shadow: 0 24px 80px rgba(0, 0, 0, .42);
    --radius: 28px;
    --container: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

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

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 0%, rgba(216, 168, 71, .14), transparent 34%), radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .07), transparent 32%), linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 45%);
    z-index: -2
}

body:after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2260%22 height=%2260%22 viewBox=%220 0 60 60%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%22.9%22 numOctaves=%222%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%2260%22 height=%2260%22 filter=%22url(%23n)%22 opacity=%22.12%22/%3E%3C/svg%3E');
    opacity: .45;
    z-index: -1;
    pointer-events: none
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto
}

.section-pad {
    padding: 96px 0
}

main.service .section-pad {
    padding-top: 40px !important;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(8, 8, 8, .76);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line)
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center
}

.brand img {
    width: 112px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 22px rgba(216, 168, 71, .14))
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 10px 16px;
    border-radius: 999px;
    transition: .25s
}

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

.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 22px
}

.hero {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding-top: 72px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr .84fr;
    gap: 70px;
    align-items: center
}

.eyebrow {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .17em;
    font-size: 12px;
    margin: 0 0 16px
}

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

h1,
h2 {
    font-family: Outfit, Inter, system-ui, sans-serif;
    line-height: 1.04;
    letter-spacing: -.035em
}

h1 {
    font-size: clamp(42px, 6vw, 60px);
    margin-bottom: 24px
}

h2 {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 18px
}

h3 {
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 10px
}

.hero-text,
.lead,
.page-hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 680px
}

.service .page-hero p{
    max-width: 1180px;
    padding: 0 20px;
    margin-top: 40px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 34px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: .25s
}

.btn.primary {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111;
    box-shadow: 0 18px 40px rgba(216, 168, 71, .18)
}

.btn.secondary {
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, .05)
}

.btn:hover {
    transform: translateY(-2px)
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
    max-width: 620px
}

.stats div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .045)
}

.stats strong {
    display: block;
    font-size: 26px;
    line-height: 1;
    color: var(--text)
}

.stats span {
    font-size: 13px;
    color: var(--soft)
}

.hero-card {
    position: relative;
    border: 1px solid rgba(216, 168, 71, .28);
    border-radius: var(--radius);
    padding: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
    box-shadow: var(--shadow)
}

.hero-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
    display: block
}

.floating-card {
    position: absolute;
    left: -30px;
    bottom: 36px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(8, 8, 8, .82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(216, 168, 71, .32);
    box-shadow: var(--shadow)
}

.floating-card span {
    display: block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em
}

.floating-card strong {
    font-size: 19px
}

.soft-bg {
    background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
    border-block: 1px solid var(--line)
}

.split {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 60px;
    align-items: start
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px
}

.section-head h2 {
    max-width: 720px
}

.section-head a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 800
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.service-card,
.process-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
    transition: .25s
}

.service-card:hover,
.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 168, 71, .42)
}

.service-card span,
.wide-service span {
    color: var(--gold);
    font-weight: 900;
    font-size: 13px
}

.service-card p,
.process-card p,
.wide-service p,
.footer p {
    color: var(--muted)
}

.project-band {
    padding-top: 72px
}

.project-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 60px;
    align-items: center
}

.project-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line)
}

.check-list {
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
    display: grid;
    gap: 14px
}

.check-list li {
    color: var(--muted);
    padding-left: 34px;
    position: relative
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(216, 168, 71, .18);
    color: var(--gold);
    font-weight: 900;
    font-size: 13px
}

.cta-box {
    text-align: center;
    border: 1px solid rgba(216, 168, 71, .25);
    border-radius: 32px;
    padding: 58px 34px;
    background: radial-gradient(circle at 50% 0, rgba(216, 168, 71, .18), transparent 38%), linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    box-shadow: var(--shadow)
}

.cta-box h2 {
    max-width: 780px;
    margin-inline: auto
}

.footer {
    padding: 54px 0;
    border-top: 1px solid var(--line);
    background: #070707
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr .7fr;
    gap: 42px
}

.footer img {
    width: 120px
}

.footer strong {
    display: block;
    margin-bottom: 12px
}

.footer a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin: 8px 0
}

.page-hero {
    text-align: center;
    padding: 0 !important;
    padding-top: 40px !important;
}

.service .page-hero.section-pad{
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px !important;
}
.narrow {
    max-width: 880px
}

.narrow p {
    margin-inline: auto
}

.service-list {
    display: grid;
    gap: 26px
}

.wide-service {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: center;
    padding: 22px;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    box-shadow: 0 20px 70px rgba(0, 0, 0, .24)
}

.wide-service img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 22px
}

.wide-service ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none
}

.wide-service li {
    font-size: 14px;
    color: var(--muted);
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    display: flex;
    justify-content: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.process-card strong {
    color: var(--gold)
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

#process .eyebrow{
    margin-bottom: 0;
}
@media (max-width:980px) {
    .section-pad {
        padding: 72px 0
    }

    .hero-grid,
    .split,
    .project-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-card img {
        height: 420px
    }

    .floating-card {
        left: 22px
    }

    .wide-service {
        grid-template-columns: 1fr
    }

    .wide-service img {
        height: 320px
    }

    .wide-service ul {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:720px) {
    .container {
        width: min(100% - 28px, var(--container))
    }

    .nav {
        height: 72px
    }

    .brand img {
        width: 88px
    }

    .nav-toggle {
        display: block
    }

    .nav-links {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 22px;
        background: rgba(12, 12, 12, .98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow)
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        text-align: center
    }

    .hero {
        min-height: auto;
        padding-top: 54px
    }

    .hero-card img {
        height: 300px
    }

    h1 {
        font-size: 41px
    }

    .hero-text,
    .lead,
    .page-hero p {
        font-size: 16px
    }

    .stats,
    .service-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .section-head {
        display: block
    }

    .wide-service {
        padding: 14px
    }

    .wide-service img {
        height: 240px
    }

    .wide-service ul {
        grid-template-columns: 1fr
    }

    .cta-box {
        padding: 42px 22px
    }

    .footer {
        padding-bottom: 32px
    }
}
.service-thumb {
    width: calc(100% + 56px);
    height: 170px;
    margin: -28px -28px 22px;
    object-fit: cover;
    border-radius: 24px 24px 16px 16px;
    display: block;
    filter: saturate(1.05) contrast(1.05);
}
.service-card {
    overflow: hidden;
}
.service-card h3 {
    margin-top: 8px;
}
.wide-service img, .project-image img, .hero-card img {
    filter: saturate(1.06) contrast(1.06);
}
