* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #09090f;
    --surface: #12121a;
    --surface-light: #1a1a24;
    --text: #f7f7fa;
    --muted: #b9b9c5;
    --purple: #7a2fff;
    --orange: #ff9e2c;
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--background);
    color: var(--text);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 8%;
    background: rgba(9, 9, 15, 0.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.contact-copy img{
    width:36px;
    height:36px;
}
.logo {
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-decoration: none;
    white-space: nowrap;
}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}
.logo img{
    width:40px;
    height:40px;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
    text-decoration: none;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 130px 8% 70px;
    text-align: center;
    background:
    linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.45)
    ),
    url("hero.jpg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.hero-content {
    width: min(100%, 980px);
}

.eyebrow {
    margin-bottom: 24px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.hero h1 {
    max-width: 950px;
    margin: 0 auto 24px;
    font-size: clamp(2.65rem, 6.2vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero-description {
    margin-bottom: 35px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.button {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: var(--purple);
    color: white;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(122, 47, 255, 0.24);
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    background: var(--orange);
    box-shadow: 0 14px 36px rgba(255, 158, 44, 0.22);
}

.content-section {
    padding: 110px 8%;
}

.alternate {
    background: #0c0c13;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 46px;
}

.section-number {
    padding-top: 8px;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

h2 {
    margin-bottom: 6px;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
}

.section-heading div p {
    color: var(--muted);
}

.gallery {
    display: block;
    width: 100%;
}

.video-container{
    overflow:hidden;
    border-radius:18px;
    border:1px solid var(--border);
}

.video-container iframe{
    width:100%;
    height:700px;
    border:none;
}
.video-placeholder {
    min-height: 520px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        radial-gradient(circle, rgba(255, 158, 44, 0.1), transparent 30%),
        linear-gradient(145deg, rgba(122, 47, 255, 0.14), transparent 50%),
        var(--surface);
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1.4fr);
    gap: 70px;
    align-items: start;
}

.split-section .section-heading {
    margin-bottom: 0;
}

.large-copy {
    max-width: 820px;
    color: var(--muted);
    font-size: clamp(1.35rem, 2.8vw, 2.15rem);
    line-height: 1.45;
}

.contact-copy p {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 1.2rem;
}

.contact-copy a {
    display:flex;
    align-items:center;
    gap:12px;

    color: var(--orange);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    text-decoration: none;
}
.gallery-status{
    color:var(--muted);
    margin-bottom:24px;
}

.gallery-status:empty{
    display:none;
}

.portfolio-category {
    width: 100%;
    margin-bottom: 100px;
}

.portfolio-category:last-child {
    margin-bottom: 0;
}

.category-title {
    margin-bottom: 30px;
    color: var(--text);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.category-title::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    margin-top: 14px;
    background: var(--orange);
}

.category-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.gallery-item {
    grid-column: span 6;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface-light);
}

.gallery-item:nth-child(4n + 1),
.gallery-item:nth-child(4n + 4) {
    grid-column: span 7;
}

.gallery-item:nth-child(4n + 2),
.gallery-item:nth-child(4n + 3) {
    grid-column: span 5;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    transition: transform 350ms ease, filter 350ms ease;
}

.gallery-item:hover img {
    transform: scale(1.025);
    filter: brightness(1.06);
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 8%;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--text);
    text-decoration: none;
}

@media (max-width: 760px) {

    nav {
        display: none;
    }
    
    .video-container iframe{
height:250px;
}
    .split-section{
    grid-template-columns: 1fr;
    gap: 34px;
}
    
    .large-copy{
    max-width:100%;
}
    .contact-copy{
    width:100%;
}
    .contact-copy a{
    width:100%;
}
    .contact-copy a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

    .portfolio-category {
    margin-bottom: 75px;
}

.category-title {
    margin-bottom: 22px;
}

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

.gallery-item,
.gallery-item:nth-child(n) {
    grid-column: auto;
    min-height: 300px;
}

.gallery-item img {
    min-height: 300px;
}
    
}

@media (max-width: 480px) {
    .logo {
        font-size: 0.86rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .eyebrow {
        font-size: 0.68rem;
    }
    
}

