
:root {
    --bg: #0e0e10;
    --bg-center: #0a0a0c;
    --bg-mid: #0c0c0e;
    --bg-accent: rgba(192, 192, 192, 0.1);
    --bg-gradient-1: rgba(192, 192, 192, 0.08);
    --bg-gradient-2: rgba(192, 192, 192, 0.06);
    --ink: #fff;
    --muted: #b7b7b2;
    --accent: #c0c0c0;
    --accent-light: #d4d4d4;
    --accent-lighter: #e8e8e8;
    --accent-lightest: #f0f0f0;
    --accent-dark: #a8a8a8;
    --accent-rgba: rgba(192, 192, 192, 0.3);
    --accent-rgba-light: rgba(192, 192, 192, 0.15);
    --accent-rgba-hover: rgba(192, 192, 192, 0.4);
    --card-bg: #141416;
    --card-bg-light: #1a1a1f;
    --card-bg-lighter: #1f1f24;
    --border: rgba(255, 255, 255, .08);
    --border-light: rgba(255, 255, 255, .06);
    --border-hover: rgba(255, 255, 255, .2);
    --border-hover-light: rgba(255, 255, 255, .3);
    --text-light: #d8d8d4;
    --text-muted: #cfcfcb;
    --text-placeholder: #8f8f8b;
    --black: #111;
    --white-05: rgba(255, 255, 255, 0.05);
    --white-1: rgba(255, 255, 255, 0.1);
    --white-2: rgba(255, 255, 255, 0.2);
    --black-rgba: rgba(0, 0, 0, 0.4);
    --max: 1200px;
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 200;
    line-height: 1.5;
    position: relative;
    overflow-x: hidden;
}

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

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px
}

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background: rgba(14, 14, 16, .9);
    backdrop-filter: saturate(120%) blur(16px);
    border-bottom: 1px solid var(--white-1);
    box-shadow: 0 2px 30px var(--black-rgba);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.brand {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

.brand img{
    height: 45px;
}

.brand:hover {
    opacity: 0.9;
}

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

.nav a {
    color: var(--ink);
    text-decoration: none;
    margin-left: 20px;
    opacity: .85;
    font-weight: 600
}

.nav a:hover {
    opacity: 1
}

.nav .insta {
    opacity: .7
}

@media (max-width: 768px) {
    .site-header .wrap {
        padding: 0 16px;
        justify-content: center;
    }
    
    .brand {
        //display: none;
        margin-right: 10px;
    }
    
    .nav a {
        margin: 0 8px;
    }
}

main {
    padding-top: 65px;
}

.hero {
    background: radial-gradient(80% 60% at 50% 0%, var(--card-bg-light) 0%, var(--bg) 60%);
    border-bottom: 1px solid var(--border-light);
}

.hero-inner {
    padding: 80px 0 60px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    margin: 0 0 16px;
    font-size: clamp(60px, 12vw, 120px);
    color: var(--ink);
}

.hero-text p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: clamp(16px, 2.2vw, 20px);
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .hero-inner {
        padding: 100px 0 80px;
    }
}



.cta {
    display: block;
    margin-right: auto;
    margin-left: auto;
    background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent-light) 100%);
    color: var(--black);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 16px var(--accent-rgba); */
}

@media (min-width: 700px) {
    .cta {
        display: inline-block;
    }
}

.cta:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 24px var(--accent-rgba-hover); */
    background: linear-gradient(135deg, var(--accent-lightest) 0%, var(--accent-lighter) 100%);
}

.section-title {
    margin: 64px 0 32px;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--ink);
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Portfolio */
.portfolio {
    // padding: 16px;
}
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 40px;
    justify-content: center;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--white-2);
    color: var(--ink);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: var(--white-05);
    border-color: var(--border-hover-light);
}

.filter-btn.active {
    background: var(--ink);
    color: var(--black);
    border-color: var(--ink);
}

@media (max-width: 768px) {
    .filter-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Masonry grid using columns for simplicity */
.masonry {
    column-count: 2;
    column-gap: 0
}

@media (min-width: 700px) {
    .masonry {
        column-count: 2
    }
}

@media (min-width: 1000px) {
    .masonry.cols-3 {
        column-count: 3
    }
    .masonry.cols-4 {
        column-count: 4
    }
}

.card {
    break-inside: avoid;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-bg-light) 100%);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-rgba);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.card img {
    width: 100%;
    height: auto
}

