/* ============================================================
   Dynamic Artist Profiles – Stylesheet
   Font: Playfair Display (headings) + DM Sans (body)
   Theme: Editorial dark-luxe with gold accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
    --ap-bg:        #0d0d0d;
    --ap-surface:   #161616;
    --ap-surface2:  #1e1e1e;
    --ap-border:    rgba(255,255,255,.08);
    --ap-gold:      #c9a84c;
    --ap-gold-lt:   #e8c96a;
    --ap-text:      #f0ece4;
    --ap-muted:     #8a8478;
    --ap-accent:    #c9a84c;
    --ap-radius:    12px;
    --ap-radius-lg: 20px;
    --ap-transition: .3s cubic-bezier(.25,.8,.25,1);
    --ap-shadow:    0 8px 32px rgba(0,0,0,.5);
    --ap-font-head: 'Playfair Display', Georgia, serif;
    --ap-font-body: 'DM Sans', system-ui, sans-serif;
}

/* ── Reset ── */
.ap-archive *, .ap-single * { box-sizing: border-box; }

/* ── Container ── */
.ap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ══════════════════════════════════════
   ARCHIVE PAGE
══════════════════════════════════════ */

/* Hero */
.ap-archive__hero {
    position: relative;
    background: var(--ap-bg);
    padding: 100px 0 80px;
    overflow: hidden;
    text-align: center;
}
.ap-archive__hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,168,76,.12) 0%, transparent 70%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            rgba(255,255,255,.025) 40px
        );
    pointer-events: none;
}
.ap-archive__eyebrow {
    font-family: var(--ap-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--ap-gold);
    margin: 0 0 16px;
}
.ap-archive__title {
    font-family: var(--ap-font-head);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: var(--ap-text);
    margin: 0 0 20px;
    line-height: 1;
}
.ap-archive__sub {
    font-family: var(--ap-font-body);
    font-size: 18px;
    color: var(--ap-muted);
    margin: 0;
    font-weight: 300;
}

/* Filter Nav */
.ap-filter {
    background: var(--ap-surface);
    border-bottom: 1px solid var(--ap-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.ap-filter__inner {
    display: flex;
    gap: 4px;
    padding: 12px 24px;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 1200px;
    margin: 0 auto;
}
.ap-filter__inner::-webkit-scrollbar { display: none; }
.ap-filter__btn {
    white-space: nowrap;
    font-family: var(--ap-font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid var(--ap-border);
    color: var(--ap-muted);
    text-decoration: none;
    transition: var(--ap-transition);
    background: transparent;
}
.ap-filter__btn:hover,
.ap-filter__btn.is-active {
    background: var(--ap-gold);
    border-color: var(--ap-gold);
    color: #000;
}

/* Archive Content */
.ap-archive__content {
    background: var(--ap-bg);
    padding: 60px 0 80px;
    min-height: 50vh;
}

/* ── Grid ── */
.ap-grid {
    display: grid;
    gap: 28px;
}
.ap-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ap-cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
    .ap-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ap-cols-3,
    .ap-cols-2 { grid-template-columns: 1fr; }
}

/* ── Artist Card ── */
.ap-card { list-style: none; }
.ap-card__inner {
    display: block;
    text-decoration: none;
    background: var(--ap-surface);
    border: 1px solid var(--ap-border);
    border-radius: var(--ap-radius-lg);
    overflow: hidden;
    transition: var(--ap-transition);
    transform: translateY(0);
}
.ap-card__inner:hover {
    transform: translateY(-6px);
    border-color: var(--ap-gold);
    box-shadow: 0 20px 60px rgba(201,168,76,.15);
}

/* Card image */
.ap-card__img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ap-surface2);
}
.ap-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.ap-card__inner:hover .ap-card__img { transform: scale(1.06); }

