<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>O'Ryan Brody | 2026 Reel</title>

    <style>

        :root {

            --bg-color: #050505;

            --text-color: #ffffff;

            --accent-color: #3b82f6;

            --muted-text: #888888;

        }

        body {

            margin: 0;

            padding: 0;

            background-color: var(--bg-color);

            color: var(--text-color);

            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            min-height: 100vh;

            text-align: center;

        }

        .container {

            width: 90%;

            max-width: 1100px;

            padding: 60px 0;

        }

        header {

            margin-bottom: 50px;

        }

        h1 {

            font-size: 2.2rem;

            font-weight: 200;

            letter-spacing: 4px;

            margin: 0;

            text-transform: uppercase;

        }

        .tagline {

            font-size: 0.9rem;

            color: var(--muted-text);

            margin-top: 10px;

            letter-spacing: 2px;

            text-transform: uppercase;

        }

        /* Video Container */

        .reel-container {

            width: 100%;

            box-shadow: 0 30px 60px rgba(0,0,0,0.8);

            border-radius: 4px;

            overflow: hidden;

            background: #000;

        }

        /* Contact Section */

        .contact {

            margin-top: 60px;

            padding-top: 40px;

            border-top: 1px solid #1a1a1a;

        }

        .contact-link {

            display: inline-block;

            color: var(--text-color);

            text-decoration: none;

            font-size: 1.2rem;

            font-weight: 300;

            letter-spacing: 1px;

            transition: all 0.3s ease;

            border-bottom: 1px solid transparent;

        }

        .contact-link:hover {

            color: var(--accent-color);

            border-bottom: 1px solid var(--accent-color);

        }

        .footer {

            margin-top: 40px;

            font-size: 0.7rem;

            color: #333;

            letter-spacing: 1px;

        }

    </style>

</head>

<body>


    <div class="container">

        <header>

            <h1>O'Ryan Brody</h1>

            <div class="tagline">Creative Producer / Filmmaker</div>

        </header>


        <div class="reel-container">

            <div style="padding:56.25% 0 0 0;position:relative;">

                <iframe src="https://player.vimeo.com/video/281527547?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479&amp;autoplay=1" 

                        frameborder="0" 

                        allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" 

                        referrerpolicy="strict-origin-when-cross-origin" 

                        style="position:absolute;top:0;left:0;width:100%;height:100%;" 

                        title="O'Ryan Brody | 2026 | Reel">

                </iframe>

            </div>

            <script src="https://player.vimeo.com/api/player.js"></script>

        </div>


        <div class="contact">

            <a href="mailto:your-email@example.com" class="contact-link">Get In Touch</a>

        </div>


        <div class="footer">

            &copy; 2026 O'RYAN BRODY. ALL RIGHTS RESERVED.

        </div>

    </div>


</body>

</html>