<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Hop Sommelier | Gourmet Fermented Beverage Consulting</title>

    <style>

        /* Import Google Fonts */

        @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');


        /* Color Palette & Variables */

        :root {

            --forest-green: #1A3620;

            --cream: #F8F5F0;

            --charcoal: #333333;

            --gold: #C5A059;

        }


        /* Global Styles */

        body, html {

            margin: 0;

            padding: 0;

            font-family: 'Lato', sans-serif;

            color: var(--charcoal);

            background-color: var(--cream);

            line-height: 1.6;

        }


        h1, h2, h3 {

            font-family: 'Playfair Display', serif;

            font-weight: 700;

            margin: 0 0 20px 0;

        }


        a {

            text-decoration: none;

            color: var(--forest-green);

        }


        /* Header / Nav */

        header {

            background-color: var(--forest-green);

            color: var(--cream);

            padding: 20px 50px;

            display: flex;

            justify-content: space-between;

            align-items: center;

        }


        .logo {

            font-family: 'Playfair Display', serif;

            font-size: 24px;

            font-weight: 700;

            letter-spacing: 1px;

            color: var(--cream);

        }


        nav a {

            color: var(--cream);

            margin-left: 30px;

            text-transform: uppercase;

            font-size: 14px;

            letter-spacing: 1px;

            transition: color 0.3s ease;

        }


        nav a:hover {

            color: var(--gold);

        }


        /* Hero Section */

        .hero {

            background-color: var(--forest-green);

            color: var(--cream);

            text-align: center;

            padding: 100px 20px;

            border-bottom: 5px solid var(--gold);

        }


        .hero h1 {

            font-size: 48px;

            margin-bottom: 20px;

        }


        .hero p {

            font-size: 20px;

            max-width: 700px;

            margin: 0 auto 40px auto;

            font-weight: 300;

        }


        .btn {

            background-color: var(--gold);

            color: var(--forest-green);

            padding: 15px 30px;

            font-size: 16px;

            font-weight: 700;

            text-transform: uppercase;

            letter-spacing: 1px;

            border: none;

            cursor: pointer;

            transition: background 0.3s ease;

        }


        .btn:hover {

            background-color: #d1b173;

        }


        /* Services Section */

        .services {

            padding: 80px 50px;

            text-align: center;

        }


        .services h2 {

            font-size: 36px;

            color: var(--forest-green);

            margin-bottom: 50px;

        }


        .service-grid {

            display: flex;

            justify-content: center;

            gap: 40px;

            flex-wrap: wrap;

        }


        .service-card {

            background: white;

            padding: 40px;

            border-top: 4px solid var(--forest-green);

            width: 300px;

            box-shadow: 0 4px 6px rgba(0,0,0,0.05);

            text-align: left;

        }


        .service-card h3 {

            color: var(--forest-green);

            font-size: 22px;

        }


        /* Philosophy Section */

        .philosophy {

            background-color: white;

            padding: 80px 50px;

            text-align: center;

        }


        .philosophy-content {

            max-width: 800px;

            margin: 0 auto;

        }


        .philosophy h2 {

            font-size: 36px;

            color: var(--forest-green);

        }


        .philosophy p {

            font-size: 18px;

            color: var(--charcoal);

        }


        /* Footer / Contact */

        footer {

            background-color: var(--forest-green);

            color: var(--cream);

            text-align: center;

            padding: 60px 20px;

        }


        footer h2 {

            color: var(--gold);

        }


        /* Responsive Design */

        @media (max-width: 768px) {

            header {

                flex-direction: column;

                padding: 20px;

            }

            nav {

                margin-top: 20px;

            }

            nav a {

                margin: 0 10px;

            }

            .hero h1 {

                font-size: 36px;

            }

            .service-grid {

                flex-direction: column;

                align-items: center;

            }

        }

    </style>

</head>

<body>


    <header>

        <div class="logo">Hop Sommelier</div>

        <nav>

            <a href="#services">Services</a>

            <a href="#philosophy">Philosophy</a>

            <a href="#contact">Contact</a>

        </nav>

    </header>


    <section class="hero">

        <h1>Elevating the Art of Fermentation</h1>

        <p>Bridging the gap between craft production and gourmet hospitality. Enhance your beverage program, train your staff, and increase your average check size with expert beer and botanical pairings.</p>

        <a href="#contact" class="btn">Book a Consultation</a>

    </section>


    <section id="services" class="services">

        <h2>Consulting Services</h2>

        <div class="service-grid">

            <div class="service-card">

                <h3>Menu Curation</h3>

                <p>Strategic selection of craft beers, ciders, and fermented beverages tailored to your establishment's culinary profile and clientele.</p>

            </div>

            <div class="service-card">

                <h3>Staff Training</h3>

                <p>Empowering your hospitality team with the vocabulary, tasting notes, and pairing confidence to upsell premium beverages.</p>

            </div>

            <div class="service-card">

                <h3>Pairing Experiences</h3>

                <p>Designing custom tasting menus and events that showcase the complex interplay between gourmet food and artisanal hops.</p>

            </div>

        </div>

    </section>


    <section id="philosophy" class="philosophy">

        <div class="philosophy-content">

            <h2>The Philosophy</h2>

            <p>Most high-end beverage programs overlook the complexity of fermented botanicals. Beer deserves the same respect, presentation, and culinary integration as fine wine. By treating hops and fermentation with gourmet sophistication, we unlock new revenue streams and unforgettable dining experiences for your guests.</p>

        </div>

    </section>


    <footer id="contact">

        <h2>Ready to upgrade your beverage program?</h2>

        <p>Contact me to schedule a discovery call.</p>

        <p style="margin-top: 30px;">

            <a href="mailto:contact@yourdomain.com" class="btn">Email Me</a>

        </p>

        <p style="margin-top: 50px; font-size: 12px; opacity: 0.7;">&copy; 2026 Hop Sommelier. All rights reserved.</p>

    </footer>


</body>

</html>