.ap-card__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    font-family: var(--ap-font-head);
    font-size: 52px;
    color: var(--ap-gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ap-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease;
}
.ap-card__inner:hover .ap-card__overlay { opacity: 1; }
.ap-card__cta {
    font-family: var(--ap-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ap-gold);
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Card body */
.ap-card__body { padding: 20px; }
.ap-card__name {
    font-family: var(--ap-font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--ap-text);
    margin: 0 0 6px;
    line-height: 1.2;
}
.ap-card__tagline {
    font-family: var(--ap-font-body);
    font-size: 13px;
    color: var(--ap-muted);
    margin: 0 0 12px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ap-card__meta { display: flex; flex-direction: column; gap: 8px; }
.ap-card__location {
    font-family: var(--ap-font-body);
    font-size: 12px;
    color: var(--ap-muted);
}
.ap-card__genres { display: flex; flex-wrap: wrap; gap: 6px; }
.ap-card__genre {
    font-family: var(--ap-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(201,168,76,.12);
    color: var(--ap-gold);
    border: 1px solid rgba(201,168,76,.25);
    padding: 3px 10px;
    border-radius: 50px;
}

/* Pagination */
.ap-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
    flex-wrap: wrap;
}
.ap-pagination .page-numbers {
    font-family: var(--ap-font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border: 1px solid var(--ap-border);
    border-radius: 8px;
    color: var(--ap-muted);
    text-decoration: none;
    transition: var(--ap-transition);
}
.ap-pagination .page-numbers:hover,
.ap-pagination .page-numbers.current {
    background: var(--ap-gold);
    border-color: var(--ap-gold);
    color: #000;
}

/* Empty state */
.ap-empty {
    text-align: center;
    padding: 100px 24px;
    color: var(--ap-muted);
    font-family: var(--ap-font-body);
}
.ap-empty__icon { font-size: 64px; margin-bottom: 20px; }
.ap-empty h2 { color: var(--ap-text); font-family: var(--ap-font-head); font-size: 32px; margin: 0 0 12px; }
.ap-empty p { font-size: 16px; margin: 0; }

/* ══════════════════════════════════════
   SINGLE ARTIST PAGE
══════════════════════════════════════ */

.ap-single { background: var(--ap-bg); }

/* Back link */
.ap-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ap-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ap-muted);
    text-decoration: none;
    letter-spacing: .03em;
    margin-bottom: 48px;
    transition: color .2s;
}
.ap-back-link:hover { color: var(--ap-gold); }

/* Hero */
.ap-single__hero {
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
}
.ap-single__hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: blur(40px) saturate(.4) brightness(.3);
    transform: scale(1.1);
}
.ap-single__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,13,13,.6) 0%,
        rgba(13,13,13,.95) 100%
    );
}
.ap-single__hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 60px;
}
.ap-single__hero-inner {
    display: flex;
    gap: 40px;
    align-items: flex-end;
}

/* Avatar */
.ap-single__avatar {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--ap-gold);
    overflow: hidden;
    box-shadow: 0 0 0 8px rgba(201,168,76,.1), var(--ap-shadow);
    background: var(--ap-surface2);
}
.ap-single__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ap-single__avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ap-font-head);
    font-size: 64px;
    font-weight: 900;
    color: var(--ap-gold);
    text-transform: uppercase;
}

/* Intro */
.ap-single__intro { flex: 1; padding-bottom: 8px; }
.ap-single__genres { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ap-single__genre-tag {
    font-family: var(--ap-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.4);
    color: var(--ap-gold);
    padding: 4px 14px;
    border-radius: 50px;
}
.ap-single__name {
    font-family: var(--ap-font-head);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: var(--ap-text);
    margin: 0 0 12px;
    line-height: 1;
}
.ap-single__tagline {
    font-family: var(--ap-font-body);
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--ap-muted);
    margin: 0 0 20px;
}
.ap-single__quick-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-family: var(--ap-font-body);
    font-size: 13px;
    color: var(--ap-muted);
    margin-bottom: 28px;
}
.ap-single__quick-meta span { display: flex; align-items: center; gap: 6px; }

/* Social Buttons */
.ap-single__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ap-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ap-font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid var(--ap-border);
    background: rgba(255,255,255,.04);
    color: var(--ap-text);
    text-decoration: none;
    transition: var(--ap-transition);
    backdrop-filter: blur(6px);
}
.ap-social-btn:hover {
    background: var(--ap-gold);
    border-color: var(--ap-gold);
    color: #000;
    transform: translateY(-2px);
}
.ap-social-btn__icon { font-size: 16px; }

