:root {
    --linktree-gold: #e7ad4c;
    --linktree-pale-gold: #f0ce88;
    --linktree-line: rgba(214, 153, 51, .56);
    --linktree-ink: #080504;
}

.linktree-body {
    min-height: 100vh;
    margin: 0;
    color: var(--linktree-pale-gold);
    background: #070504;
    font-family: 'EB Garamond', Georgia, serif;
}

.linktree-page {
    position: relative;
    isolation: isolate;
    width: min(calc(100% - 32px), 680px);
    margin: 0 auto;
    padding: 14px 0 16px;
    overflow: hidden;
}

/* The shared site stylesheet gives every section generous page padding. */
.linktree-page > section {
    position: static;
    padding: 0;
}

.linktree-page > section.linktree-newsletter {
    padding: 14px;
}

.linktree-page__glow {
    position: fixed;
    z-index: -1;
    top: 8vh;
    left: 50%;
    width: min(700px, 100vw);
    height: 500px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(102, 41, 12, .15), transparent 68%);
    pointer-events: none;
}

.linktree-profile {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.linktree-profile__image {
    display: block;
    width: 86px;
    height: 86px;
    margin-bottom: 10px;
    border: 1px solid var(--linktree-gold);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 5px rgba(67, 28, 9, .62), 0 14px 36px rgba(0, 0, 0, .5);
}

.linktree-profile__image--fallback {
    display: grid;
    place-items: center;
    color: var(--linktree-gold);
    background: radial-gradient(circle, #53270c, #120704 72%);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 42px;
}

.linktree-kicker,
.linktree-section-label {
    margin: 0;
    color: var(--linktree-gold);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 10px;
    letter-spacing: .25em;
    line-height: 1.4;
    text-transform: uppercase;
}

.linktree-profile h1 {
    margin: 7px 0 0;
    color: #f3ca7a;
    font-family: 'Cinzel', Georgia, serif;
    font-size: clamp(25px, 4.5vw, 36px);
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.08;
    text-transform: uppercase;
}

.linktree-profile__intro {
    margin: 6px 0 0;
    color: #ebd5aa;
    font-size: 16px;
    font-style: italic;
    line-height: 1.25;
    text-transform: capitalize;
}

.linktree-social-wrap {
    margin-top: 11px;
}

.linktree-social-wrap .linktree-section-label {
    margin-bottom: 7px;
}

.linktree-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.linktree-social a {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid var(--linktree-line);
    border-radius: 50%;
    color: var(--linktree-gold);
    background: rgba(15, 6, 3, .72);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 9px;
    letter-spacing: .04em;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.linktree-social a:hover,
.linktree-social a:focus-visible {
    border-color: #f8d48c;
    color: #1a0a04;
    background: var(--linktree-gold);
}

.linktree-newsletter {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--linktree-line);
    border-radius: 8px;
    background: linear-gradient(100deg, rgba(61, 22, 10, .9), rgba(21, 8, 4, .96));
    box-shadow: 0 15px 30px rgba(0, 0, 0, .25);
}

.linktree-newsletter__icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--linktree-gold);
    border-radius: 50%;
    color: var(--linktree-gold);
}

.linktree-newsletter__icon svg {
    width: 23px;
    height: 23px;
}

.linktree-newsletter h2 {
    margin: 0;
    color: #f1c875;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.linktree-newsletter__content > p {
    max-width: 480px;
    margin: 3px 0 7px;
    color: #f0d9b2;
    font-size: 14px;
    line-height: 1.25;
}

.linktree-newsletter__content,
.linktree-newsletter .nl-form,
.linktree-newsletter .nl-form__field {
    min-width: 0;
}

.linktree-newsletter .nl-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
}

.linktree-newsletter .nl-form__field {
    min-width: 0;
}

.linktree-newsletter .newsletter-hp,
.linktree-newsletter .nl-form__label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.linktree-newsletter .nl-form__icon {
    display: none;
}

.linktree-newsletter .nl-form__input,
.linktree-newsletter .nl-form__submit {
    min-height: 36px;
    box-sizing: border-box;
    border: 1px solid rgba(208, 155, 61, .62);
    border-radius: 4px;
    font-family: 'Cinzel', Georgia, serif;
}

.linktree-newsletter .nl-form__submit {
    white-space: nowrap;
}

.linktree-newsletter .nl-form__input {
    width: 100%;
    padding: 0 10px;
    color: #f4dbad;
    background: rgba(4, 2, 1, .78);
}

.linktree-newsletter .nl-form__input::placeholder {
    color: #9e7b4a;
}

