<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Bahari Studio | Cultural Strategy & Creative Operations</title>

    <link rel="preconnect" href="https://fonts.googleapis.com">

    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

    <link href="https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600&display=swap" rel="stylesheet">

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }


        :root {

            --sand: #E8DDD2;

            --ocean: #A8C5D8;

            --deep-ocean: #6B94AC;

            --warm-sand: #C9B5A0;

            --text-dark: #2C2C2C;

            --text-light: #666666;

        }


        body {

            font-family: 'Inter Tight', sans-serif;

            color: var(--text-dark);

            line-height: 1.6;

            background: var(--sand);

        }


        .container {

            max-width: 1200px;

            margin: 0 auto;

            padding: 0 2rem;

        }


        /* Header */

        header {

            padding: 2rem 0;

            background: var(--sand);

        }


        .logo {

            font-size: 2.5rem;

            font-weight: 300;

            letter-spacing: 0.1em;

            text-transform: uppercase;

        }


        /* Hero */

        .hero {

            padding: 4rem 0 6rem;

            text-align: center;

        }


        .hero h1 {

            font-size: 3rem;

            font-weight: 300;

            letter-spacing: 0.05em;

            margin-bottom: 1.5rem;

            line-height: 1.2;

        }


        .hero p {

            font-size: 1.25rem;

            color: var(--text-light);

            max-width: 800px;

            margin: 0 auto 2rem;

        }


        .cta-button {

            display: inline-block;

            padding: 1rem 2.5rem;

            background: var(--deep-ocean);

            color: white;

            text-decoration: none;

            font-weight: 500;

            transition: background 0.3s;

        }


        .cta-button:hover {

            background: #5A7F99;

        }


        /* Sections */

        section {

            padding: 5rem 0;

        }


        section:nth-child(even) {

            background: white;

        }


        h2 {

            font-size: 2.5rem;

            font-weight: 300;

            letter-spacing: 0.05em;

            margin-bottom: 3rem;

            text-align: center;

        }


        h3 {

            font-size: 1.5rem;

            font-weight: 500;

            margin-bottom: 1rem;

        }


        /* Services Grid */

        .services-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 3rem;

            margin-top: 3rem;

        }


        .service-card {

            padding: 2rem;

        }


        .service-card p {

            color: var(--text-light);

        }


        /* Methodology */

        .methodology-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

            gap: 2rem;

            margin-top: 3rem;

        }


        .method-step {

            padding: 1.5rem;

            background: var(--sand);

        }


        .method-step h4 {

            font-size: 1.1rem;

            font-weight: 600;

            margin-bottom: 0.5rem;

            color: var(--deep-ocean);

        }


        /* About */

        .about-content {

            max-width: 900px;

            margin: 0 auto;

            text-align: center;

        }


        .about-content p {

            font-size: 1.1rem;

            color: var(--text-light);

            margin-bottom: 1.5rem;

        }


        /* Portfolio */

        .portfolio-item {

            max-width: 800px;

            margin: 3rem auto;

            padding: 2rem;

            background: var(--sand);

        }


        .portfolio-item h3 {

            margin-bottom: 1rem;

        }


        .portfolio-item p {

            color: var(--text-light);

        }


        /* Contact */

        .contact-content {

            max-width: 600px;

            margin: 0 auto;

            text-align: center;

        }


        .contact-content p {

            font-size: 1.1rem;

            margin-bottom: 2rem;

        }


        .contact-email {

            font-size: 1.5rem;

            color: var(--deep-ocean);

            text-decoration: none;

            font-weight: 500;

        }


        /* Footer */

        footer {

            padding: 3rem 0;

            text-align: center;

            background: var(--text-dark);

            color: white;

        }


        /* Responsive */

        @media (max-width: 768px) {

            .hero h1 {

                font-size: 2rem;

            }


            h2 {

                font-size: 2rem;

            }


            .services-grid,

            .methodology-grid {

                grid-template-columns: 1fr;

            }

        }

    </style>

</head>

