:root {
    --cv-green: #203529;
    --cv-green-deep: #16251c;
    --cv-green-soft: #2b4134;
    --cv-ink: #ebe4d2;
    --cv-muted: rgba(235, 228, 210, .68);
    --cv-dim: rgba(235, 228, 210, .46);
    --cv-brass: #c8aa78;
    --cv-brass-soft: #dcc79f;
    --cv-line: rgba(235, 228, 210, .14);
    --cv-panel: rgba(255, 255, 255, .045);
    --cv-font-serif: "Cormorant Garamond", Georgia, serif;
    --cv-font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.cvp-light {
    --cv-green: #f4efe5;
    --cv-green-deep: #e9dfcf;
    --cv-green-soft: #fffaf0;
    --cv-ink: #1c241d;
    --cv-muted: rgba(28, 36, 29, .68);
    --cv-dim: rgba(28, 36, 29, .48);
    --cv-brass: #9a7a4e;
    --cv-brass-soft: #7d673f;
    --cv-line: rgba(28, 36, 29, .16);
    --cv-panel: rgba(255, 255, 255, .56);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--cv-green-deep);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--cv-green-deep);
    color: var(--cv-ink);
    font-family: var(--cv-font-sans);
    font-weight: 300;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.cvp-light {
    background: #f4efe5;
}

body.cvp-lock {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

.cv-header {
    position: fixed;
    z-index: 40;
    inset: 0 0 auto;
    border-bottom: 1px solid rgba(235, 228, 210, .12);
    background: rgba(22, 37, 28, .88);
    backdrop-filter: blur(18px);
}

body.cvp-light .cv-header {
    background: rgba(244, 239, 229, .9);
    border-bottom-color: rgba(28, 36, 29, .12);
}

.cv-header-inner {
    width: min(1600px, calc(100vw - 56px));
    min-height: 72px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cv-brand-area {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.cv-logo-img {
    width: auto;
    height: 30px;
    display: block;
}

.cv-site-title {
    font-family: var(--cv-font-serif);
    font-size: 1.02rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.cvp-light .cv-site-title {
    color: #1c3a2b;
}

.cv-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 1.7vw, 28px);
    min-width: 0;
    font-family: var(--cv-font-serif);
    font-size: 1.06rem;
}

.cv-nav-item,
.cv-nav-dropdown-toggle,
.cv-btn-join {
    border: 0;
    background: transparent;
    color: rgba(235, 228, 210, .82);
    cursor: pointer;
    white-space: nowrap;
}

body.cvp-light .cv-nav-item,
body.cvp-light .cv-nav-dropdown-toggle {
    color: rgba(28, 36, 29, .76);
}

.cv-nav-item:hover,
.cv-nav-dropdown-toggle:hover {
    color: var(--cv-brass-soft);
}

.cv-nav-dropdown {
    position: relative;
}

.cv-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}

.cv-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    margin-top: 12px;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--cv-line);
    background: rgba(22, 37, 28, .97);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease;
}

.cv-nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

body.cvp-light .cv-nav-dropdown-menu {
    background: rgba(244, 239, 229, .98);
}

body.cvp-light .cv-nav-dropdown-link {
    color: rgba(28, 36, 29, .72);
}

.cv-nav-dropdown-divider {
    display: block;
    height: 1px;
    margin: 6px 10px;
    background: rgba(235, 228, 210, .16);
}

body.cvp-light .cv-nav-dropdown-divider {
    background: rgba(28, 36, 29, .14);
}

.cv-nav-dropdown:hover .cv-nav-dropdown-menu,
.cv-nav-dropdown:focus-within .cv-nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cv-nav-dropdown-link {
    padding: 9px 10px;
    color: rgba(235, 228, 210, .76);
}

.cv-nav-dropdown-link:hover {
    color: var(--cv-brass-soft);
    background: rgba(255, 255, 255, .045);
}

.cv-btn-join,
.cv-theme-toggle,
.cvp-clear,
.cvp-admin-save,
.cvp-bottom-cta button,
.cvp-modal-action,
.cvp-form button {
    min-height: 42px;
    border: 1px solid var(--cv-brass);
    border-radius: 999px;
    background: var(--cv-brass);
    color: var(--cv-green-deep);
    padding: 10px 18px;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cv-theme-toggle {
    display: inline-grid;
    place-items: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--cv-brass-soft);
}

.cv-theme-toggle span {
    font-size: 1rem;
    line-height: 1;
}

.cv-mobile-toggle {
    display: none;
}

.cvp-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 108px max(26px, calc((100vw - 1600px) / 2 + 30px)) 72px;
    background:
        linear-gradient(180deg, rgba(42, 63, 50, .82) 0%, rgba(32, 53, 41, .97) 260px, #18271e 100%),
        repeating-linear-gradient(90deg, rgba(235, 228, 210, .018) 0 1px, transparent 1px 84px);
}

body.cvp-light .cvp-page {
    background:
        linear-gradient(180deg, #f6f1e8 0%, #efe5d5 300px, #e9dfcf 100%),
        repeating-linear-gradient(90deg, rgba(28, 36, 29, .024) 0 1px, transparent 1px 84px);
}

.cvp-watermark {
    position: fixed;
    right: -54px;
    bottom: -48px;
    width: min(28vw, 340px);
    opacity: .028;
    pointer-events: none;
}

.cvp-hero,
.cvp-controls,
.cvp-tabs,
.cvp-scope-tabs,
.cvp-results,
.cvp-bottom-cta,
.cvp-admin {
    position: relative;
    z-index: 1;
    width: min(1560px, 100%);
    margin-inline: auto;
}

.cvp-hero {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 42px 0 34px;
    text-align: center;
}

.cvp-hero h1 {
    margin: 0;
    color: var(--cv-ink);
    font-family: var(--cv-font-serif);
    font-size: clamp(2.85rem, 4.8vw, 5.05rem);
    font-weight: 300;
    line-height: .92;
    white-space: nowrap;
}

.cvp-hero h1 em {
    color: var(--cv-brass-soft);
    font-style: italic;
    font-weight: 300;
}

.cvp-hero p {
    width: min(1360px, 100%);
    max-width: none;
    margin: 0;
    color: rgba(235, 228, 210, .74);
    font-size: clamp(.9rem, .98vw, 1.02rem);
    line-height: 1.62;
    white-space: nowrap;
}

body.cvp-light .cvp-hero p {
    color: rgba(28, 36, 29, .72);
}

.cvp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.cvp-hero-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid rgba(200, 170, 120, .28);
    background: rgba(255, 255, 255, .035);
    color: rgba(235, 228, 210, .76);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.cvp-light .cvp-hero-meta span {
    border-color: rgba(28, 36, 29, .18);
    background: rgba(255, 255, 255, .34);
    color: rgba(28, 36, 29, .72);
}

.cvp-controls {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 1.15fr) minmax(190px, .85fr) repeat(2, minmax(210px, 1fr)) auto;
    gap: 10px;
    align-items: end;
    padding: 12px;
    border: 1px solid var(--cv-line);
    background: var(--cv-panel);
    backdrop-filter: blur(18px);
}