/* Body */
.ap-single__body {
    padding: 60px 24px 80px;
}
.ap-section { margin-bottom: 72px; }
.ap-section__heading {
    font-family: var(--ap-font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--ap-text);
    margin: 0 0 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ap-border);
    position: relative;
}
.ap-section__heading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--ap-gold);
}

/* Bio */
.ap-single__bio-content {
    font-family: var(--ap-font-body);
    font-size: 17px;
    line-height: 1.85;
    color: rgba(240,236,228,.75);
    max-width: 800px;
}
.ap-single__bio-content p { margin: 0 0 20px; }
.ap-single__bio-content p:last-child { margin: 0; }

/* Video */
.ap-single__video-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: var(--ap-radius-lg);
    overflow: hidden;
    background: #000;
    border: 1px solid var(--ap-border);
}
.ap-single__video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Related */
.ap-single__related {}

/* ── Responsive ── */
@media (max-width: 768px) {
    .ap-single__hero { padding-top: 48px; }
    .ap-single__hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    .ap-single__avatar { width: 150px; height: 150px; }
    .ap-single__genres,
    .ap-single__quick-meta,
    .ap-single__socials { justify-content: center; }
    .ap-archive__hero { padding: 70px 0 60px; }
    .ap-filter__inner { padding: 10px 16px; }
}

/* ── No-artist message ── */
.ap-no-artists {
    text-align: center;
    color: var(--ap-muted);
    font-family: var(--ap-font-body);
    font-size: 18px;
    padding: 60px 0;
}

/* ══════════════════════════════════════
   PAINTER-SPECIFIC ADDITIONS
══════════════════════════════════════ */

/* Commission badge on cards */
.ap-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ap-gold);
    color: #000;
    font-family: var(--ap-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.ap-card__medium {
    font-family: var(--ap-font-body);
    font-size: 12px;
    color: var(--ap-muted);
    font-style: italic;
}

/* ══════════════════════════════════════
   FRONT-END EDIT FORM
══════════════════════════════════════ */

.ap-fe-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 0 60px;
    font-family: var(--ap-font-body);
    color: var(--ap-text);
}

/* Notices */
.ap-notice {
    padding: 14px 20px;
    border-radius: var(--ap-radius);
    font-size: 15px;
    margin-bottom: 24px;
    border: 1px solid transparent;
    line-height: 1.5;
}
.ap-notice--success { background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.3); color: #86efac; }
.ap-notice--info    { background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.3); color: #93c5fd; }
.ap-notice--warn    { background: rgba(234,179,8,.12);  border-color: rgba(234,179,8,.3);  color: #fde047; }
.ap-notice--error   { background: rgba(239,68,68,.12);  border-color: rgba(239,68,68,.3);  color: #fca5a5; }
.ap-notice a { color: inherit; text-decoration: underline; }

/* Form sections */
.ap-fe-section {
    background: var(--ap-surface);
    border: 1px solid var(--ap-border);
    border-radius: var(--ap-radius-lg);
    padding: 28px 32px;
    margin-bottom: 24px;
}
.ap-fe-section__title {
    font-family: var(--ap-font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--ap-text);
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ap-border);
}

/* Form grid */
.ap-fe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 640px) { .ap-fe-grid { grid-template-columns: 1fr; } }

.ap-fe-field { display: flex; flex-direction: column; gap: 6px; }
.ap-fe-field--full { grid-column: 1 / -1; }

.ap-fe-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ap-muted);
    letter-spacing: .03em;
}
.ap-fe-field label .req { color: var(--ap-gold); margin-left: 2px; }
.ap-fe-field label .ap-fe-hint {
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
    margin-left: 4px;
}

