:root {
    --sand: #f5ebe0;
    --driftwood: #8b7355;
    --ocean-deep: #2c5f6f;
    --ocean-light: #4a8fa0;
    --forest: #3d5a3d;
    --stone: #6b6b6b;
    --cream: #fefdfb;
    --earth: #a67c52;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--stone);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.01) 2px, rgba(0,0,0,.01) 3px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.01) 2px, rgba(0,0,0,.01) 3px);
    pointer-events: none;
    z-index: 1000;
    opacity: 0.3;
}

.hero {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--forest) 100%);
    color: var(--cream);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 115, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 143, 160, 0.15) 0%, transparent 50%);
    animation: drift 20s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

/* PHOTO - NO BORDER, NO CIRCLE */
.hero-image-container {
    width: 240px;
    margin: 0 auto 2rem;
    animation: fadeScaleIn 1s ease-out;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

@keyframes fadeScaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero h1 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    animation: fadeSlideDown 1s ease-out;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    animation: fadeSlideDown 1s ease-out 0.2s backwards;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section {
    padding: 5rem 2rem;
    background: var(--sand);
    border-bottom: 3px solid var(--driftwood);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.intro-card {
    background: var(--cream);
    padding: 2.5rem;
    border-left: 4px solid var(--ocean-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    animation: fadeSlideUp 0.8s ease-out backwards;
}

.intro-card:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-card h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
}

.intro-card p {
    color: var(--stone);
    line-height: 1.8;
}

.photo-section {
    padding: 5rem 2rem;
    background: var(--cream);
    border-bottom: 3px solid var(--driftwood);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    animation: fadeSlideUp 0.8s ease-out backwards;
}

.photo-card:nth-child(1) { animation-delay: 0.1s; }
.photo-card:nth-child(2) { animation-delay: 0.3s; }
.photo-card:nth-child(3) { animation-delay: 0.5s; }

.photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.photo-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-card:hover img {
    transform: scale(1.05);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 95, 111, 0.95), transparent);
    color: var(--cream);
    padding: 2rem 1.5rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.photo-card:hover .photo-caption {
    transform: translateY(0);
}

.ventures-section {
    padding: 5rem 2rem;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ocean-deep);
    margin-bottom: 0.5rem;
}

.section-header .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--earth), var(--ocean-light));
    margin: 1rem auto;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.venture-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeScaleIn 0.6s ease-out backwards;
    text-decoration: none;
    color: inherit;
    display: block;
}

a.venture-card {
    cursor: pointer;
}

.venture-card:nth-child(1) { animation-delay: 0.1s; }
.venture-card:nth-child(2) { animation-delay: 0.2s; }
.venture-card:nth-child(3) { animation-delay: 0.3s; }
.venture-card:nth-child(4) { animation-delay: 0.4s; }
.venture-card:nth-child(5) { animation-delay: 0.5s; }
.venture-card:nth-child(6) { animation-delay: 0.6s; }
.venture-card:nth-child(7) { animation-delay: 0.7s; }

.venture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.venture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.venture-card:hover::before {
    transform: scaleX(1);
}

/* RAINBOW BORDERS */
.venture-card:nth-child(1)::before {
    background: linear-gradient(90deg, #ff4444, #ff6666);
}

.venture-card:nth-child(2)::before {
    background: linear-gradient(90deg, #ff8800, #ffaa44);
}

.venture-card:nth-child(3)::before {
    background: linear-gradient(90deg, #ffdd00, #ffee66);
}

.venture-card:nth-child(4)::before {
    background: linear-gradient(90deg, #44dd44, #66ee66);
}

.venture-card:nth-child(5)::before {
    background: linear-gradient(90deg, #4488ff, #66aaff);
}

.venture-card:nth-child(6)::before {
    background: linear-gradient(90deg, #aa44ff, #cc66ff);
}

.venture-card:nth-child(7)::before {
    background: linear-gradient(90deg, #dd44dd, #ee66ee);
}

.venture-content {
    padding: 2rem;
}

.venture-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.6rem;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
    font-weight: 700;
}

.venture-card p {
    color: var(--stone);
    line-height: 1.8;
}

.highlight-card {
    background: linear-gradient(135deg, var(--ocean-light) 0%, var(--forest) 100%);
    color: var(--cream);
}

.highlight-card h3 {
    color: var(--cream);
}

.highlight-card p {
    color: rgba(254, 253, 251, 0.95);
}

.highlight-card::before {
    background: linear-gradient(90deg, var(--earth), var(--driftwood));
}

footer {
    background: var(--ocean-deep);
    color: var(--cream);
    padding: 3rem 2rem;
    text-align: center;
}

footer p {
    opacity: 0.9;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .ventures-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 4rem 1.5rem 3rem;
    }

    .hero-image-container {
        width: 200px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-card img {
        height: 300px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

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