body[data-edit-mode=true] .t3-editable {
    outline: 1px dashed rgba(255, 255, 255, .65);
    outline-offset: 5px;
    cursor: text;
}

body[data-edit-mode=true] .t3-intro .t3-editable,
body[data-edit-mode=true] .t3-services .t3-editable,
body[data-edit-mode=true] .t3-contact .t3-editable,
body[data-edit-mode=true] .t3-visit .t3-editable {
    outline-color: var(--clay);
}

body[data-edit-mode=true] .t3-editable:focus {
    outline: 2px solid var(--clay);
    background: rgba(255, 255, 255, .08);
}

.t3-edit-toolbar {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 24px;
    padding: 8px clamp(24px, 6vw, 100px);
    color: #242018;
    background: #e8dfd1;
    box-shadow: 0 1px 0 rgba(36, 32, 24, .12);
    font: 500 12px 'DM Sans', Arial, sans-serif;
}

.t3-edit-toolbar p {
    margin: 0;
}

.t3-edit-toolbar-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.t3-edit-toolbar .t3-theme-toggle {
    min-width: 148px;
    min-height: 34px;
    justify-content: space-between;
    border: 1px solid rgba(36, 32, 24, .3);
    padding: 8px 9px;
    color: #242018;
    background: rgba(255, 255, 255, .55);
}

.t3-edit-toolbar .t3-theme-dots i {
    border-color: rgba(36, 32, 24, .3);
}

.t3-edit-toolbar .t3-theme-toggle::after {
    width: 5px;
    height: 5px;
    margin: -3px 2px 0 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: '';
    transform: rotate(45deg);
}

.t3-edit-toolbar .t3-font-selector {
    min-width: 120px;
    border: 1px solid rgba(36, 32, 24, .3);
    padding: 8px 22px 8px 9px;
    color: #242018;
    background: rgba(255, 255, 255, .55);
    font: 10px 'DM Sans', Arial, sans-serif;
    letter-spacing: .04em;
}

.t3-edit-toolbar .t3-font-selector option {
    color: #242018;
    background: white;
}

.t3-save-status {
    min-width: 145px;
    color: #6d5147;
    font-size: 11px;
    text-align: right;
}

body[data-edit-mode=true] .t3-nav {
    top: 54px;
}

body[data-edit-mode=true] .t3-hero-content {
    margin-top: 199px;
}

.t3-hero-picker {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 55px;
    display: flex;
    gap: 7px;
    align-items: center;
    max-width: min(90vw, 430px);
    padding: 9px;
    color: white;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(8px);
    font: 10px 'DM Sans', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.t3-hero-upload {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .75);
    padding: 8px 10px;
    cursor: pointer;
}

.t3-hero-upload input {
    display: none;
}

@media (max-width: 760px) {
    .t3-edit-toolbar {
        min-height: 102px;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .t3-edit-toolbar-controls {
        width: 100%;
        margin-left: 0;
    }

    .t3-save-status {
        min-width: 0;
        margin-left: auto;
    }

    body[data-edit-mode=true] .t3-nav {
        top: 102px;
    }

    body[data-edit-mode=true] .t3-hero-content {
        margin-top: 247px;
    }
}
