:root {
    --bg-warm: #eee8d5;
    --teal-primary: #146c7a;
    --teal-light: #2d8d9c;
    --text-dark: #2a2a2a;
    --text-muted: #555;
    --accent-gold: #c5a059;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: var(--bg-warm);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('texture.png');
    background-repeat: repeat;
    opacity: 0.28;
    pointer-events: none;
    z-index: -2; /* Move behind everything */
}

/* Floating Decorative Blobs for Depth */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
    background: var(--teal-light);
    pointer-events: none;
}

.blob-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.blob-2 { width: 300px; height: 300px; bottom: 10%; left: -50px; background: var(--accent-gold); }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header - Floating Asymmetric */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    mix-blend-mode: multiply;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--teal-primary);
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: left top;
    position: absolute;
    left: 40px;
    top: 60px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    opacity: 1; /* Full opacity */
    padding-right: 10px;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    padding-right: 10px;
}

/* Hero - Cinematic & Experimental */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-main-title {
    font-size: clamp(4rem, 12vw, 10rem);
    position: relative;
    z-index: 2;
}

.hero-sub {
    position: absolute;
    right: 60px;
    bottom: 20%;
    max-width: 400px;
    text-align: right;
}

.hero-line {
    position: absolute;
    height: 2px;
    background: var(--teal-primary);
    top: 50%;
    left: 0;
    width: 0;
    transition: width 1.5s var(--transition);
}

.hero.active .hero-line {
    width: 40vw;
}

/* Asymmetric Portfolio Grid */
.creative-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    padding: 100px 0;
}

.grid-item {
    position: relative;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* Full opacity */
    transition: all 0.8s var(--transition);
}

.grid-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

/* Specific Sizes for Masonry vibe */
.size-lg { grid-column: span 8; height: 600px; }
.size-md { grid-column: span 4; height: 500px; margin-top: 100px; }
.size-sm { grid-column: span 5; height: 400px; margin-top: -50px; }
.size-sq { grid-column: span 7; height: 400px; }

.grid-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    z-index: 5;
}

.grid-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0.6;
}

/* Text Overlap Styles */
.overlap-text {
    font-size: 8vw;
    color: transparent;
    -webkit-text-stroke: 1px var(--teal-primary);
    position: absolute;
    bottom: -4vw;
    right: 5%;
    z-index: 0;
    pointer-events: none;
    opacity: 1; /* Full opacity */
}

/* Lightbox - Premium Dark */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox.active { display: flex; }

.lightbox-content {
    width: 90vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.lightbox-content video, .lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer - Simple but offset */
footer {
    padding: 100px 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(20, 108, 122, 0.1);
}

.circle-btn {
    width: 100px;
    height: 100px;
    border: 1px solid var(--teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.5s var(--transition);
}

.circle-btn:hover {
    background: var(--teal-primary);
    color: white;
    transform: rotate(15deg) scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .creative-grid { display: flex; flex-direction: column; gap: 40px; }
    .size-lg, .size-md, .size-sm, .size-sq { height: 300px; margin: 0; }
    .logo { position: relative; transform: none; left: 0; top: 0; margin-bottom: 20px; }
    .nav-inner { flex-direction: column; align-items: flex-start; }
}