<body>

    <header>

        <div class="container">

            <div class="logo">BAHARI</div>

        </div>

    </header>


    <main>

        <section class="hero">

            <div class="container">

                <h1>CULTURAL STRATEGY &<br>CREATIVE OPERATIONS</h1>

                <p>Building brands and experiences rooted in place, memory, and diaspora</p>

                <a href="#contact" class="cta-button">Start a Conversation</a>

            </div>

        </section>


        <section id="services">

            <div class="container">

                <h2>WHAT WE DO</h2>

                <div class="services-grid">

                    <div class="service-card">

                        <h3>Cultural Strategy & Brand Positioning</h3>

                        <p>Strategic guidance for organizations seeking culturally grounded programming, partnerships, and positioning rooted in heritage storytelling and place-based identity.</p>

                    </div>

                    <div class="service-card">

                        <h3>Event Curation & Experience Design</h3>

                        <p>Signature activations, dinner series, and cultural programming designed as contained experiences that honor context, memory, and lived culture.</p>

                    </div>

                    <div class="service-card">

                        <h3>Fractional Creative Operations</h3>

                        <p>Creative operations leadership and system design for hospitality, cultural organizations, and mission-led brands. The Bahari Method applied to team optimization and workflow excellence.</p>

                    </div>

                </div>

            </div>

        </section>


        <section id="approach">

            <div class="container">

                <h2>THE BAHARI APPROACH</h2>

                <p style="text-align: center; max-width: 800px; margin: 0 auto 3rem; color: var(--text-light);">

                    Bahari approaches culture as strategy, not surface. We work through a methodology that integrates grounding, narrative, collaboration, curation, and reflection.

                </p>

                <div class="methodology-grid">

                    <div class="method-step">

                        <h4>Grounding</h4>

                        <p>We begin with context. Place, people, lineage, and intent shape the foundation of every project.</p>

                    </div>

                    <div class="method-step">

                        <h4>Narrative</h4>

                        <p>We define the story being held, drawing on cultural references, memory, sound, food, and spatial language.</p>

                    </div>

                    <div class="method-step">

                        <h4>Collaboration</h4>

                        <p>We assemble collaborators across disciplines — chefs, musicians, artists, cultural practitioners — aligned with the project's values.</p>

                    </div>

                    <div class="method-step">

                        <h4>Curation & Hosting</h4>

                        <p>We design and host the experience with care. Pacing, facilitation, and atmosphere are core components.</p>

                    </div>

                    <div class="method-step">

                        <h4>Reflection</h4>

                        <p>We document and reflect on the work, capturing insight and narrative to inform future iterations.</p>

                    </div>

                </div>

            </div>

        </section>


        <section id="about">

            <div class="container">

                <h2>FOUNDED & LED BY</h2>

                <div class="about-content">

                    <h3>Sulafa Said Silim</h3>

                    <p>Bahari is founded and led by a cultural strategist and curator with over 20 years of experience working across culture, community, and systems change.</p>

                    <p>Previous roles include Director of Creative & Content Operations at Canadian Tire Corporation, Senior Advisor at Mozilla Foundation (MC and program lead for Mozilla Festival Kenya), and AWARD Fellowship, Nairobi.</p>

                    <p>Recognized in Flare Magazine's Top 100 Millennial Women "How I Made It" (2018).</p>

                </div>

            </div>

        </section>


        <section id="portfolio">

            <div class="container">

                <h2>FEATURED WORK</h2>

                <div class="portfolio-item">

                    <h3>Saltwater Memories</h3>

                    <p>An intimate dinner series exploring everything that travels through oceans — trade routes, migration, memory, and coastal foodways. Rooted in Indian Ocean and East African culinary traditions.</p>

                    <p><strong>Upcoming:</strong> Campo Escondido partnership at Afro Nation, July 2026</p>

                </div>

            </div>

        </section>


        <section id="contact">

            <div class="container">

                <h2>LET'S WORK TOGETHER</h2>

                <div class="contact-content">

                    <p>Whether you're seeking cultural strategy, event curation, or fractional creative operations support, we'd love to hear about your project.</p>

                    <a href="mailto:hello@baharistudio.com" class="contact-email">hello@baharistudio.com</a>

                </div>

            </div>

        </section>

    </main>


    <footer>

        <div class="container">

            <p>&copy; 2026 Bahari Studio. Lisbon, Portugal.</p>

        </div>

    </footer>

</body>

</html>