.cvp-combo {
    position: relative;
    display: grid;
    gap: 6px;
}

.cvp-combo label,
.cvp-admin label,
.cvp-form label {
    color: rgba(235, 228, 210, .58);
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

body.cvp-light .cvp-combo label,
body.cvp-light .cvp-admin label,
body.cvp-light .cvp-form label {
    color: rgba(28, 36, 29, .58);
}

.cvp-combo input,
.cvp-combo select,
.cvp-admin input,
.cvp-admin select,
.cvp-form input,
.cvp-form textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(235, 228, 210, .18);
    border-radius: 0;
    outline: none;
    background: rgba(9, 14, 10, .26);
    color: var(--cv-ink);
    padding: 9px 12px;
}

body.cvp-light .cvp-combo input,
body.cvp-light .cvp-combo select,
body.cvp-light .cvp-admin input,
body.cvp-light .cvp-admin select,
body.cvp-light .cvp-form input,
body.cvp-light .cvp-form textarea {
    background: rgba(255, 255, 255, .62);
    color: #1c241d;
}

.cvp-combo-menu {
    position: absolute;
    z-index: 50;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 280px;
    overflow: auto;
    border: 1px solid var(--cv-line);
    background: rgba(22, 37, 28, .98);
    box-shadow: 0 20px 42px rgba(0, 0, 0, .24);
    padding: 6px;
}

body.cvp-light .cvp-combo-menu {
    background: rgba(250, 246, 237, .98);
    box-shadow: 0 20px 42px rgba(65, 48, 24, .16);
}

.cvp-combo-menu button {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--cv-muted);
    cursor: pointer;
    padding: 8px 9px;
    text-align: left;
}

.cvp-combo-menu button:hover {
    background: rgba(200, 170, 120, .14);
    color: var(--cv-ink);
}

.cvp-combo select,
.cvp-admin select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--cv-brass) 50%), linear-gradient(135deg, var(--cv-brass) 50%, transparent 50%);
    background-position: calc(100% - 16px) 18px, calc(100% - 11px) 18px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 30px;
}

.cvp-combo input:focus,
.cvp-combo select:focus,
.cvp-admin input:focus,
.cvp-admin select:focus,
.cvp-form input:focus,
.cvp-form textarea:focus {
    border-color: var(--cv-brass);
}

.cvp-clear {
    min-width: max-content;
    background: transparent;
    color: var(--cv-ink);
}

.cvp-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 900px);
    margin: 30px auto 0;
    border: 1px solid rgba(235, 228, 210, .24);
    background: rgba(8, 21, 14, .28);
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(5, 15, 10, .18);
}

.cvp-scope-tabs button,
.cvp-pager button,
.cvp-clear-inline {
    min-height: 36px;
    border: 0;
    background: transparent;
    color: rgba(235, 228, 210, .66);
    padding: 8px 14px;
    cursor: pointer;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.cvp-light .cvp-scope-tabs button,
body.cvp-light .cvp-pager button,
body.cvp-light .cvp-clear-inline {
    color: rgba(28, 36, 29, .64);
}

.cvp-tabs button {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: rgba(235, 228, 210, .72);
    padding: 14px 18px;
    text-align: left;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.cvp-tabs button:hover {
    color: var(--cv-ink);
    background: rgba(235, 228, 210, .06);
}

.cvp-tabs button.is-active {
    background: var(--cv-brass);
    color: var(--cv-green-deep);
    border-color: rgba(255, 244, 220, .34);
    box-shadow: 0 10px 28px rgba(8, 17, 12, .2);
}

.cvp-tab-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: .84;
}

.cvp-tab-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cvp-tab-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.cvp-tab-copy strong {
    font-family: var(--cv-font-serif);
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 1;
}

.cvp-tab-copy small {
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: .76;
}

.cvp-tab-count {
    display: grid;
    place-items: center;
    min-width: 32px;
    height: 32px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    opacity: .74;
}

body.cvp-light .cvp-tabs button.is-active {
    color: #f8f2e8;
}

body.cvp-light .cvp-tabs {
    border-color: rgba(26, 45, 33, .2);
    background: rgba(255, 255, 255, .56);
    box-shadow: 0 16px 40px rgba(44, 51, 43, .1);
}

body.cvp-light .cvp-tabs button {
    color: rgba(28, 36, 29, .72);
}

body.cvp-light .cvp-tabs button:hover {
    color: #1c241d;
    background: rgba(28, 36, 29, .05);
}

.cvp-scope-tabs {
    display: flex;
    gap: 0;
    margin-top: 12px;
    border-bottom: 1px solid rgba(235, 228, 210, .13);
}

.cvp-scope-tabs button {
    position: relative;
    min-height: 40px;
    padding-inline: 0;
    margin-right: 28px;
}

.cvp-scope-tabs button.is-active {
    color: var(--cv-brass-soft);
}

body.cvp-light .cvp-scope-tabs button.is-active {
    color: #5e4a2d;
}

.cvp-scope-tabs button.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--cv-brass);
}

