:root {
    --bg: #0d0d0d;
    --bg-soft: #151515;
    --panel: #191919;
    --panel-2: #202020;
    --gold: #b98255;
    --gold-light: #d09a6a;
    --white: #f4f2ef;
    --muted: #aaa6a2;
    --line: rgba(185,130,85,.32);
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    width: min(var(--max), calc(100% - 64px));
    margin: 0 auto;
}


/* =========================
   HEADER
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13,13,13,.96);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
}

.nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-w {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: .75;
    font-weight: 400;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    letter-spacing: 2px;
}

.brand-text strong {
    font-size: 13px;
    font-weight: 700;
}

.brand-text small {
    margin-top: 6px;
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 2.2px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.5vw, 38px);
}

.main-nav a,
.site-footer nav a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #d0ceca;
    transition: color .25s ease;
}

.main-nav a:hover,
.site-footer nav a:hover {
    color: var(--gold-light);
}

.nav-phone {
    border: 1px solid var(--gold);
    padding: 12px 17px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}


/* =========================
   HERO
   ========================= */

.hero {
    min-height: 680px;
    background:
        linear-gradient(
            90deg,
            rgba(13,13,13,.98) 0%,
            rgba(13,13,13,.94) 42%,
            rgba(13,13,13,.15) 70%
        ),
        #0d0d0d;
}

.hero-content {
    min-height: 680px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 55px 80px 15px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 5vw, 70px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero h1 span {
    font-weight: 300;
}

.hero-copy > p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 24px 0 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0 22px;
    border: 1px solid var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all .25s ease;
}

.btn-primary {
    background: var(--gold);
    color: #fff;
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: #fff;
}

.btn-outline:hover {
    background: var(--gold);
}

.scroll-down {
    margin-top: 50px;
    width: max-content;
    border-left: 1px solid var(--gold);
    padding-left: 13px;
    color: #8f8b87;
    font-size: 9px;
    letter-spacing: 1px;
}

.scroll-down b {
    display: block;
    color: var(--gold);
    font-size: 18px;
    line-height: 1;
}

.hero-image {
    min-height: 680px;
    position: relative;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 18%);
    pointer-events: none;
}


/* =========================
   SECTIONS
   ========================= */

.section {
    padding: 95px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(29px, 3.4vw, 43px);
    font-weight: 300;
    letter-spacing: -1px;
}

.section-heading h2 span,
.about h2 span {
    color: var(--gold-light);
    font-weight: 500;
}


/* =========================
   SERVICES
   ========================= */

.services {
    background: linear-gradient(180deg, #101010, #151515);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.service-card {
    min-height: 210px;
    padding: 28px 18px;
    text-align: center;
    background: var(--panel);
    border: 1px solid rgba(255,255,255,.035);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--line);
    background: var(--panel-2);
}

.service-icon {
    color: var(--gold);
    font-size: 34px;
    line-height: 1;
    height: 45px;
}

.service-card h3 {
    font-size: 13px;
    letter-spacing: .8px;
    line-height: 1.3;
    margin: 15px 0 10px;
}

.service-card p {
    color: #999590;
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
}


/* =========================
   PORTFOLIO
   ========================= */

.portfolio {
    background: #101010;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.gallery-item {
    height: 235px;
    overflow: hidden;
    background: #222;
    position: relative;
}

.gallery-item::after {
    content: "ZOBACZ";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity .25s ease;
}

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

.gallery-item img {
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.center {
    text-align: center;
    margin-top: 30px;
}


/* =========================
   ABOUT
   ========================= */

.about {
    background: #141414;
}

.about-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    background: #171717;
}

.about-photo {
    min-height: 500px;
}

.about-copy {
    padding: 55px 55px 45px;
}

.about h2 {
    margin: 0 0 20px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 300;
}

.about-copy > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 35px;
}

.value {
    background: #202020;
    padding: 20px 13px;
    text-align: center;
}

.value > b {
    color: var(--gold);
    font-size: 27px;
    font-weight: 400;
}

