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

        html {
            line-height: 1.625;
            -webkit-text-size-adjust: 100%;
        }

        body {
            background-color: #f4f4f4;
            color: #333;
            font-family: "Alegreya Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
            font-size: 20px;
            font-weight: 400;
            line-height: 1.625;
            margin: 0;
        }

        .site-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
        }

        .site-header {
            background-color: #111;
            color: #fff;
            padding: 20px 5%;
            text-align: center;
        }

        .site-title {
            font-family: Lora, serif;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .site-description {
            font-size: 16px;
            font-weight: 400;
            opacity: 0.8;
        }

        .content-wrap {
            padding: 60px 5%;
            max-width: 800px;
            margin: 0 auto;
        }

        h1 {
            color: #111;
            font-family: Lora, serif;
            font-size: 46px;
            font-weight: 400;
            line-height: 1.2;
            margin: 0 0 30px;
            letter-spacing: -1.25px;
        }

        h2 {
            color: #111;
            font-family: Lora, serif;
            font-size: 36px;
            font-weight: 400;
            line-height: 1.2;
            margin: 32px 0 24px;
            letter-spacing: -1px;
        }

        h3 {
            color: #111;
            font-family: Lora, serif;
            font-size: 30px;
            font-weight: 400;
            line-height: 1.2;
            margin: 32px 0 20px;
            letter-spacing: -0.75px;
        }

        h4 {
            color: #111;
            font-family: Lora, serif;
            font-size: 24px;
            font-weight: 400;
            line-height: 1.2;
            margin: 28px 0 18px;
        }

        h5, h6 {
            color: #d4af37;
            font-family: "Alegreya Sans", sans-serif;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin: 24px 0 16px;
        }

        article p {
            margin: 0 0 28px;
            line-height: 1.8;
        }

        article a {
            color: #d4af37;
            text-decoration: underline;
            font-weight: 700;
        }

        article a:hover {
            color: #333;
            text-decoration: none;
        }

        .transition-section {
            margin: 40px 0;
            padding: 30px 0;
            border-top: 1px solid #eee;
        }

        .transition-section p {
            margin-bottom: 28px;
            line-height: 1.8;
        }

        {% if links %}
        .links-section {
            background-color: #f2f2f2;
            padding: 60px 5%;
            margin-top: 60px;
        }

        .links-section-inner {
            max-width: 1000px;
            margin: 0 auto;
        }

        .links-section h3 {
            color: #111;
            font-family: Lora, serif;
            font-size: 28px;
            font-weight: 400;
            margin: 0 0 20px;
            letter-spacing: -0.75px;
        }

        .links-section ul {
            list-style: none;
            margin: 0 0 40px;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px 30px;
        }

        .links-section li {
            margin: 0;
            padding: 0;
        }

        .links-section a {
            color: #333;
            text-decoration: none;
            font-size: 18px;
            line-height: 1.6;
            display: block;
            padding: 8px 0;
            transition: color 0.2s ease;
        }

        .links-section a:hover {
            color: #d4af37;
        }

        .links-section a:before {
            content: "→ ";
            color: #d4af37;
            margin-right: 8px;
        }
        {% endif %}

        .site-footer {
            background-color: #fff;
            padding: 40px 5%;
            text-align: center;
            font-size: 16px;
            border-top: 1px solid #eee;
        }

        @media only screen and (max-width: 860px) {
            body {
                font-size: 18px;
            }

            .site-header {
                padding: 15px 5%;
            }

            .site-title {
                font-size: 24px;
                letter-spacing: 2px;
            }

            .content-wrap {
                padding: 40px 5%;
            }

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 30px;
            }

            h3 {
                font-size: 24px;
            }

            {% if links %}
            .links-section {
                padding: 40px 5%;
            }

            .links-section h3 {
                font-size: 24px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .links-section a {
                font-size: 16px;
            }
            {% endif %}
        }

        @media only screen and (max-width: 600px) {
            .site-title {
                font-size: 20px;
            }

            .site-description {
                font-size: 14px;
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 24px;
            }

            h3 {
                font-size: 20px;
            }
        }
    