.linktree-newsletter .nl-form__submit {
    padding: 0 12px;
    color: #251006;
    background: linear-gradient(180deg, #f3c669, #c88b2c);
    cursor: pointer;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.linktree-newsletter .nl-form__submit:hover,
.linktree-newsletter .nl-form__submit:focus-visible {
    background: #ffe19a;
}

.linktree-form-status {
    margin: 10px 0 0 !important;
    color: #f1c875 !important;
    font-style: italic;
}

.linktree-destinations {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}

.linktree-destination {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 112px 18px;
    align-items: center;
    min-height: 64px;
    gap: 10px;
    padding: 7px 8px 7px 9px;
    overflow: hidden;
    border: 1px solid var(--linktree-line);
    border-radius: 8px;
    color: var(--linktree-pale-gold);
    background: linear-gradient(90deg, rgba(47, 16, 7, .92), rgba(18, 7, 4, .96));
    box-shadow: 0 10px 24px rgba(0, 0, 0, .27);
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, filter .2s ease;
}

.linktree-destination:hover,
.linktree-destination:focus-visible {
    border-color: #f5ca72;
    filter: brightness(1.14);
    transform: translateY(-2px);
}

.linktree-destination__icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--linktree-gold);
    border-radius: 50%;
    color: #f4bd58;
    font-size: 19px;
    line-height: 1;
}

.linktree-destination__copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.linktree-destination__copy strong {
    color: #f3cf8b;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.25;
    text-transform: uppercase;
}

.linktree-destination__copy small {
    max-width: 560px;
    color: #ead5ae;
    font-size: 14px;
    line-height: 1.2;
}

.linktree-destination__media {
    align-self: stretch;
    min-height: 48px;
    overflow: hidden;
    border-left: 1px solid rgba(214, 153, 51, .32);
}

.linktree-destination__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.linktree-destination__arrow {
    color: #f1bb58;
    font-family: Georgia, serif;
    font-size: 32px;
    line-height: 1;
    text-align: right;
}

.linktree-platforms {
    margin-top: 16px;
    text-align: center;
}

.linktree-platforms__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-top: 7px;
}

.linktree-platforms__list a {
    padding: 5px 9px;
    border: 1px solid rgba(214, 153, 51, .42);
    border-radius: 999px;
    color: #dcb26d;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 9px;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.linktree-platforms__list a:hover,
.linktree-platforms__list a:focus-visible {
    border-color: var(--linktree-gold);
    color: #ffe0a0;
}

.linktree-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    margin-top: 17px;
    color: #8f6a3e;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 9px;
    letter-spacing: .12em;
    text-align: center;
    text-transform: uppercase;
}

.linktree-footer a {
    color: var(--linktree-gold);
    text-decoration: none;
}

.linktree-footer a:hover,
.linktree-footer a:focus-visible {
    color: #ffe0a0;
}

@media (max-width: 600px) {
    .linktree-page {
        width: min(calc(100% - 28px), 560px);
        padding: 10px 0 12px;
    }

    .linktree-profile__image {
        width: 70px;
        height: 70px;
        margin-bottom: 8px;
    }

    .linktree-profile h1 {
        font-size: clamp(21px, 7vw, 29px);
        letter-spacing: .06em;
    }

    .linktree-profile__intro {
        max-width: 290px;
        font-size: 14px;
    }

    .linktree-newsletter {
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: center;
        gap: 9px;
        margin-top: 12px;
        padding: 10px;
    }

    .linktree-page > section.linktree-newsletter {
        padding: 10px;
    }

    .linktree-newsletter__icon {
        width: 36px;
        height: 36px;
    }

    .linktree-newsletter__icon svg {
        width: 19px;
        height: 19px;
    }

    .linktree-newsletter h2 {
        font-size: 11px;
        letter-spacing: .06em;
    }

    .linktree-newsletter__content > p {
        font-size: 14px;
    }

    .linktree-newsletter .nl-form {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .linktree-newsletter .nl-form__submit {
        width: auto;
        padding: 0 10px;
    }

    .linktree-destination {
        grid-template-columns: 36px minmax(0, 1fr) 76px 16px;
        min-height: 60px;
        gap: 7px;
        padding: 6px 7px 6px 7px;
    }

    .linktree-destination__icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .linktree-destination__copy strong {
        font-size: 8px;
        letter-spacing: .05em;
    }

    .linktree-destination__copy small {
        display: -webkit-box;
        overflow: hidden;
        font-size: 12px;
        line-height: 1.18;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .linktree-destination__arrow {
        font-size: 22px;
    }

    .linktree-destination__media {
        min-height: 46px;
    }
}
