:root {
    --color-navy: #171e19;
    --color-sage: #b7c6c2;
    --color-white: #ffffff;
    --color-taupe: #9f8d8b;
    --color-beige: #d7c5b2;
    --color-cyan: #d5f4f9;
    --color-soft-blue: #bbe2f5;
    --color-charcoal: #302b2f;

    --font-heading: 'Anton', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --transition-fluid: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-navy);
    color: var(--color-white);
    cursor: crosshair;
    overflow-x: hidden;
}

/* Typography Utilities */
.anton-display {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.02em; /* tracking-tighter */
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-sage);
}

.taupe-text { color: var(--color-taupe); }
.sage-label { color: var(--color-sage); font-family: var(--font-heading); font-size: 1.5rem; display: block; margin-bottom: 1rem;}
.taupe-label { color: var(--color-taupe); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 2rem;}

/* Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
    z-index: 100;
    color: var(--color-white);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* 2xl */
    letter-spacing: 0.1em; /* tracking-widest */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: crosshair;
    transition: background var(--transition-fluid), color var(--transition-fluid);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-navy);
}

/* Sections */
section {
    padding: 8rem 48px;
}

.dark-section {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.light-section {
    background-color: var(--color-white);
    color: var(--color-navy);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 48px;
}

.ambient-orb {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.sage-orb {
    background-color: var(--color-sage);
    top: 20%;
    left: 20%;
}

.soft-blue-orb {
    background-color: var(--color-soft-blue);
    bottom: 20%;
    right: 20%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 18vw;
    line-height: 0.85;
    margin: 0;
}

.hero-bottom {
    position: absolute;
    bottom: 48px;
    left: 48px;
    right: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1;
}

.hero-desc {
    max-width: 320px;
    color: var(--color-taupe);
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: 1.5;
}

.scroll-indicator {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Portfolio */
.portfolio {
    background-color: var(--color-white);
    color: var(--color-navy);
}

.section-heading {
    font-size: 8rem; /* 9xl approx */
    color: var(--color-navy);
    margin-bottom: 4rem;
    line-height: 1;
}

.masonry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.item-even {
    margin-top: 4rem; /* 64px offset */
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4; /* Default */
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fluid);
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(23, 30, 25, 0.6); /* Navy/60 */
    opacity: 0;
    transition: opacity var(--transition-fluid);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.view-badge {
    width: 96px;
    height: 96px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--color-navy);
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.image-wrapper:hover .hover-overlay {
    opacity: 1;
}

/* Featured Section */
.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-left {
    position: relative;
}

.cyan-offset {
    position: absolute;
    inset: 0;
    background-color: var(--color-cyan);
    opacity: 0.2;
    transform: translate(-48px, 48px);
    z-index: 0;
}

.featured-left img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.featured-heading {
    font-size: 4.5rem; /* 7xl */
    margin-bottom: 2rem;
    line-height: 1;
}

.featured-right {
    padding-left: 3rem;
}

.featured-right p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.arrow-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: transform var(--transition-fluid);
}

.arrow-link:hover {
    transform: translateX(8px);
}

/* Capabilities */
.capabilities {
    background-color: #fafafa;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.capabilities-list {
    grid-column: span 4;
}

.capabilities-list ul {
    list-style: none;
}

.capabilities-list li {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    cursor: default;
}

.capabilities-list li::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-navy);
    margin-right: 1rem;
    transition: width var(--transition-fluid);
}

.capabilities-list li:hover::before {
    width: 64px;
}

.capabilities-heading {
    grid-column: span 8;
}

.large-heading {
    font-size: 3.75rem; /* 6xl */
    font-weight: 300;
    line-height: 1.2;
}

.large-heading i {
    color: var(--color-taupe);
    font-family: var(--font-heading);
    font-style: italic;
    letter-spacing: 0.05em;
}

/* Testimonial */
.testimonial {
    background-color: var(--color-charcoal);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 12rem 48px;
}

.quote-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 30rem;
    color: var(--color-navy);
    opacity: 0.3;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: 3rem; /* 5xl */
    margin-bottom: 4rem;
    line-height: 1.1;
}

.bio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.anton-name {
    font-family: var(--font-heading);
    color: var(--color-taupe);
    letter-spacing: 0.05em;
}

/* Footer */
.footer {
    padding: 8rem 48px 2rem 48px;
    display: flex;
    flex-direction: column;
}

.footer-content {
    margin-bottom: 8rem;
}

.massive-text {
    font-size: 10vw; /* 9xl+ */
    line-height: 1;
    margin-bottom: 2rem;
}

.email-link {
    color: var(--color-sage);
    font-size: 2.25rem; /* 4xl */
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-sage);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.legal-links a {
    color: var(--color-white);
    text-decoration: none;
    margin-left: 2rem;
}

/* Scroll Reveals */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fixed-nav { padding: 16px 24px; }
    .nav-links a { display: none; }
    
    .hero, section { padding: 4rem 24px; }
    .footer { padding: 4rem 24px 2rem 24px; }
    
    .hero-content h1 { font-size: 24vw; }
    
    .hero-bottom {
        bottom: 24px;
        left: 24px;
        right: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .hero-desc { max-width: 100%; }
    
    .masonry-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .item-even { margin-top: 0; }
    
    .hover-overlay { 
        opacity: 1; 
        background: linear-gradient(to top, rgba(23, 30, 25, 0.8), transparent 50%);
        align-items: flex-end; 
        justify-content: flex-end;
        padding: 1.5rem;
    }
    .view-badge { 
        width: auto; 
        height: auto; 
        padding: 8px 16px; 
        border-radius: 24px;
        font-size: 12px;
    }
    
    .featured, .split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .featured-right { padding-left: 0; }
    .featured-heading { font-size: 3.5rem; }
    .cyan-offset { transform: translate(-16px, 16px); }
    
    .capabilities-list, .capabilities-heading { grid-column: span 1; }
    .large-heading { font-size: 2.25rem; }
    .section-heading { font-size: 3.5rem; margin-bottom: 2rem; }
    
    .testimonial { padding: 6rem 24px; }
    .quote-text { font-size: 1.5rem; margin-bottom: 2rem; }
    .quote-mark { font-size: 15rem; }
    
    .footer-content { margin-bottom: 4rem; }
    .massive-text { font-size: 15vw; margin-bottom: 1.5rem; }
    .footer-contact-links { gap: 1.5rem !important; flex-direction: column; align-items: flex-start !important; }
    
    .footer-bottom { flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
    .legal-links a { margin: 0 1rem; }
}
