    /* ── RESET & BASE ── */
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --teal: #0f3d3e;
        --teal2: #0a2d2e;
        --gold: #e6d2a1;
        --gold2: #c8b47e;
        --white: #f9f7fa;
        --black: #2a2a2a;
    }

    html,
    body {
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: var(--teal2);
        font-family: 'DM Sans', sans-serif;
        color: var(--white);
        cursor: none;
    }

    /* ── CUSTOM CURSOR ── */
    #cursor {
        position: fixed;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--gold);
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference;
        transition: width 0.2s, height 0.2s, background 0.2s;
    }

    #cursor-ring {
        position: fixed;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(230, 210, 161, 0.5);
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
    }

    body:has(a:hover) #cursor {
        width: 16px;
        height: 16px;
    }

    /* ── CANVAS BACKGROUND ── */
    #bg-canvas {
        position: fixed;
        inset: 0;
        z-index: 0;
    }

    /* ── GRAIN ── */
    .grain {
            position: fixed;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.55;
    }

    /* ── MAIN WRAPPER ── */
    #app {
        position: relative;
        z-index: 10;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 24px;
        gap: 0;
    }

    /* ── CORNER FRAMES ── */
    .corner {
        position: fixed;
        width: 28px;
        height: 28px;
        border-style: solid;
        border-color: rgba(230, 210, 161, 0.35);
        z-index: 20;
        opacity: 0;
    }

    .corner.tl {
        top: 20px;
        left: 20px;
        border-width: 1.5px 0 0 1.5px;
    }

    .corner.tr {
        top: 20px;
        right: 20px;
        border-width: 1.5px 1.5px 0 0;
    }

    .corner.bl {
        bottom: 20px;
        left: 20px;
        border-width: 0 0 1.5px 1.5px;
    }

    .corner.br {
        bottom: 20px;
        right: 20px;
        border-width: 0 1.5px 1.5px 0;
    }

    /* ── EYEBROW ── */
    #eyebrow {
        font-family: 'DM Sans', sans-serif;
        font-size: clamp(9px, 1vw, 11px);
        font-weight: 300;
        letter-spacing: 6px;
        text-transform: uppercase;
        color: rgba(230, 210, 161, 0.5);
        margin-bottom: 20px;
        opacity: 0;
    }

    /* ── BRAND NAME ── */
    #brand-wrap {
        overflow: hidden;
        line-height: 1;
        margin-bottom: 6px;
    }

    #brand {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(64px, 12vw, 130px);
        font-weight: 200;
        color: var(--gold);
        letter-spacing: clamp(2px, 2vw, 8px);
        line-height: 1;
        display: block;
        transform: translateY(110%);
        text-shadow: 0 0 80px rgba(230, 210, 161, 0.12);
    }

    /* ── MEANING LINE ── */
    #meaning {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(15px, 2.2vw, 22px);
        font-weight: 300;
        font-style: italic;
        color: rgba(249, 247, 250, 0.7);
        letter-spacing: 1px;
        margin-bottom: 36px;
        opacity: 0;
    }

    #meaning span {
        color: var(--gold);
        font-style: normal;
        font-weight: 400;
    }

    /* ── DIVIDER ── */
    #divider {
        display: flex;
        align-items: center;
        gap: 12px;
        width: min(280px, 60vw);
        margin-bottom: 34px;
        opacity: 0;
    }

    .div-line {
        flex: 1;
        height: 1px;
        background: rgba(230, 210, 161, 0.2);
        transform: scaleX(0);
        transform-origin: center;
    }

    .div-dia {
        width: 6px;
        height: 6px;
        background: var(--gold);
        transform: rotate(45deg);
        opacity: 0.55;
        flex-shrink: 0;
    }

    /* ── TAGLINE ── */
    #tagline {
        font-family: 'DM Sans', sans-serif;
        font-size: clamp(11px, 1.3vw, 13px);
        font-weight: 300;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(249, 247, 250, 0.4);
        margin-bottom: 52px;
        opacity: 0;
        text-align: center;
    }

    /* ── NOTIFY FORM ── */
    #notify-wrap {
        display: flex;
        gap: 0;
        margin-bottom: 52px;
        opacity: 0;
        transform: translateY(20px);
        width: min(420px, 90vw);
    }

    #notify-input {
        flex: 1;
        padding: 14px 20px;
        background: rgba(249, 247, 250, 0.06);
        border: 1px solid rgba(230, 210, 161, 0.2);
        border-right: none;
        color: var(--white);
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 300;
        letter-spacing: 0.5px;
        outline: none;
        border-radius: 2px 0 0 2px;
        transition: border-color 0.3s, background 0.3s;
    }

    #notify-input::placeholder {
        color: rgba(249, 247, 250, 0.3);
    }

    #notify-input:focus {
        border-color: rgba(230, 210, 161, 0.5);
        background: rgba(249, 247, 250, 0.09);
    }

    #notify-btn {
        padding: 14px 24px;
        background: var(--gold);
        border: none;
        color: var(--teal);
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        cursor: none;
        border-radius: 0 2px 2px 0;
        transition: background 0.25s, transform 0.15s;
    }

    #notify-btn:hover {
        background: #f0ddb5;
    }

    #notify-btn:active {
        transform: scale(0.97);
    }

    #notify-success {
        display: none;
        text-align: center;
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        font-style: italic;
        color: var(--gold);
        letter-spacing: 0.5px;
    }

    /* ── SOCIAL ICONS ── */
    #socials {
        display: flex;
        align-items: center;
        gap: 22px;
        opacity: 0;
        transform: translateY(16px);
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(230, 210, 161, 0.2);
        border-radius: 50%;
        text-decoration: none;
        transition: border-color 0.3s, background 0.3s, transform 0.3s;
        position: relative;
    }

    .social-link svg {
        width: 17px;
        height: 17px;
        fill: rgba(230, 210, 161, 0.55);
        transition: fill 0.3s;
    }

    .social-link:hover {
        border-color: rgba(230, 210, 161, 0.7);
        background: rgba(230, 210, 161, 0.07);
        transform: translateY(-3px);
    }

    .social-link:hover svg {
        fill: var(--gold);
    }

    /* tooltip */
    .social-link::after {
        content: attr(data-label);
        position: absolute;
        bottom: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        font-family: 'DM Sans', sans-serif;
        font-size: 9px;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(230, 210, 161, 0.6);
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.2s;
        pointer-events: none;
    }

    .social-link:hover::after {
        opacity: 1;
    }

    /* ── BOTTOM HANDLE ── */
    #handle {
        position: fixed;
        bottom: 26px;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        font-weight: 300;
        letter-spacing: 3px;
        color: rgba(230, 210, 161, 0.25);
        text-transform: lowercase;
        z-index: 20;
        opacity: 0;
    }

    /* ── MOBILE ── */
    @media (max-width: 600px) {

        html,
        body {
            overflow: hidden;
        }

        #app {
            padding: 30px 20px;
        }

        #notify-wrap {
            flex-direction: column;
            gap: 8px;
        }

        #notify-input {
            border-right: 1px solid rgba(230, 210, 161, 0.2);
            border-radius: 2px;
        }

        #notify-btn {
            border-radius: 2px;
            padding: 13px;
        }
    }