:root {
    /* Colors */
    --c-white: #FFFFFF;
    --c-navy: #0E1A30;
    --c-orange: #F67529;
    --c-sand: #DBB67F;
    --c-grey-light: #F5F5F7;
    --c-text: #0E1A30;
    --c-text-muted: #6e6e73;

    /* Fonts */
    --f-heading: 'DM Sans', sans-serif;
    --f-body: 'Inter', sans-serif;
    --f-accent: 'Amatic SC', cursive;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--c-white);
    font-family: var(--f-body);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header (V1 Style) */
header {
    padding-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 120px); /* Adjusted for header */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Typography */
h1 {
    font-family: var(--f-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-family: var(--f-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tagline {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--c-orange);
    margin-bottom: 1rem;
    display: block;
}

.subtext {
    font-size: 1.125rem;
    color: var(--c-text-muted);
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.handwritten {
    font-family: var(--f-accent);
    font-size: 3.5rem;
    color: var(--c-orange);
    transform: rotate(-2deg);
    display: inline-block;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
}

.cta-button.primary {
    background: var(--c-navy);
    color: var(--c-white);
}

.cta-button.primary:hover {
    background: var(--c-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(246, 117, 41, 0.3);
}

.cta-button.outline {
    border: 2px solid var(--c-navy);
    color: var(--c-navy);
}

.cta-button.outline:hover {
    background: var(--c-navy);
    color: var(--c-white);
}

.arrow { margin-left: 8px; transition: transform 0.3s; }
.cta-button:hover .arrow { transform: translateX(5px); }

/* Hero Visuals */
.sneaker-hero {
    position: relative;
    z-index: 2;
    transform: rotate(-15deg) scale(1.1);
    filter: drop-shadow(0 30px 50px rgba(14, 26, 48, 0.15));
    animation: float 6s ease-in-out infinite;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.5;
}

.blob-1 {
    width: 300px; height: 300px;
    background: var(--c-orange);
    top: -10%; right: -10%;
    animation: pulse 4s infinite alternate;
}

.blob-2 {
    width: 250px; height: 250px;
    background: #C1212D; /* Crimson */
    bottom: -10%; left: -10%;
    animation: pulse 5s infinite alternate-reverse;
}

/* Values Section */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.value-item {
    padding: 2rem;
    background: var(--c-grey-light);
    border-radius: 20px;
    transition: transform 0.3s;
}

.value-item:hover { transform: translateY(-5px); }

.value-number {
    font-family: var(--f-accent);
    font-size: 3rem;
    color: var(--c-orange);
    opacity: 0.5;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px); /* Fixed height rows for masonry feel */
    gap: 1.5rem;
}

.grid-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom; /* Fix: focus on shoes at the bottom */
    transition: transform 0.5s;
}

.grid-item:hover img { transform: scale(1.05); }

/* Layout Grid Items */
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 300px); /* 3 rows now */
    gap: 1.5rem;
}

.grid-item.large {
    grid-column: 1 / 9;
    grid-row: 1 / 3;
}

.grid-item.side-top {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.grid-item.side-bottom {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
}

.grid-item.bottom-left {
    grid-column: 1 / 7;
    grid-row: 3 / 4;
}

.grid-item.bottom-right {
    grid-column: 7 / 13;
    grid-row: 3 / 4;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(14,26,48,0.8), transparent);
    color: white;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.grid-item:hover .caption { transform: translateY(0); }

/* Footer */
.footer-cta {
    text-align: center;
    padding: 8rem 2rem;
    background: var(--c-grey-light);
    margin-top: 4rem;
}

footer {
    padding: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    background: white;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--c-text-muted);
}

.footer-logo { height: 30px; opacity: 0.5; }

.social-links a { margin-left: 2rem; }
.social-links a:hover { color: var(--c-orange); }

/* Animations */
@keyframes float {
    0%, 100% { transform: rotate(-15deg) scale(1.1) translateY(0); }
    50% { transform: rotate(-15deg) scale(1.1) translateY(-20px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

.fade-in-up { animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; opacity: 0; transform: translateY(30px); }
.fade-in-down { animation: fadeInDown 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; opacity: 0; transform: translateY(-30px); }
.fade-in { animation: fadeIn 1.5s ease forwards; opacity: 0; }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* Scroll Reveal Class */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .hero { flex-direction: column-reverse; text-align: center; padding-top: 2rem; gap: 2rem; }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .sneaker-hero { width: 80%; max-width: 400px; }
    
    .logo { height: 60px; }
    
    .grid-container {
        display: flex;
        flex-direction: column;
    }
    .grid-item { height: 300px; }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .social-links a {
        margin: 0 1rem;
    }
}/* Updated */
