:root {

    --yellow: #f4c542;
    --black: #0d0d0d;
    --white: #ffffff;
    --gray: #8d8d8d;

    --border: rgba(255,255,255,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {

    scroll-behavior: smooth;
}

body{
    background:var(--black);
    color:var(--white);
    font-family:Inter,sans-serif;
    line-height:1.7;

}

.container{
    width:min(90%,1200px);
    margin:auto;
}


section{
    padding:120px 0;
}

img{
    width:100%;
    display:block;
}

header {

    position: fixed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    width: min(95%, 1200px);

    z-index: 1000;

    background:
        rgba(15,15,15,.85);

    backdrop-filter: blur(12px);

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 18px;

    transition: .3s ease;
}

header.scrolled {

    top: 10px;

    background:
        rgba(10,10,10,.92);

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);
}

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:24px 0;
}

.logo {

    text-decoration: none;

    color: white;

    font-weight: 700;

    letter-spacing: 1px;

    transition:
        color .25s ease,
        transform .25s ease;
}

.logo:hover {

    color: var(--yellow);

    transform: translateY(-2px);
}

.logo:visited,
.logo:link {

    color: white;

    text-decoration: none;
}



nav ul{

    display:flex;
    gap:30px;
    list-style:none;
}

nav a{

    color:white;
    text-decoration:none;

    position:relative;
}

nav a::after{

    content:"";

    position:absolute;
    left:0;
    bottom:-4px;

    width:0;
    height:2px;

    background:var(--yellow);

    transition:.3s;
}

nav a:hover::after{

    width:100%;
}

#scrollTopBtn {

    position: fixed;

    bottom: 30px;
    right: 30px;

    width: 52px;
    height: 52px;

    border: none;

    border-radius: 50%;

    background: var(--yellow);

    color: #111;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;

    z-index: 9999;

    box-shadow:
        0 8px 20px rgba(0,0,0,.25);
}

#scrollTopBtn.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

#scrollTopBtn:hover {

    transform:
        translateY(-3px);

    background: #f7cf5e;
}

#scrollTopBtn:hover i {

    transform:
        translateY(-2px);

    transition: .2s ease;
}

@media (max-width:768px){

    #scrollTopBtn{

        width: 46px;
        height: 46px;

        right: 20px;
        bottom: 20px;
    }

}

.hamburger {

    display: none;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.hamburger span {

    width: 25px;

    height: 2px;

    background: white;

    transition: .3s ease;
}

@media (max-width:900px){

    .hamburger{

        display:flex;
    }

    nav{

        position:absolute;

        top:110%;

        left:0;

        width:100%;

        background:#111;

        border-radius:16px;

        opacity:0;

        visibility:hidden;

        transform:translateY(-10px);

        transition:.3s ease;

        z-index:9999;
    }

    nav.active{

        opacity:1;

        visibility:visible;

        transform:translateY(0);
    }

    nav ul{

        flex-direction:column;

        gap:20px;

        padding:25px;
    }
}

.hamburger.active span:nth-child(1){

    transform:
        rotate(45deg)
        translateY(10px);
}

.hamburger.active span:nth-child(2){

    opacity: 0;
}

.hamburger.active span:nth-child(3){

    transform:
        rotate(-45deg)
        translateY(-10px);
}


.hero {

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.35) 100%
        );
}

.hero .container {

    position: relative;

    z-index: 2;
}

.hero-content {

    max-width: 700px;
}

.hero-content h1 {

    font-size: clamp(3rem, 6vw, 5.5rem);

    line-height: 1.05;

    margin: 20px 0;

    border-left: 4px solid var(--yellow);

    padding-left: 20px;
}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        rgba(244,197,66,.03);

    pointer-events: none;
}

.eyebrow{

    color:var(--yellow);
    font-size:.9rem;
    letter-spacing:2px;
}

.hero h1{

    font-size:clamp(3rem,6vw,5rem);
    line-height:1.05;

    margin:20px 0;
}

.hero p{

    max-width:600px;
    color:#c7c7c7;
}

.hero-buttons{

    display:flex;
    gap:16px;

    margin-top:30px;
}

.btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border-radius: 6px;

    text-decoration: none;

    transition:
        transform .25s ease,
        background-color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

    cursor: pointer;
}

.btn-primary {

    background: var(--yellow);
    color: var(--black);

    font-weight: 600;
}

.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(244, 197, 66, 0.18);

    background: #f7cf5e;
}

.btn-secondary{

    border:1px solid var(--border);
    color:white;
}

.btn-secondary:hover {

    background: rgba(244,197,66,0.08);

    border-color: rgba(244,197,66,0.25);
}

.hero-image img,
.studio-image img{

    border-radius:16px;
}

.yt-embed {
    max-width: 920px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16 / 9;
}

.yt-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.works-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 760px;
    margin: 48px auto;
}

.works-divider-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.works-divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.7;
}

.reviews {

    background: #121212;
}

.reviews-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap: 24px;

    margin-top: 60px;
}

.review-card {

    background: #181818;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 32px;

    transition: .3s ease;
}

.review-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(244,197,66,.25);
}

.stars {

    color: var(--yellow);

    font-size: 1.1rem;

    margin-bottom: 20px;

    letter-spacing: 2px;
}

.review-card p {

    color: #d6d6d6;

    line-height: 1.8;

    margin-bottom: 24px;
}

