/* RESET & BASE */
:root {
    --bg-color: #1a1a1a;
    --text-color: #f4f4f4;
    --text-muted: #888;
    --accent-warm: #e2c4b0;
    --accent-pop: #ff4500;
    
    --font-head: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* TYPOGRAPHY UTILS */
.serif {
    font-family: var(--font-head);
    font-style: italic;
    font-weight: 400;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Dimmed for text readability */
    /* Film grain effect simulation could be added here with an overlay */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,26,26,0.3), var(--bg-color));
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 0.2em;
    font-size: 1.2rem;
}

.nav-links a {
    margin-left: 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-warm);
}

/* HERO CONTENT */
.hero-content {
    padding: 0 40px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.hero-title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title .line {
    display: block;
}

.hero-title em {
    color: var(--accent-warm);
}

.hero-subtitle {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.5rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* SECTIONS */
.section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 4rem;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 500px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* SERVICES */
.services {
    background: var(--bg-color);
}

.service-list {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.service-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    align-items: baseline;
    transition: var(--transition);
    cursor: pointer;
}

.service-item:hover {
    background: rgba(255,255,255,0.02);
    padding-left: 20px;
}

.service-header {
    display: flex;
    gap: 20px;
    align-items: baseline;
}

.service-num {
    font-family: var(--font-head);
    font-style: italic;
    color: var(--text-muted);
}

.service-name {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 500;
}

.service-detail {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* WORK */
.work {
    background: #141414;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 40px;
}

.work-item {
    cursor: pointer;
}

.work-item:nth-child(even) {
    transform: translateY(80px); /* Parallax feel */
}

.work-img-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/5;
}

.work-img {
    transition: transform 0.8s ease;
    filter: saturate(0.8) contrast(1.1); /* Film Look */
}

.work-item:hover .work-img {
    transform: scale(1.05);
    filter: saturate(1.1) contrast(1.1);
}

.work-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.work-cat {
    font-family: var(--font-head);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.work-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 600;
}

/* BLOG */
.blog-list {
    display: flex;
    flex-direction: column;
}

.blog-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.blog-item:hover {
    border-color: var(--accent-warm);
    padding: 60px 20px;
}

.blog-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.blog-date {
    font-family: var(--font-head);
    font-style: italic;
    color: var(--text-muted);
    width: 150px;
}

.blog-title {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 400;
    flex-grow: 1;
}

.blog-arrow {
    font-size: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.blog-item:hover .blog-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* FOOTER */
.footer {
    padding: 120px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

.footer-title {
    font-family: var(--font-head);
    font-size: 5rem;
    margin-bottom: 40px;
}

.footer-email {
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-pop);
    padding-bottom: 5px;
}

.footer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.detail-group h4 {
    font-family: var(--font-head);
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.detail-group p, .socials a {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 10vw;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .work-item:nth-child(even) {
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 20px;
    }
    
    .nav-links {
        display: none; /* Simple mobile hide for now, could add hamburger */
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .blog-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .footer-title {
        font-size: 3rem;
    }
}
