:root {
    /* Gold palette (revert: pink was #d24d74, #bc3e64, #f8d5de, #fff3f5, #fef8f6) */
    --sc-pink: #b8941f;
    --sc-pink-hover: #967816;
    --sc-pink-soft: #f5ecd3;
    --sc-bar: #faf6ee;
    --sc-bg: #fdfbf7;
    --sc-text: #1f1f1f;
    --sc-muted: #6b6560;
    --sc-line: #e8e2d6;
    --sc-white: #ffffff;
    --sc-black: #141414;
    --sc-black-soft: #1f1f1f;
    --sc-gold: #d4af37;
    --sc-gold-light: #e8c547;
    --sc-serif: "Cormorant Garamond", Georgia, serif;
    --sc-display: "Cinzel", "Cormorant Garamond", serif;
    --sc-sans: "Montserrat", system-ui, sans-serif;
    --sc-wrap: 1280px;
    --sc-header-h: 118px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.sc-v2-root {
    scrollbar-width: thin;
    scrollbar-color: var(--sc-pink) var(--sc-pink-soft);
    overflow-x: clip;
}

html.sc-v2-root::-webkit-scrollbar {
    width: 11px;
}

html.sc-v2-root::-webkit-scrollbar-track {
    background: var(--sc-bar);
}

html.sc-v2-root::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37 0%, #b8941f 55%, #967816 100%);
    border: 2px solid var(--sc-bar);
    border-radius: 999px;
}

html.sc-v2-root::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e0bc42 0%, #c4a035 55%, #8b6914 100%);
}

html.sc-v2-root::-webkit-scrollbar-corner {
    background: var(--sc-bar);
}

body.sc-v2 * {
    scrollbar-width: thin;
    scrollbar-color: var(--sc-pink) var(--sc-pink-soft);
}

body.sc-v2 *::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

body.sc-v2 *::-webkit-scrollbar-track {
    background: var(--sc-bar);
}

body.sc-v2 *::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37 0%, #b8941f 100%);
    border: 2px solid var(--sc-bar);
    border-radius: 999px;
}

body.sc-v2 *::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e0bc42 0%, #967816 100%);
}

body.sc-v2 {
    margin: 0;
    color: var(--sc-text);
    background: var(--sc-white);
    font-family: var(--sc-sans);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.sc-v2 ::selection {
    background: rgba(184, 148, 31, 0.28);
    color: var(--sc-black);
}

body.sc-v2 ::-moz-selection {
    background: rgba(184, 148, 31, 0.28);
    color: var(--sc-black);
}

body.sc-v2.sc-nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
}

.sc-wrap {
    width: min(var(--sc-wrap), calc(100% - 48px));
    margin-inline: auto;
}

@media (max-width: 767px) {
    :root {
        --sc-header-h: 108px;
    }

    .sc-wrap {
        width: calc(100% - 32px);
    }
}