.review-author {

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.review-author strong {

    color: white;
}

.review-author span {

    color: #9a9a9a;

    font-size: .9rem;
}

.section-heading{

    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{

    font-size:3rem;
}

.values-grid,
.services-grid{

    display:grid;
    gap:24px;
}

.values-grid{

    grid-template-columns:repeat(3,1fr);
}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 16px;

    margin-top: 50px;
}

@media (max-width: 1200px) {

    .services-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .services-grid {

        grid-template-columns:
            1fr;
    }
}

.service-card {

    background: #161616;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 24px;

    display: flex;
    flex-direction: column;

    transition: .3s ease;
}

.service-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(244,197,66,.25);
}

.service-icon {

    font-size: 1.6rem;

    margin-bottom: 12px;
}

.service-card h3 {

    font-size: 1.1rem;

    margin-bottom: 10px;
}

.service-card p {

    color: #c7c7c7;

    line-height: 1.8;

    margin-bottom: 24px;

    flex-grow: 1;
}

.service-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: fit-content;

    padding: 10px 14px;

    font-size: .9rem;

    border-radius: 6px;

    text-decoration: none;

    color: var(--black);

    background: var(--yellow);

    font-weight: 600;

    transition: .25s ease;
}

.service-btn:hover {

    transform: translateY(-2px);

    background: #f7cf5e;
}

.studio-life {

    padding: 120px 0;
}

.studio-container {

    background:
        linear-gradient(
            180deg,
            #fffdf5,
            #fff7d8
        );

    color: #111;

    border-radius: 30px;

    padding: 60px;

    overflow: hidden;
}

.studio-header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 50px;
}

.studio-header h2 {

    font-size:
        clamp(2rem,4vw,3.5rem);

    margin: 12px 0;
}

.studio-header p {

    color: #555;
}

.carousel-wrapper {

    overflow: hidden;

    width: 100%;
}

.carousel-track {

    display: flex;

    gap: 16px;

    width: fit-content;

    animation: scrollGallery 20s linear infinite;
}

.carousel-track::-webkit-scrollbar {

    display: none;
}

.carousel-track img {

    width: 280px;
    height: 180px;

    object-fit: cover;

    border-radius: 12px;

    flex-shrink: 0;
}

@keyframes scrollGallery {

    from {

        transform: translateX(0);
    }

    to {

        transform: translateX(calc(-50% - 8px));
    }
}



.portfolio-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

/* replaces your existing .project and .project img rules */
.project {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    text-decoration: none;
}

.project img {
    transition: transform .4s ease;
}

.project:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
}

.project-overlay svg {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity .3s ease, transform .3s ease;
}

.project:hover .project-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.project:hover .project-overlay svg {
    opacity: 1;
    transform: scale(1);
}

blockquote{

    max-width:800px;
    margin:auto;

    font-size:2rem;
    font-weight:300;
}

.contact-section {

    padding: 120px 0;

    background: #0f0f0f;
}

.map-container {

    margin-top: 50px;

    margin-bottom: 50px;

    overflow: hidden;

    border-radius: 20px;

    border: 1px solid rgba(255,255,255,.08);
}

.map-container iframe {

    width: 100%;

    height: 450px;

    border: none;
}

.contact-grid {

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 40px;

    align-items: start;
}

.studio-details {

    padding: 30px;
}

.studio-details h3 {

    margin-bottom: 20px;
}

.studio-details p {

    margin-bottom: 12px;

    color: #c7c7c7;
}

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.contact-form input,
.contact-form textarea {

    background: #181818;

    border: 1px solid rgba(255,255,255,.08);

    color: white;

    padding: 16px;

    border-radius: 10px;

    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {

    outline: none;

    border-color:
        rgba(244,197,66,.4);
}



footer {

    background: #0a0a0a;

    border-top:
        1px solid rgba(255,255,255,.08);

    padding: 60px 0 25px;
}

.footer-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}

.footer-content h3 {

    color: var(--yellow);

    letter-spacing: 1px;

    margin-bottom: 16px;
}

.footer-description {

    max-width: 450px;

    color: #c7c7c7;

    margin-bottom: 28px;

    line-height: 1.7;
}

.social-links {

    display: flex;

    gap: 14px;

    margin-bottom: 30px;
}

.social-links a {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: #151515;

    border:
        1px solid rgba(255,255,255,.08);

    color: white;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.social-links a:hover {

    transform: translateY(-3px);

    background:
        rgba(244,197,66,.08);

    border-color:
        rgba(244,197,66,.30);

    color: var(--yellow);
}

.social-links i {

    font-size: 1.15rem;
}

.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 8px;

    color: #a8a8a8;
}

.footer-bottom {

    margin-top: 40px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.06);

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-bottom p {

    color: #777;

    font-size: .9rem;
}

@media (max-width: 768px) {

    .footer-bottom {

        flex-direction: column;

        gap: 6px;
    }

}

.reveal{

    opacity:0;
    transform:translateY(15px);

    transition:.7s ease;
}

.reveal.active{

    opacity:1;
    transform:translateY(0);
}

@media(max-width:900px){

.hero-grid,
.studio-grid{

    grid-template-columns:1fr;
}

.values-grid{

    grid-template-columns:1fr;
}

.portfolio-grid{

    grid-template-columns:1fr;
}

nav{

    display:none;
}
}