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

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-image: url('./images/hero.jpg');
            background-size: cover;
            /* Resizes the image to cover the entire container */
            background-position: center;
            /* Centers the image within the container */
            background-repeat: no-repeat;
            color: #000000;
            line-height: 1.5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;

        }

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

        /* Header & Navigation - clean row like omarapollo.com */
        .site-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 1rem;
            margin-bottom: 4rem;
        }

        .logo a {
            font-size: 1.5rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            text-decoration: none;
            color: #000;
        }

        .main-nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .main-nav a {
            text-decoration: none;
            color: #000;
            font-size: 1rem;
            font-weight: 400;
            border-bottom: 1px solid transparent;
            transition: border-color 0.1s ease;
            padding-bottom: 0.2rem;
        }

        .main-nav a:hover {
            border-bottom-color: #999;
        }

        /* Vault link gets a subtle distinction - matches "ritual" vibe */
        .vault-link {
            opacity: 0.8;
            font-feature-settings: "ss01";
        }

        /* Hero / Premise section - clean and direct */
        .hero {
            margin: 3rem 0 5rem 0;
            max-width: 700px;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 500;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero .premise {
            font-size: 1.3rem;
            color: #444;
            border-left: 3px solid #ccc;
            padding-left: 1.8rem;
        }

        /* Feature grid - simple row of key actions */
        .feature-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 4rem 0;
            border-top: 1px solid #eaeaea;
            padding-top: 3rem;
        }

        .feature-item {
            flex: 1 1 200px;
        }

        .feature-item .label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #666;
            margin-bottom: 0.75rem;
        }

        .feature-item .title {
            font-size: 1.8rem;
            font-weight: 450;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .feature-item .title a {
            text-decoration: none;
            color: #000;
            border-bottom: 1px dotted #ccc;
        }

        .feature-item .title a:hover {
            border-bottom: 1px solid #000;
        }

        .feature-item .description {
            color: #555;
            font-size: 1rem;
        }

        /* Key ritual block - minimal but informative */
        .ritual-note {
            background: #f8f8f8;
            border-radius: 0;
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px solid #eaeaea;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .ritual-note p {
            font-size: 1.15rem;
            max-width: 600px;
            color: #222;
        }

        .ritual-note .key-cta {
            background: #000;
            color: #fff;
            padding: 0.8rem 2rem;
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #000;
            transition: 0.1s ease;
            display: inline-block;
            margin-top: 1rem;
        }

        .ritual-note .key-cta:hover {
            background: #fff;
            color: #000;
        }

        /* Footer - clean utility nav */
        .site-footer {
            margin-top: 5rem;
            padding-top: 2rem;
            border-top: 1px solid #eaeaea;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            color: #666;
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #444;
            text-decoration: none;
            border-bottom: 1px dotted #ccc;
        }

        .footer-links a:hover {
            border-bottom: 1px solid #444;
        }

        .small-note {
            font-size: 0.85rem;
            color: #888;
        }

        hr {
            border: none;
            border-top: 1px solid #eaeaea;
            margin: 2rem 0;
        }

        .hero,
        .feature-grid,
        .ritual-note,
        div[class*="shows-teaser"],
        /* Targets any div with 'shows-teaser' in class */
        div[style*="display: flex"] {
            /* Be careful: this targets your flex divs */
            margin-bottom: 0;
        }

        /* 3. A more precise way: target the specific sections we saw on your page */
        /* Use these exact class names based on your site's structure */
        .site-header {
            margin-bottom: 0;
        }

        .hero {
            margin-bottom: 0;
        }

        .feature-grid {
            margin-bottom: 0;
            margin-top: 0;
            /* Remove top margin too if needed */
        }

        .ritual-note {
            margin-bottom: 0;
        }

        /* 4. Ensure the body background is consistent */
        body {
            background: #ffffff;
            /* Or whatever your main background color is */
            margin: 0;
            padding: 0;
        }