.cvp-admin {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(200, 170, 120, .35);
    background: rgba(200, 170, 120, .08);
}

.cvp-admin > div:first-child {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
}

.cvp-admin strong {
    color: var(--cv-brass-soft);
}

.cvp-admin span,
.cvp-admin-status {
    color: rgba(235, 228, 210, .68);
    font-size: .82rem;
}

.cvp-admin-pickers,
.cvp-admin-grid,
.cvp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.cvp-admin-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 10px;
}

.cvp-admin-hidden {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.cvp-admin-hidden-group {
    border: 1px solid rgba(235, 228, 210, .12);
    padding: 12px;
    background: rgba(255, 255, 255, .035);
}

body.cvp-light .cvp-admin-hidden-group {
    border-color: rgba(28, 36, 29, .12);
    background: rgba(255, 255, 255, .42);
}

.cvp-admin-hidden-group p {
    margin: 8px 0 0;
    color: var(--cv-muted);
    font-size: .78rem;
}

.cvp-admin-hidden-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 9px;
}

.cvp-admin-hidden-chips button {
    border: 1px solid rgba(200, 170, 120, .34);
    background: rgba(8, 13, 9, .18);
    color: var(--cv-ink);
    cursor: pointer;
    padding: 7px 9px;
    font-size: .72rem;
    line-height: 1.25;
    text-align: left;
}

body.cvp-light .cvp-admin-hidden-chips button {
    background: rgba(255, 255, 255, .5);
}

.cvp-admin-hidden-chips span {
    display: block;
    margin-top: 2px;
    color: var(--cv-brass);
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cvp-admin label,
.cvp-form label {
    display: grid;
    gap: 6px;
}

.cvp-admin-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.cvp-admin-save {
    margin-top: 0;
}

.cvp-admin-curation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(200, 170, 120, .5);
    border-radius: 999px;
    padding: 10px 18px;
    color: var(--cv-brass-soft);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cvp-admin-curation:hover {
    background: rgba(200, 170, 120, .1);
}

.cvp-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(235, 228, 210, .1);
}

.cvp-kicker,
.cvp-section-head p,
.cvp-bottom-cta p {
    margin: 0;
    color: var(--cv-brass);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.cvp-section-head h2,
.cvp-bottom-cta h2,
.cvp-contact h2,
.cvp-modal h2 {
    margin: 0;
    color: var(--cv-ink);
    font-family: var(--cv-font-serif);
    font-size: clamp(1.9rem, 3vw, 3.05rem);
    font-weight: 300;
    line-height: 1;
}

.cvp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
    gap: 13px;
    margin-top: 16px;
}

.cvp-card {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 12px;
    min-height: 278px;
    padding: 12px;
    border: 1px solid rgba(235, 228, 210, .12);
    background: var(--cv-panel);
    color: var(--cv-ink);
    text-align: left;
    cursor: pointer;
    transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

body.cvp-light .cvp-card {
    background: rgba(255, 255, 255, .5);
}

.cvp-card:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 170, 120, .58);
    background: rgba(255, 255, 255, .07);
}

body.cvp-light .cvp-card:hover {
    background: rgba(255, 255, 255, .72);
}

.cvp-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 7px;
    border: 1px solid rgba(235, 228, 210, .12);
    background: rgba(8, 13, 9, .2);
}

body.cvp-light .cvp-card img {
    border-color: rgba(28, 36, 29, .12);
    background: rgba(255, 255, 255, .42);
}

.cvp-card-body {
    display: grid;
    align-content: start;
    gap: 8px;
    min-width: 0;
}

