: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: calc(100% + 18px);
    right: 0;
    min-width: 180px;
    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;
}

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: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-save {
    margin-top: 12px;
}

.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-admin {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 8px;
    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;
}

.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;
}

.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(940px, 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;
}

.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);
}

.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.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: 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: 18px;
        overflow-x: auto;
        padding-bottom: 4px;
        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;
}