.card .cap {
    padding: 10px 12px;
    color: var(--text-muted);
    font-size: 14px;
    opacity: .9
}

.loading {
    opacity: .7;
    text-align: center;
    padding: 16px
}

.view-more-container {
    column-span: all;
    text-align: center;
    margin: 24px 0;
}

.view-more-btn {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-bg-light) 100%);
    border: 1px solid var(--border);
    color: var(--ink);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.view-more-btn:hover {
    background: linear-gradient(135deg, var(--card-bg-light) 0%, var(--card-bg-lighter) 100%);
    border-color: var(--accent-rgba);
    transform: translateY(-2px);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
}

@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-bg-light) 100%);
    border: 1px solid var(--accent-rgba);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    margin: 0 0 12px;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}

.service-card p {
    color: var(--muted);
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.4;
}

.service-cta {
    display: inline-block;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid var(--white-2);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.service-cta:hover {
    background: var(--white-05);
    border-color: var(--border-hover-light);
}

/* About */
.about {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px;
    margin: 24px 0 0;
    /*border-top: 1px solid var(--accent-dark);
    border-bottom: 1px solid var(--accent-dark);*/
    /* background: linear-gradient(135deg, var(--card-bg-light) 0%, var(--card-bg-lighter) 100%);
    background: var(--black-rgba);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
}
.about-card {
    display: grid;
    grid-template-columns:1fr;
    gap: 24px;
    align-items: center;
    margin: 40px auto
}

.about-media {
    background: url("./kole_s.jpg?v=12345") center no-repeat;
    background-size: cover;
    border-radius: 0;
    aspect-ratio: 1;
    border: 1px solid var(--accent-rgba);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-copy h1 {
    margin: 0 0 16px;
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.about-copy h2 {
    margin: 0 0 8px;
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
}

.about-copy p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-copy .cta {
    margin-top: 8px;
}

@media (max-width: 899px) {
    .about-copy {
        text-align: center;
    }
}

@media (min-width: 900px) {
    .about-card {
        grid-template-columns:1fr 1.2fr
    }
}

/* Pricing */
.pricing{
    padding-bottom: 24px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
    justify-content: stretch;
}

@media (min-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.pricing-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-bg-light) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-rgba);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--card-bg-light) 0%, var(--card-bg-lighter) 100%);
    box-shadow: 0 8px 32px rgba(192, 192, 192, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card h3 {
    margin: 0 0 16px;
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 24px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-card li {
    padding: 8px 0;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card .footnote {
    font-size: 12px;
    color: var(--accent);
    font-style: italic;
    margin-top: 16px;
}

.pricing-card .cta {
    margin-top: 24px;
}

/* Contact */
.contact {
    /* margin-top: 24px;
    background: linear-gradient(135deg, var(--card-bg-light) 0%, var(--card-bg-lighter) 100%);
    background: var(--black-rgba);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
}
.contact .wrap{
    padding: 8px 16px 32px;
}
.contact .section-title{
    margin-top: 16px;
}
.contact .lead {
    color: var(--muted)
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 24px
}

.contact-list a {
    color: var(--ink)
}

.contact-form .row {
    margin-bottom: 12px
}

.contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--ink);
    padding: 16px 18px;
    border-radius: 12px;
    font: inherit;
    transition: all 0.3s ease;
    background: var(--card-bg-light);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6)
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 32px 0;
   //margin-top: 64px;
    background: linear-gradient(135deg, #0a0a0c 0%, #0e0e10 100%);
}

.site-footer .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer small {
    color: var(--muted);
}

.social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .site-footer .wrap {
        flex-direction: column;
        text-align: center;
    }
    
    .social {
        justify-content: center;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 9, .9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 100;
}

.lightbox.open {
    display: flex
}

.lightbox figure {
    margin: 0;
    max-width: min(100%, 1200px)
}

.lightbox img {
    max-height: 80vh;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5)
}

.lightbox figcaption {
    text-align: center;
    color: #cfcfcb;
    margin-top: 8px
}

.lightbox .close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 36px;
    line-height: 1;
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer
}

.lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: 0;
    color: #fff;
    font-size: 42px;
    width: 48px;
    height: 64px;
    border-radius: 8px;
    cursor: pointer
}

.lightbox .prev {
    left: 12px
}

.lightbox .next {
    right: 12px
}