.ap-fe-field input[type="text"],
.ap-fe-field input[type="url"],
.ap-fe-field input[type="email"],
.ap-fe-field textarea,
.ap-fe-field select {
    width: 100%;
    background: var(--ap-surface2);
    border: 1px solid var(--ap-border);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: var(--ap-font-body);
    font-size: 15px;
    color: var(--ap-text);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    -webkit-appearance: none;
}
.ap-fe-field input:focus,
.ap-fe-field textarea:focus,
.ap-fe-field select:focus {
    border-color: var(--ap-gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.ap-fe-field textarea { resize: vertical; min-height: 180px; line-height: 1.7; }
.ap-fe-field input[type="file"] {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}

/* Current image preview */
.ap-fe-current-img {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--ap-surface2);
    border-radius: var(--ap-radius);
    border: 1px solid var(--ap-border);
}
.ap-fe-current-img img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ap-gold);
}
.ap-fe-current-img p {
    font-size: 13px;
    color: var(--ap-muted);
    margin: 0;
}

/* Checkboxes */
.ap-fe-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ap-fe-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--ap-surface2);
    border: 1px solid var(--ap-border);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--ap-transition);
    user-select: none;
    color: var(--ap-muted);
}
.ap-fe-checkbox:hover { border-color: var(--ap-gold); color: var(--ap-text); }
.ap-fe-checkbox input[type="checkbox"] {
    accent-color: var(--ap-gold);
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.ap-fe-checkbox:has(input:checked) {
    background: rgba(201,168,76,.1);
    border-color: var(--ap-gold);
    color: var(--ap-gold);
}

/* Action buttons */
.ap-fe-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 8px;
}
.ap-fe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ap-font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--ap-transition);
    letter-spacing: .02em;
}
.ap-fe-btn--primary {
    background: var(--ap-gold);
    color: #000;
}
.ap-fe-btn--primary:hover {
    background: var(--ap-gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.3);
}
.ap-fe-btn--secondary {
    background: transparent;
    border: 1px solid var(--ap-border);
    color: var(--ap-text);
}
.ap-fe-btn--secondary:hover {
    border-color: var(--ap-gold);
    color: var(--ap-gold);
}

/* ══════════════════════════════════════
   SINGLE PAGE – ADDITIONAL STYLES (v2)
══════════════════════════════════════ */

/* Top bar: back link + edit button */
.ap-single__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 12px;
}

/* Edit profile button (visible to profile owner only) */
.ap-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ap-font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.4);
    color: var(--ap-gold);
    text-decoration: none;
    transition: var(--ap-transition);
    letter-spacing: .03em;
}
.ap-edit-btn:hover {
    background: var(--ap-gold);
    color: #000;
    border-color: var(--ap-gold);
}

/* Commission badge on single page */
.ap-single__commission-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(34,197,94,.15);
    border: 1px solid rgba(34,197,94,.3);
    color: #86efac;
}
.ap-single__commission-badge--no {
    background: rgba(239,68,68,.12);
    border-color: rgba(239,68,68,.25);
    color: #fca5a5;
}

/* Dokan store button */
.ap-social--store {
    background: rgba(201,168,76,.1) !important;
    border-color: rgba(201,168,76,.35) !important;
    color: var(--ap-gold) !important;
}
.ap-social--store:hover {
    background: var(--ap-gold) !important;
    color: #000 !important;
}

/* Available Artworks – product mini-grid */
.ap-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 768px) { .ap-products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .ap-products-grid { grid-template-columns: 1fr; } }

.ap-product-card {
    display: block;
    text-decoration: none;
    background: var(--ap-surface);
    border: 1px solid var(--ap-border);
    border-radius: var(--ap-radius);
    overflow: hidden;
    transition: var(--ap-transition);
}
.ap-product-card:hover {
    border-color: var(--ap-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.ap-product-card__img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.ap-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.ap-product-card:hover .ap-product-card__img img { transform: scale(1.05); }
.ap-product-card__info {
    padding: 14px 16px;
}
.ap-product-card__info h4 {
    font-family: var(--ap-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--ap-text);
    margin: 0 0 6px;
    line-height: 1.3;
}
.ap-product-card__price {
    font-family: var(--ap-font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--ap-gold);
    margin: 0;
}

/* Muted note */
.ap-muted-note {
    font-family: var(--ap-font-body);
    font-size: 15px;
    color: var(--ap-muted);
    font-style: italic;
    padding: 20px 0;
}
.ap-muted-note a { color: var(--ap-gold); text-decoration: none; }
.ap-muted-note a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   OPTION: Store plugin edit-page ID
   (set via WP admin, Options API)
══════════════════════════════════════ */