.value h3 {
    margin: 9px 0 6px;
    font-size: 11px;
    letter-spacing: .6px;
}

.value p {
    color: #898581;
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
}


/* =========================
   PROCESS
   ========================= */

.process {
    background: #101010;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step {
    flex: 1;
    text-align: center;
    max-width: 220px;
}

.step-number {
    color: var(--gold);
    font-size: 10px;
    margin-bottom: 4px;
}

.step-icon {
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    color: var(--gold-light);
    font-size: 19px;
}

.process-step h3 {
    margin: 0 0 7px;
    font-size: 12px;
    letter-spacing: 1px;
}

.process-step p {
    color: #88847f;
    font-size: 11px;
    line-height: 1.65;
    margin: 0;
}

.process-line {
    width: 70px;
    height: 1px;
    background: var(--gold);
    opacity: .65;
}


/* =========================
   CONTACT
   ========================= */

.contact-cta {
    padding: 35px 0;
    background: #101010;
}

.contact-box {
    min-height: 330px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #171717;
    border: 1px solid rgba(255,255,255,.07);
}

.contact-copy {
    padding: 50px 45px;
}

.contact-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 37px);
    font-weight: 400;
    line-height: 1.15;
}

.contact-copy > p {
    color: #96928d;
    font-size: 12px;
    margin: 0 0 18px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.contact-details a,
.contact-details span {
    color: #c2beb9;
    font-size: 12px;
}

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

.contact-image {
    min-height: 330px;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
    padding: 30px 0;
    background: #0b0b0b;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
}

.site-footer nav {
    display: flex;
    gap: 25px;
}

.copyright {
    text-align: right;
    color: #68645f;
    font-size: 10px;
    line-height: 1.6;
}


/* =========================
   LIGHTBOX
   ========================= */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox button {
    position: absolute;
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    font-size: 50px;
    line-height: 1;
    z-index: 10000;
}

.lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 45px !important;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox button:hover {
    opacity: 0.7;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 10px;
    }

    .nav-phone {
        display: none;
    }

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

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

    .about-photo {
        min-height: 420px;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 760px) {

    .container {
        width: min(100% - 32px, var(--max));
    }

    .site-header {
        position: relative;
    }

    .nav {
        min-height: auto;
        padding: 15px 0;
        flex-wrap: wrap;
    }

    .brand-w {
        font-size: 48px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 3px;
        gap: 22px;
    }

    .main-nav a {
        white-space: nowrap;
        font-size: 10px;
    }

    .hero,
    .hero-content {
        min-height: auto;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-copy {
        min-height: 520px;
        padding: 70px 0 45px;
    }

    .hero h1 {
        font-size: clamp(39px, 12vw, 60px);
    }

    .hero-copy > p {
        font-size: 15px;
    }

    .hero-image {
        min-height: 360px;
    }

    .hero-image::after {
        background: linear-gradient(
            180deg,
            var(--bg) 0%,
            transparent 20%
        );
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

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

    .service-card {
        min-height: 200px;
    }

    .service-card h3 {
        font-size: 13px;
    }

    .service-card p {
        font-size: 12px;
    }

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

    .gallery-item {
        height: 180px;
    }

    .about-copy {
        padding: 40px 25px;
    }

    .about-copy > p {
        font-size: 14px;
    }

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

    .value h3 {
        font-size: 11px;
    }

    .value p {
        font-size: 11px;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
    }

    .process-line {
        display: none;
    }

    .process-step p {
        font-size: 11px;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-image {
        min-height: 270px;
        order: -1;
    }

    .contact-copy {
        padding: 40px 25px;
    }

    .contact-copy > p {
        font-size: 13px;
    }

    .contact-details a,
    .contact-details span {
        font-size: 12px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer .brand {
        justify-content: center;
    }

    .site-footer nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .copyright {
        text-align: center;
        font-size: 10px;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 85vh;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox button {
        font-size: 35px;
    }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 450px) {

    .services-grid,
    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .hero-copy {
        min-height: 500px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .service-card {
        min-height: 185px;
    }

    .section-heading h2 {
        font-size: 30px;
    }
}