.cvp-card-eyebrow {
    min-height: 15px;
    color: var(--cv-brass);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cvp-card h3 {
    margin: 0;
    color: var(--cv-ink);
    font-family: var(--cv-font-serif);
    font-size: 1.46rem;
    font-weight: 300;
    line-height: 1.04;
}

.cvp-card p {
    margin: 0;
    color: rgba(235, 228, 210, .66);
    font-size: .82rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.cvp-light .cvp-card p,
body.cvp-light .cvp-modal-copy,
body.cvp-light .cvp-contact-copy,
body.cvp-light .cvp-offer-list ul {
    color: rgba(28, 36, 29, .66);
}

.cvp-inline-offers {
    margin-top: 34px;
}

.cvp-section-head-compact {
    margin-top: 0;
}

.cvp-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
}

.cvp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cvp-tags span {
    padding: 3px 7px;
    border: 1px solid rgba(235, 228, 210, .12);
    color: rgba(235, 228, 210, .58);
    font-size: .62rem;
}

body.cvp-light .cvp-tags span {
    border-color: rgba(28, 36, 29, .12);
    color: rgba(28, 36, 29, .55);
}

.cvp-card-admins {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 6px;
}
.cvp-card-admin {
    border: 1px solid rgba(200, 170, 120, .55);
    background: rgba(15, 23, 18, .9);
    color: var(--cv-brass);
    padding: 5px 8px;
    cursor: pointer;
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
}
.cvp-card-admin:hover { background: rgba(200, 170, 120, .2); }
.cvp-card-curate { color: var(--cv-cream, #e5ded0); border-color: rgba(200, 170, 120, .7); }

/* Curate block in admin panel */
.cvp-curate {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(235, 228, 210, .14);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cvp-curate > strong { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cv-brass); }
.cvp-curate > span { font-size: .78rem; color: rgba(235, 228, 210, .62); max-width: 60ch; }
.cvp-curate-row { display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.cvp-curate-row label { display: flex; flex-direction: column; gap: 4px; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(235, 228, 210, .6); }
.cvp-curate-row select { background: rgba(15, 23, 18, .9); color: var(--cv-cream, #e5ded0); border: 1px solid rgba(200, 170, 120, .4); padding: 8px 10px; border-radius: 2px; min-width: 200px; }
.cvp-curate-new { background: transparent; border: 1px solid rgba(200, 170, 120, .5); color: var(--cv-brass); padding: 9px 14px; cursor: pointer; border-radius: 2px; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.cvp-curate-new:hover { background: rgba(200, 170, 120, .16); }
.cvp-curate-hint { font-size: .78rem; color: var(--cv-brass-soft, #c9ab77); margin: 4px 0 0; }
.cvp-curate-hint.is-error { color: #d79b8a; }

.cvp-empty {
    grid-column: 1 / -1;
    border: 1px solid rgba(235, 228, 210, .12);
    padding: 24px;
    color: rgba(235, 228, 210, .68);
    text-align: center;
}

.cvp-clear-inline {
    min-height: auto;
    color: var(--cv-brass-soft);
    padding: 0 0 0 8px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cvsp-more {
    margin: 22px 0 0;
    text-align: center;
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cv-muted);
}
.cvsp-more[hidden] { display: none; }

.cvp-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 38px;
    margin-top: 16px;
}

.cvp-pager button {
    border: 1px solid rgba(235, 228, 210, .16);
    min-width: 100px;
}

.cvp-pager button:disabled {
    cursor: default;
    opacity: .35;
}

.cvp-pager span {
    color: rgba(235, 228, 210, .62);
    font-size: .78rem;
}

.cvp-bottom-cta {
    margin-top: 46px;
    padding: 32px;
    border: 1px solid rgba(200, 170, 120, .22);
    background: rgba(200, 170, 120, .07);
    text-align: center;
}

.cvp-bottom-cta h2 {
    max-width: 780px;
    margin: 8px auto 0;
}

.cvp-bottom-cta button {
    margin-top: 18px;
}

.cvp-modal-backdrop {
    position: fixed;
    z-index: 70;
    inset: 0;
    background: rgba(5, 8, 6, .72);
    backdrop-filter: blur(12px);
}

.cvp-modal,
.cvp-contact {
    position: fixed;
    z-index: 80;
    top: 50%;
    left: 50%;
    width: min(1040px, calc(100vw - 28px));
    max-height: calc(100vh - 34px);
    overflow: auto;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(235, 228, 210, .18);
    background: var(--cv-green);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .48);
    padding: clamp(18px, 3vw, 30px);
}

body.cvp-light .cvp-modal,
body.cvp-light .cvp-contact {
    background: #f6f1e8;
}

.cvp-modal-close,
.cvp-contact-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(235, 228, 210, .18);
    border-radius: 999px;
    background: transparent;
    color: var(--cv-ink);
    cursor: pointer;
    font-size: 1.3rem;
}

.cvp-modal-layout {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 26px;
}

.cvp-modal-gallery {
    display: grid;
    gap: 8px;
    align-content: start;
}

.cvp-modal-gallery:empty {
    display: none;
}

.cvp-modal-gallery img {
    width: 100%;
    max-height: min(46vh, 420px);
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 8px;
    border: 1px solid rgba(235, 228, 210, .14);
    background: rgba(8, 13, 9, .22);
}

body.cvp-light .cvp-modal-gallery img {
    border-color: rgba(28, 36, 29, .12);
    background: rgba(255, 255, 255, .48);
}

.cvp-modal-copy,
.cvp-contact-copy {
    color: rgba(235, 228, 210, .72);
    line-height: 1.66;
}

/* Modal body copy a touch smaller for an airier read. */
.cvp-modal-copy {
    font-size: .9rem;
    line-height: 1.62;
}

.cvp-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cvp-modal-detail {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    color: rgba(235, 228, 210, .34);
    font-size: .55rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.cvp-light .cvp-modal-detail {
    color: rgba(28, 36, 29, .42);
}

.cvp-modal-detail:hover {
    color: var(--cv-brass);
}

.cvp-offer-list {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(235, 228, 210, .12);
}

.cvp-offer-list h3 {
    margin: 0 0 8px;
    color: var(--cv-brass);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cvp-offer-list ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(235, 228, 210, .72);
    font-size: .85rem;
    line-height: 1.5;
}

/* Secondary credibility blocks — each tier a notch smaller than the last. */
.cvp-modal-detail-block {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(235, 228, 210, .12);
}

.cvp-modal-detail-block h3 {
    margin: 0 0 6px;
    color: var(--cv-brass);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cvp-modal-detail-block p {
    margin: 0;
    color: rgba(235, 228, 210, .64);
    line-height: 1.55;
}

.cvp-modal-pastclients p {
    font-size: .8rem;
}

.cvp-modal-qualifications p {
    font-size: .72rem;
    color: rgba(235, 228, 210, .56);
}

body.cvp-light .cvp-modal-detail-block p {
    color: rgba(28, 36, 29, .6);
}

/* Ghost variant of the modal action, used for Share. */
.cvp-modal-action-ghost {
    background: transparent;
    color: var(--cv-brass);
}

body.cvp-light .cvp-modal-action-ghost {
    color: var(--cv-green-deep);
}

.cvp-share {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(235, 228, 210, .16);
    border-radius: 12px;
    background: rgba(8, 13, 9, .28);
}

body.cvp-light .cvp-share {
    border-color: rgba(28, 36, 29, .12);
    background: rgba(255, 255, 255, .5);
}

.cvp-share-label {
    margin: 0 0 8px;
    color: var(--cv-brass);
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cvp-share-url {
    overflow-wrap: anywhere;
    word-break: break-all;
    color: rgba(235, 228, 210, .66);
    font-size: .74rem;
    line-height: 1.5;
}

body.cvp-light .cvp-share-url {
    color: rgba(28, 36, 29, .6);
}

.cvp-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.cvp-share-btn {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(235, 228, 210, .3);
    border-radius: 999px;
    background: transparent;
    color: var(--cv-ink);
    padding: 6px 14px;
    cursor: pointer;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
}

.cvp-share-btn:hover {
    border-color: var(--cv-brass);
    color: var(--cv-brass);
}

body.cvp-light .cvp-share-btn {
    border-color: rgba(28, 36, 29, .2);
}

.cvp-share-feedback {
    display: block;
    min-height: 1em;
    margin-top: 10px;
    color: var(--cv-brass);
    font-size: .66rem;
    letter-spacing: .04em;
}

.cvp-form {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.cvp-form textarea {
    min-height: 130px;
    resize: vertical;
}

.cvp-status {
    min-height: 20px;
    color: rgba(235, 228, 210, .7);
    font-size: .86rem;
}

.cvp-status.is-success {
    color: var(--cv-brass);
}

.cvp-status.is-error {
    color: #e0a69a;
}

.cvp-loading {
    position: fixed;
    z-index: 120;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(12, 19, 14, .38);
    backdrop-filter: blur(10px);
}

body:not(.cvp-loading-active) .cvp-loading {
    display: none;
    pointer-events: none;
}

body.cvp-light .cvp-loading {
    background: rgba(244, 239, 229, .48);
}

.cvp-loading-card {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    min-height: 96px;
    padding: 26px 36px;
    border: 1px solid var(--cv-line);
    background: rgba(22, 37, 28, .9);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    color: var(--cv-ink);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.cvp-light .cvp-loading-card {
    background: rgba(250, 246, 237, .92);
    box-shadow: 0 24px 70px rgba(78, 60, 32, .18);
}

.cvp-loading-ring {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(200, 170, 120, .24);
    border-top-color: var(--cv-brass);
    border-radius: 50%;
    animation: cvp-spin .85s linear infinite;
}

.cvp-loading-dots {
    display: inline-flex;
    gap: 3px;
    margin-left: -7px;
}

.cvp-loading-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cv-brass);
    opacity: .35;
    animation: cvp-dot 1s ease-in-out infinite;
}

.cvp-loading-dots i:nth-child(2) {
    animation-delay: .16s;
}

.cvp-loading-dots i:nth-child(3) {
    animation-delay: .32s;
}

@keyframes cvp-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes cvp-dot {
    0%, 100% {
        opacity: .25;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

.cv-footer {
    border-top: 1px solid rgba(235, 228, 210, .1);
    background: #16251c;
    color: rgba(235, 228, 210, .58);
}

body.cvp-light .cv-footer {
    background: #e9dfcf;
    border-top-color: rgba(28, 36, 29, .12);
    color: rgba(28, 36, 29, .58);
}

.cv-footer-cols {
    width: min(1600px, calc(100vw - 56px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 42px 0;
}

.cv-foot-col h3 {
    margin: 0 0 12px;
    color: var(--cv-ink);
    font-family: var(--cv-font-serif);
    font-size: 1.18rem;
    font-weight: 300;
}

.cv-foot-link,
.cv-foot-text,
.cv-copyright {
    display: block;
    margin-top: 7px;
    color: rgba(235, 228, 210, .58);
    font-size: .78rem;
}

.cv-foot-link:hover,
.cv-foot-link a:hover {
    color: var(--cv-brass-soft);
}

.cv-foot-button {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.cv-foot-right {
    text-align: right;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1024px) {
    .cv-mobile-toggle {
        display: block;
    }

    .cv-nav-links {
        display: none;
    }

    .cv-header.is-open .cv-nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: auto;
        max-height: calc(100dvh - 72px);
        padding: 14px 24px 18px;
        overflow-y: auto;
        background: rgba(22, 37, 28, .98);
        border-bottom: 1px solid rgba(235, 228, 210, .12);
        backdrop-filter: blur(18px);
    }

    body.cvp-light .cv-header.is-open .cv-nav-links {
        background: rgba(244, 239, 229, .98);
        border-bottom-color: rgba(28, 36, 29, .12);
    }

    .cv-header.is-open .cv-nav-item,
    .cv-header.is-open .cv-nav-dropdown-toggle {
        padding: 12px 0;
        font-size: 1.08rem;
    }

    .cv-header.is-open .cv-nav-dropdown {
        display: block;
        width: 100%;
    }

    .cv-header.is-open .cv-nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 0;
        padding: 0 0 6px 14px;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .cv-header.is-open .cv-nav-dropdown-menu::before {
        content: none;
    }
}

@media (max-width: 1180px) {
    .cvp-controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cvp-clear {
        grid-column: span 2;
    }

    .cvp-hero h1 {
        white-space: normal;
    }

    .cvp-hero p {
        white-space: normal;
    }
}

@media (max-width: 860px) {
    .cv-header-inner,
    .cv-footer-cols {
        width: min(100% - 32px, 1600px);
    }

    .cv-header-inner {
        min-height: 86px;
        flex-wrap: wrap;
        gap: 8px 16px;
        padding-block: 10px;
    }

    .cv-nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 0;
        overflow: visible;
        padding-bottom: 0;
        font-size: 1rem;
    }

    .cvp-page {
        padding-top: 128px;
        padding-inline: 16px;
    }

    .cvp-controls,
    .cvp-admin-pickers,
    .cvp-admin-grid,
    .cvp-admin-hidden,
    .cvp-modal-layout,
    .cvp-form-grid,
    .cv-footer-cols {
        grid-template-columns: 1fr;
    }

    .cvp-clear {
        grid-column: auto;
    }

    .cvp-section-head {
        display: grid;
        align-items: start;
    }

    .cv-foot-right {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .cv-site-title {
        display: none;
    }

    .cvp-hero {
        padding-top: 12px;
    }

    .cvp-hero h1 {
        font-size: 3rem;
    }

    .cvp-tabs {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .cvp-tabs button {
        grid-template-columns: 38px minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 74px;
        padding: 12px;
    }

    .cvp-tab-icon {
        width: 38px;
        height: 38px;
    }

    .cvp-tab-copy strong {
        font-size: 1.18rem;
    }

    .cvp-tab-copy small {
        font-size: .64rem;
    }

    .cvp-tab-count {
        min-width: 28px;
        height: 28px;
    }

    .cvp-scope-tabs button {
        margin-right: 18px;
    }

    .cvp-grid {
        grid-template-columns: 1fr;
    }

    .cvp-bottom-cta {
        padding: 26px 18px;
    }
}

/* Online / virtual: toggle, delivery tabs, badge */
.cvp-online-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(1560px, 100%);
    margin: 10px auto 0;
    font-size: .9rem;
    color: var(--cv-ink);
    cursor: pointer;
}
.cvp-online-toggle input {
    width: 18px;
    height: 18px;
    accent-color: #c8aa78;
}
.cvp-online-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: rgba(22, 37, 28, .82);
    border: 1px solid #c8aa78;
    color: #f3ecd9;
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 999px;
    backdrop-filter: blur(3px);
}
body.cvp-light .cvp-online-badge {
    background: rgba(255, 255, 255, .9);
    color: #3a3326;
}

/* ---- Curated state + curate/hide buttons ---- */
.cvp-card[data-curated="1"] { border-color: rgba(200,170,120,.65); }
.cvp-curated-ribbon {
    position: absolute; z-index: 2; top: 8px; left: 8px;
    background: var(--cv-brass); color: #16251c;
    font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
    padding: 4px 9px; border-radius: 2px;
}
.cvp-card-curate.is-curated { background: var(--cv-brass); color: #16251c; border-color: var(--cv-brass); }
.cvp-card-curate.is-curated:hover { background: var(--cv-brass-soft); }
.cvp-card-hide { color: #e0b3a6; border-color: rgba(190,120,100,.5); }
.cvp-card-hide:hover { background: rgba(190,110,90,.28); color: #fff; }

/* ---- Hidden review chips ---- */
.cvp-hidden-chip { cursor: pointer; }
.cvp-hidden-chip span { color: var(--cv-brass); }

/* ---- Modal: hidden notice + unhide ---- */
.cvp-modal-hidden-note {
    margin: 14px 0; padding: 12px 14px; border-radius: 3px;
    background: rgba(190,110,90,.14); border: 1px solid rgba(190,120,100,.4);
    color: var(--cv-ink); font-size: .85rem; line-height: 1.5;
}
.cvp-modal-action-unhide { background: var(--cv-brass) !important; color: #16251c !important; border-color: var(--cv-brass) !important; }

/* ---- Hide confirmation dialog ---- */
.cvp-confirm {
    position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
    padding: 24px; background: rgba(12,20,15,.66); backdrop-filter: blur(4px);
}
.cvp-confirm-card {
    max-width: 480px; width: 100%; background: var(--cv-panel, #1c2c23); color: var(--cv-ink, #e9e2d2);
    border: 1px solid rgba(200,170,120,.4); border-radius: 6px; padding: 30px 30px 26px;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.cvp-confirm-kicker { margin: 0 0 8px; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: #e0b3a6; }
.cvp-confirm-card h3 { margin: 0 0 12px; font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 1.9rem; line-height: 1.1; }
.cvp-confirm-body { margin: 0 0 22px; font-size: .92rem; line-height: 1.6; color: var(--cv-ink); opacity: .92; }
.cvp-confirm-body strong { color: #e7c6ba; }
.cvp-confirm-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.cvp-confirm-no, .cvp-confirm-yes { padding: 11px 18px; border-radius: 3px; cursor: pointer; font-size: .82rem; letter-spacing: .04em; }
.cvp-confirm-no { background: transparent; border: 1px solid rgba(235,228,210,.3); color: var(--cv-ink); }
.cvp-confirm-no:hover { border-color: var(--cv-ink); }
.cvp-confirm-yes { background: #9a4a3a; border: 1px solid #9a4a3a; color: #fff; }
.cvp-confirm-yes:hover { background: #b15848; }
.cvp-confirm-scopes { display: flex; flex-direction: column; gap: 10px; margin: 0 0 20px; }
.cvp-confirm-scope {
    display: block; width: 100%; text-align: left; cursor: pointer;
    padding: 13px 16px; border-radius: 4px; font-size: .92rem; line-height: 1.3;
    background: rgba(235,228,210,.06); border: 1px solid rgba(235,228,210,.28); color: var(--cv-ink);
    transition: border-color .15s ease, background .15s ease;
}
.cvp-confirm-scope:hover { border-color: var(--cv-ink); background: rgba(235,228,210,.12); }
.cvp-confirm-scope strong { color: #e7c6ba; }
.cvp-confirm-scope span { display: block; margin-top: 4px; font-size: .76rem; opacity: .72; letter-spacing: .01em; }
.cvp-confirm-scope-all { border-color: rgba(154,74,58,.55); background: rgba(154,74,58,.12); }
.cvp-confirm-scope-all:hover { border-color: #b15848; background: rgba(177,88,72,.2); }

/* Lightbox delivery + host pills */
.cvp-modal-pills{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 4px;}
.cvp-pill{display:inline-flex;align-items:center;min-height:26px;padding:4px 12px;border-radius:999px;
  font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;font-weight:600;
  border:1px solid var(--cv-brass);color:var(--cv-brass);background:rgba(200,170,120,.08);}
.cvp-pill-ghost{border-color:var(--cv-line);color:var(--cv-muted);background:transparent;font-weight:500;text-transform:none;letter-spacing:.02em;}
.cvp-modal-benefits p{white-space:pre-line;}

/* ---- Speakers page additions ---- */
.cvsp-filter-summary {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 24px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--cv-line);
    background: var(--cv-card);
    color: var(--cv-muted);
    font-size: .82rem;
    line-height: 1.45;
}
.cvsp-filter-summary strong {
    color: var(--cv-ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 300;
}
.cvsp-admin-open[hidden] { display: none; }
.cvsp-admin-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: grid;
    place-items: center;
    padding: 22px;
    pointer-events: none;
}
.cvsp-admin-lightbox[hidden] { display: none; }
.cvsp-admin-panel {
    width: min(1040px, 100%);
    max-height: min(86vh, 920px);
    overflow: auto;
    pointer-events: auto;
    background: var(--cv-panel);
    color: var(--cv-ink);
    border: 1px solid rgba(201,171,119,.36);
    box-shadow: 0 34px 90px rgba(0,0,0,.48);
    padding: 34px;
}
.cvsp-admin-panel h2 {
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
}
.cvsp-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.cvsp-admin-panel fieldset {
    margin: 0 0 18px;
    padding: 16px;
    border: 1px solid var(--cv-line);
}
.cvsp-admin-panel legend {
    padding: 0 8px;
    color: var(--cv-brass);
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
}
.cvsp-admin-panel label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: var(--cv-muted);
    font-size: .88rem;
    line-height: 1.35;
}
.cvsp-admin-panel input[type="radio"],
.cvsp-admin-panel input[type="checkbox"] {
    accent-color: var(--cv-brass);
}
.cvsp-experience-options,
.cvsp-keyword-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 16px;
}
.cvsp-experience-options label.is-muted {
    opacity: .38;
}
.cvsp-pen {
    color: var(--cv-brass);
    font-size: .86rem;
}
.cvsp-keyword-list {
    max-height: 210px;
    overflow: auto;
    padding-right: 8px;
}
.cvsp-keyword-mode {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}
.cvsp-keyword-custom,
.cvsp-keyword-editor label,
.cvsp-link-row label {
    display: grid !important;
    gap: 7px;
    align-items: start !important;
}
.cvsp-admin-panel textarea,
.cvsp-admin-panel input,
.cvsp-admin-panel select {
    width: 100%;
    border: 1px solid var(--cv-line);
    background: rgba(255,255,255,.045);
    color: var(--cv-ink);
    padding: 10px 12px;
    border-radius: 3px;
    font: inherit;
}
.cvsp-admin-panel textarea {
    min-height: 72px;
    resize: vertical;
}
.cvsp-admin-panel details {
    margin: 14px 0;
    border: 1px solid var(--cv-line);
    padding: 12px 14px;
    background: rgba(255,255,255,.025);
}
.cvsp-admin-panel summary {
    cursor: pointer;
    color: var(--cv-brass);
    font-size: .76rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
}
.cvsp-saved-view,
.cvsp-link-row {
    display: grid;
    grid-template-columns: minmax(180px, .4fr) minmax(0, 1fr);
    gap: 10px;
    align-items: end;
    margin-top: 10px;
}
.cvsp-saved-view button {
    border: 1px solid var(--cv-line);
    background: transparent;
    color: var(--cv-ink);
    padding: 10px 12px;
    cursor: pointer;
    text-align: left;
}
.cvsp-saved-view input,
.cvsp-link-row > input {
    font-size: .78rem;
}
.cvsp-page .cvp-card h3 {
    text-transform: none;
}
.cvsp-page .cvp-bottom-cta h2 {
    max-width: 920px;
}
@media (max-width: 760px) {
    .cvsp-admin-grid,
    .cvsp-experience-options,
    .cvsp-keyword-list,
    .cvsp-saved-view,
    .cvsp-link-row {
        grid-template-columns: 1fr;
    }
    .cvsp-admin-panel {
        padding: 26px 18px;
    }
}

/* Speakers repair layer */
.cvsp-page {
    padding-top: 34px !important;
}

.cvsp-page .cvp-hero {
    background: transparent !important;
    overflow: visible !important;
    padding-top: 26px;
}

.cvsp-filter-summary {
    display: none !important;
}

.cvsp-controls {
    width: min(1560px, 100%) !important;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(280px, 460px) auto auto auto auto !important;
    justify-content: center;
}

body.cvsp-admin-tools-visible .cvsp-controls {
    grid-template-columns: minmax(260px, 420px) auto auto minmax(240px, 360px) auto auto !important;
}

.cvsp-admin-search {
    display: grid;
    gap: 6px;
    min-width: min(360px, 100%);
}

.cvsp-admin-search[hidden] {
    display: none !important;
}

.cvsp-admin-search span {
    color: rgba(235, 228, 210, .58);
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

body.cvp-light .cvsp-admin-search span {
    color: rgba(28, 36, 29, .58);
}

.cvsp-admin-search input {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(235, 228, 210, .18);
    border-radius: 0;
    outline: none;
    background: rgba(9, 14, 10, .26);
    color: var(--cv-ink);
    padding: 9px 12px;
}

body.cvp-light .cvsp-admin-search input {
    border-color: rgba(28, 36, 29, .16);
    background: rgba(255, 255, 255, .62);
    color: #1c241d;
}

.cvsp-admin-search input:focus {
    border-color: var(--cv-brass);
}

.cvsp-admin-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cvsp-gear {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    font-size: 1rem;
    line-height: 1;
}

.cvsp-admin-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 12px 14px;
    border: 1px solid rgba(28, 36, 29, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .58);
    color: rgba(28, 36, 29, .7);
}

.cvsp-admin-summary strong {
    color: #1c241d;
    font-family: var(--cv-font-serif);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
}

.cvsp-admin-summary span {
    font-size: .86rem;
    line-height: 1.45;
}

.cvsp-control-divider {
    width: 1px;
    height: 42px;
    background: rgba(200, 170, 120, .42);
    justify-self: center;
}

.cvsp-experiences-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--cv-brass);
    border-radius: 999px;
    background: var(--cv-brass);
    color: var(--cv-green-deep);
    padding: 10px 18px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cvsp-experiences-link:hover {
    background: var(--cv-brass-soft);
    border-color: var(--cv-brass-soft);
}

.cvsp-curation-panel {
    width: min(1560px, 100%);
    margin: 12px auto 0;
}

.cvsp-curation-panel[hidden] {
    display: none !important;
}

.cvsp-curation-panel > div:first-child {
    display: grid;
    gap: 3px;
}

.cvsp-curation-panel strong {
    color: var(--cv-brass);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cvsp-curation-panel span {
    color: var(--cv-muted);
    font-size: .82rem;
    line-height: 1.45;
}

.cvp-delivery-tabs {
    margin-top: 12px;
}

.cvsp-bottom-split {
    position: relative;
    z-index: 1;
    width: min(1560px, 100%);
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cvsp-bottom-split article {
    min-height: 220px;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 16px;
    padding: clamp(24px, 3.2vw, 42px);
    border: 1px solid rgba(235, 228, 210, .14);
    background: rgba(255, 255, 255, .045);
}

body.cvp-light .cvsp-bottom-split article {
    border-color: rgba(28, 36, 29, .14);
    background: rgba(255, 255, 255, .58);
}

.cvsp-bottom-split p {
    margin: 0;
    color: var(--cv-brass);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.cvsp-bottom-split h2 {
    max-width: 620px;
    margin: 0;
    color: var(--cv-ink);
    font-family: var(--cv-font-serif);
    font-size: clamp(1.8rem, 2.7vw, 3rem);
    font-weight: 300;
    line-height: 1.04;
}

.cvsp-bottom-split button,
.cvsp-bottom-split a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cv-brass);
    border-radius: 999px;
    background: var(--cv-brass);
    color: var(--cv-green-deep);
    padding: 10px 18px;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cvsp-admin-lightbox {
    align-items: start;
    padding: min(5vh, 42px) 20px 26px;
}

.cvsp-admin-panel {
    width: min(1120px, 100%);
    max-height: min(90vh, 980px);
    display: grid;
    gap: 18px;
    background: #f6f1e8;
    color: #1c241d;
    border: 1px solid rgba(154, 122, 78, .34);
    border-radius: 8px;
    box-shadow: 0 34px 90px rgba(0,0,0,.38);
    padding: clamp(22px, 3vw, 34px);
}

.cvsp-admin-panel .cvp-kicker,
.cvsp-admin-panel legend,
.cvsp-admin-panel summary {
    color: #8f6f41;
}

.cvsp-admin-panel h2 {
    margin-bottom: 2px;
    color: #1c241d;
    font-size: clamp(2rem, 3.4vw, 3.05rem);
}

.cvsp-admin-grid {
    gap: 14px;
}

.cvsp-admin-panel fieldset,
.cvsp-admin-panel details {
    border: 1px solid rgba(28, 36, 29, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .54);
    padding: 16px;
}

.cvsp-admin-panel label {
    color: rgba(28, 36, 29, .78);
    font-size: .88rem;
}

.cvsp-admin-panel input,
.cvsp-admin-panel select,
.cvsp-admin-panel textarea {
    min-height: 42px;
    border: 1px solid rgba(28, 36, 29, .16);
    background: #fffaf2;
    color: #1c241d;
}

.cvsp-admin-panel input[type="radio"],
.cvsp-admin-panel input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    flex: 0 0 18px;
    padding: 0;
    background: transparent;
    accent-color: #9a7a4e;
}

.cvsp-admin-panel input[type="radio"] {
    border-radius: 999px;
}

.cvsp-admin-panel input[type="checkbox"] {
    border-radius: 3px;
}

.cvsp-admin-note {
    margin: 10px 0 14px;
    color: rgba(28, 36, 29, .68);
    font-size: .84rem;
    line-height: 1.45;
}

.cvsp-manual-fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cvsp-manual-fields label {
    display: grid;
    align-items: start;
    gap: 7px;
}

.cvsp-admin-panel .cvp-admin-hidden-group {
    border-color: rgba(28, 36, 29, .14);
    background: rgba(255, 255, 255, .52);
}

.cvsp-admin-panel .cvp-admin-hidden-chips button,
.cvsp-admin-panel .cvp-hidden-chip {
    border-color: rgba(154, 122, 78, .36);
    background: #fffaf2;
    color: #1c241d;
    box-shadow: none;
}

.cvsp-admin-panel .cvp-admin-hidden-chips button:hover,
.cvsp-admin-panel .cvp-hidden-chip:hover {
    border-color: #9a7a4e;
    background: #f1e6d3;
    color: #111811;
}

.cvsp-admin-panel .cvp-admin-hidden-chips span,
.cvsp-admin-panel .cvp-hidden-chip span {
    color: #7d673f;
}

/* Hidden speakers list — one row per speaker showing where they are hidden */
.cvp-admin-hidden-legend { margin: 4px 0 10px; font-size: .76rem; line-height: 1.45; opacity: .7; }
.cvp-admin-hidden-rows { display: flex; flex-direction: column; gap: 8px; }
.cvp-hidden-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cvp-hidden-row .cvp-hidden-chip { flex: 1 1 auto; min-width: 0; }
.cvp-hidden-scope {
    flex: 0 0 auto; font-size: .72rem; letter-spacing: .03em; padding: 4px 9px; border-radius: 999px;
    background: rgba(154,122,78,.16); color: #6d5836; border: 1px solid rgba(154,122,78,.3); white-space: nowrap;
}
.cvp-hidden-scope.is-everywhere { background: rgba(154,74,58,.16); color: #9a4a3a; border-color: rgba(154,74,58,.4); }
.cvp-hidden-unhide {
    flex: 0 0 auto; cursor: pointer; padding: 6px 12px; border-radius: 3px; font-size: .76rem;
    background: transparent; border: 1px solid rgba(28,36,29,.3); color: #1c241d;
}
.cvp-hidden-unhide:hover { border-color: #1c241d; background: rgba(28,36,29,.06); }

.cvsp-keyword-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 240px;
    padding: 10px;
    border: 1px solid rgba(28, 36, 29, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .42);
}

.cvsp-experience-options {
    grid-template-columns: 1fr;
}

.cvsp-link-row,
.cvsp-saved-view {
    grid-template-columns: minmax(180px, .38fr) minmax(0, 1fr);
}

.cvsp-saved-view input,
.cvsp-link-row > input {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .cvsp-controls {
        grid-template-columns: 1fr !important;
    }

    .cvsp-control-divider {
        display: none;
    }

    .cvsp-experiences-link {
        width: 100%;
    }

    .cvsp-bottom-split {
        grid-template-columns: 1fr;
    }

    .cvsp-keyword-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cvsp-page {
        padding-top: 22px !important;
    }

    .cvsp-bottom-split button,
    .cvsp-bottom-split a {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .cvsp-keyword-list,
    .cvsp-link-row,
    .cvsp-saved-view {
        grid-template-columns: 1fr;
    }
}