.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 32px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 48%, #8b6914 100%);
    color: var(--sc-white);
    font-family: var(--sc-sans);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    box-shadow:
        0 10px 24px rgba(184, 148, 31, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.sc-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sc-btn:hover {
    transform: translateY(-2px);
    color: var(--sc-gold-light);
    background: var(--sc-black);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sc-btn:active {
    transform: translateY(0);
    color: var(--sc-gold);
    background: var(--sc-black-soft);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sc-btn:focus-visible {
    outline: 2px solid rgba(184, 148, 31, 0.35);
    outline-offset: 3px;
}

.sc-btn-sm {
    min-height: 42px;
    padding: 11px 22px;
    font-size: 11px;
    letter-spacing: 0.09em;
    box-shadow:
        0 8px 18px rgba(184, 148, 31, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.sc-btn-sm:hover {
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sc-btn-outline {
    background: rgba(255, 255, 255, 0.72);
    color: var(--sc-pink);
    border: 1.5px solid rgba(184, 148, 31, 0.35);
    box-shadow: none;
}

.sc-btn-outline:hover {
    background: var(--sc-black);
    color: var(--sc-gold-light);
    border-color: var(--sc-black);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sc-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 96;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 48%, #8b6914 100%);
    color: #fff;
    box-shadow:
        0 12px 28px rgba(184, 148, 31, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.sc-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(184, 148, 31, 0.28);
    z-index: 0;
    pointer-events: none;
    animation: sc-whatsapp-pulse 2.2s ease-out infinite;
}

.sc-whatsapp svg {
    position: relative;
    z-index: 1;
    width: 26px;
    height: 26px;
}

.sc-whatsapp:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 16px 34px rgba(184, 148, 31, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.sc-whatsapp:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(184, 148, 31, 0.22),
        0 12px 28px rgba(184, 148, 31, 0.3);
}

@keyframes sc-whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

.sc-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 95;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(184, 148, 31, 0.22);
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 48%, #8b6914 100%);
    color: #fff;
    box-shadow:
        0 12px 28px rgba(184, 148, 31, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.2s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.sc-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sc-scroll-top svg {
    width: 22px;
    height: 22px;
}

.sc-scroll-top:hover {
    background: var(--sc-black);
    color: var(--sc-gold-light);
    border-color: var(--sc-black);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sc-scroll-top.is-visible:hover {
    transform: translateY(-2px);
    background: var(--sc-black);
    color: var(--sc-gold-light);
    border-color: var(--sc-black);
}

.sc-scroll-top:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(184, 148, 31, 0.22),
        0 12px 28px rgba(184, 148, 31, 0.28);
}

@media (max-width: 767px) {
    .sc-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }

    .sc-whatsapp svg {
        width: 24px;
        height: 24px;
    }

    .sc-scroll-top {
        right: 16px;
        bottom: 78px;
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sc-whatsapp::before {
        animation: none;
    }

    .sc-scroll-top {
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }
}

/* ── Page Loader ──────────────────────────── */
.sc-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(253, 251, 247, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sc-page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sc-page-loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sc-gold), var(--sc-gold-light, #e8c547), var(--sc-gold));
    animation: sc-loader-bar 1.2s ease-in-out infinite;
    border-radius: 0 2px 2px 0;
}

@keyframes sc-loader-bar {
    0% { width: 0; left: 0; }
    50% { width: 60%; left: 20%; }
    100% { width: 0; left: 100%; }
}

.sc-page-loader-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sc-page-loader-center img {
    height: 100px;
    width: auto;
    opacity: 0.9;
    animation: sc-logo-breathe 2s ease-in-out infinite;
}

@keyframes sc-logo-breathe {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

.sc-page-loader-spinner-ring {
    width: 40px;
    height: 40px;
    position: relative;
}

.sc-page-loader-spinner-ring svg {
    width: 40px;
    height: 40px;
    animation: sc-ring-spin 1.4s linear infinite;
}

.sc-page-loader-spinner-ring circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke: var(--sc-gold);
    stroke-dasharray: 80, 200;
    stroke-dashoffset: 0;
    animation: sc-ring-dash 1.4s ease-in-out infinite;
}

@keyframes sc-ring-spin {
    to { transform: rotate(360deg); }
}

@keyframes sc-ring-dash {
    0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 80, 200; stroke-dashoffset: -30; }
    100% { stroke-dasharray: 80, 200; stroke-dashoffset: -120; }
}

.sc-page-loader-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sc-gold);
    opacity: 0.6;
}

/* ── Custom Modal ─────────────────────────── */
.sc-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(20, 20, 20, 0.45);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sc-modal-overlay.is-open {
    opacity: 1;
}

.sc-modal-overlay[hidden] {
    display: none;
}

.sc-modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px 28px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(20, 20, 20, 0.18);
    transform: scale(0.92) translateY(10px);
    transition: transform 0.25s ease;
}

.sc-modal-overlay.is-open .sc-modal-box {
    transform: scale(1) translateY(0);
}

.sc-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sc-modal-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--sc-gold);
}

.sc-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--sc-black);
    margin: 0 0 8px;
}

.sc-modal-desc {
    font-size: 14px;
    color: var(--sc-body);
    line-height: 1.6;
    margin: 0 0 24px;
}

.sc-modal-actions {
    display: flex;
    gap: 10px;
}

.sc-modal-btn {
    flex: 1;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.sc-modal-btn--cancel {
    background: var(--sc-cream, #fdfbf7);
    color: var(--sc-body);
    border: 1px solid rgba(20, 20, 20, 0.1);
}

.sc-modal-btn--cancel:hover {
    background: #f0ede6;
}

.sc-modal-btn--confirm {
    background: #dc2626;
    color: #fff;
}

.sc-modal-btn--confirm:hover {
    background: #b91c1c;
}
