    :root {
        --bg: #001938;
        --accent: #f96300;
        --link: #7fe0d6;
        --link-hover: #c9fff5;
        --title-pink: #fea3dc; /* ff6eca */
        --title-blue: #66c4e1;
        --nav-link: #fff2a8;
        --nav-link-hover: #fff9d9;
        --nav-active: #ffd86b;
        --container: 1100px;
        --max-width: 1100px
    }

    * {
        box-sizing: border-box
    }

    body {
        margin: 0;
        font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Trade Winds", sans-serif;
        background-color: var(--bg);
        /*background-image: url('https://www.caymanwindsurfing.com/wordpress/wp-content/uploads/cw_background.jpg');*/
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        color: #fff;
        line-height: 1.5
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .site {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 1rem;
    }

    /* Mobile: avoid fixed background for smoother scrolling on small screens */
    @media (max-width:720px) {
        body {
            background-attachment: scroll
        }
    }

    header.site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 0
    }

    .site-title {
        font-family: 'Trade Winds', system-ui, serif;
        font-size: 2.4rem;
        margin: 0;
        color: var(--title-pink);
        text-decoration: none
    }

    nav {
        margin-top: .5rem;
        font-family: 'Montserrat', system-ui, Arial, sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-size: 0.95rem
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: .5rem
    }

    /* Social icons */
    .social {
        display: flex;
        gap: .5rem;
        align-items: center
    }

    .social a {
        color: var(--nav-link);
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        padding: .25rem;
        border-radius: 6px;
        text-decoration: none
    }

    .social a:hover {
        color: var(--nav-link-hover);
        background: rgba(255, 255, 255, 0.03)
    }

    .social svg {
        width: 20px;
        height: 20px;
        display: block;
        fill: currentColor
    }

    /* visually hidden for screen readers */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
        border: 0
    }

    /* Navigation links use a pastel yellow for Caribbean contrast */
    .nav-list a {
        color: var(--nav-link);
        text-decoration: none;
        padding: .25rem .5rem;
        border-radius: 4px
    }

    /* Keep pastel yellow for nav links on hover/focus so color remains consistent */
    .nav-list a:hover,
    .nav-list a:focus {
        color: var(--nav-link);
        background: rgba(255, 255, 255, 0.04);
        outline: none;
    }

    .nav-list a:focus-visible {
        outline: 2px solid rgba(255, 216, 107, 0.25);
        outline-offset: 2px
    }

    /* Active / current page styling (inverse highlight with the same pastel yellow) */
    .nav-list a[aria-current="page"] {
        background: var(--nav-active);
        color: #001938;
        font-weight: 700;
        box-shadow: inset 0 0 0 2px rgba(255, 216, 107, 0.12);
    }

    /* Link colors (content links use a pastel Caribbean tone for contrast) */
    a,
    a:link,
    a:visited {
        color: var(--link);
    }

    a:hover,
    a:focus {
        color: var(--link-hover);
        text-decoration: none;
    }

    /* Make the site title non-underlined and provide a gentle hover state */
    /*
    .site-title:hover,
    .site-title:focus {
        color: var(--link-hover);
        text-decoration: none;
    }
    */

    .hero {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 6px;
        margin: 1rem 0
    }

    main {
        background: rgba(255, 255, 255, 0.03);
        padding: 1rem;
        border-radius: 6px
    }

    h1 {
        font-family: 'Special Elite', system-ui, serif;
        color: var(--accent);
        margin-top: 0
    }

    .sidebar {
        margin-top: 1rem
    }

    .grid {
        display: grid;
        grid-template-columns: 1fr 250px;
        gap: 1rem
    }

    .grid-main {
        display: grid;
        grid-template-columns: 1fr;
    }

    footer {
        margin: 2rem 0;
        padding: 1rem 0;
        font-size: .9rem;
        color: #ddd;
        border-top: 1px solid rgba(255, 255, 255, 0.04)
    }

    a.more {
        color: var(--accent)
    }

    /* Form styles */
    .form-group {
        margin-bottom: 1.5rem;
    }

    label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--nav-link);
        font-size: 1rem;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        font-family: inherit;
        font-size: 1rem;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    textarea:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(249, 99, 0, 0.1);
    }

    textarea {
        resize: vertical;
        min-height: 120px;
    }

    button[type="submit"] {
        background: var(--accent);
        color: #fff;
        border: none;
        padding: 0.75rem 2rem;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s, transform 0.1s;
        display: inline-block;
    }

    button[type="submit"]:hover {
        background: #e55a00;
        transform: translateY(-1px);
    }

    button[type="submit"]:active {
        transform: translateY(0);
    }

    #my-form-status {
        margin-top: 1rem;
        font-weight: 500;
        color: var(--link);
    }

    @media (max-width:720px) {
        .grid {
            grid-template-columns: 1fr
        }

        .site-title {
            font-size: 1.6rem
        }
    }