/* SJC 2026 refresh: shared, restrained, accessible visual layer. */
:root {
    --sjc-forest-950: #102a25;
    --sjc-forest-900: #18352f;
    --sjc-forest-700: #2b5047;
    --sjc-gold-700: #8a6724;
    --sjc-gold-400: #d8b96f;
    --sjc-gold-200: #e8ddc4;
    --sjc-ink: #202523;
    --sjc-muted: #636a66;
    --sjc-canvas: #f7f3ec;
    --sjc-paper: #fffdfc;
    --sjc-border: #ddd4c3;
    --sjc-success: #2f6b4f;
    --sjc-error: #a33a33;
    --sjc-radius-sm: 4px;
    --sjc-radius-md: 8px;
    --sjc-radius-lg: 12px;
    --sjc-shadow: 0 8px 24px rgba(24, 53, 47, 0.08);
    --sjc-duration-fast: 150ms;
    --sjc-duration-base: 240ms;
    --sjc-ease: cubic-bezier(.2, .8, .2, 1);

    --spacing-2xl: 1.5rem;
    --spacing-3xl: 2.5rem;
    --spacing-4xl: 3.5rem;

    --text-primary: var(--sjc-ink);
    --text-secondary: #4e5652;
    --text-light: var(--sjc-muted);
    --bg-primary: var(--sjc-paper);
    --bg-secondary: var(--sjc-canvas);
    --bg-dark: var(--sjc-forest-950);
    --accent-gold: var(--sjc-gold-700);
    --primary-gradient: linear-gradient(135deg, var(--sjc-forest-950), var(--sjc-forest-900));
    --gold-gradient: linear-gradient(135deg, #9b772d, var(--sjc-gold-700));
    --shadow-sm: 0 2px 8px rgba(24, 53, 47, .05);
    --shadow-md: var(--sjc-shadow);
    --shadow-lg: 0 14px 36px rgba(24, 53, 47, .12);
    --radius-lg: var(--sjc-radius-md);
    --radius-xl: var(--sjc-radius-lg);
    --radius-2xl: var(--sjc-radius-lg);
    --transition-fast: var(--sjc-duration-fast) var(--sjc-ease);
    --transition-base: var(--sjc-duration-base) var(--sjc-ease);
}

html {
    background: var(--sjc-canvas);
    scroll-padding-top: 7rem;
}

body {
    color: var(--sjc-ink);
    background: var(--sjc-paper);
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

main {
    display: block;
}

.skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 9999;
    padding: .75rem 1rem;
    color: #fff;
    background: var(--sjc-forest-900);
    border-radius: var(--sjc-radius-sm);
    transform: translateY(-180%);
    transition: transform var(--sjc-duration-fast) var(--sjc-ease);
}

.skip-link:focus {
    transform: translateY(0);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 3px solid var(--sjc-gold-700);
    outline-offset: 3px;
}

.container,
.nav-container {
    width: min(100% - 2rem, 1200px);
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 0;
}

.navbar {
    top: 0;
    background: rgba(255, 253, 252, .96);
    border-bottom: 1px solid var(--sjc-border);
    backdrop-filter: blur(14px);
    box-shadow: none;
}

.nav-container {
    min-height: 88px;
    padding-block: .4rem;
}

.nav-logo {
    margin-left: 0;
    flex: 0 0 auto;
}

.logo-img,
.navbar.scrolled .logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: none;
}

.nav-menu {
    gap: 1.75rem;
    align-items: center;
}

.nav-link,
.nav-disclosure {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: .55rem .15rem;
    color: var(--sjc-ink);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
}

.nav-link::after,
.nav-disclosure::after {
    background: var(--sjc-gold-700);
}

.nav-link:hover,
.nav-link.active,
.nav-disclosure:hover,
.nav-disclosure[aria-expanded="true"] {
    color: var(--sjc-gold-700);
}

.nav-disclosure {
    gap: .35rem;
}

.nav-chevron {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: grid;
    place-items: center;
    margin-top: 1px;
    color: currentColor;
    border-radius: 50%;
    transition: transform 180ms ease, background 180ms ease;
}

.nav-chevron svg {
    width: 15px;
    height: 15px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-disclosure:hover .nav-chevron,
.nav-disclosure:focus-visible .nav-chevron {
    background: var(--sjc-gold-200);
}

.nav-dropdown:hover .nav-chevron,
.nav-disclosure[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
}

.nav-toggle {
    width: 46px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: .65rem;
    background: transparent;
    border: 1px solid var(--sjc-border);
    border-radius: var(--sjc-radius-md);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--sjc-ink);
}

.dropdown-menu {
    border-color: var(--sjc-border);
    border-radius: var(--sjc-radius-md);
    box-shadow: var(--sjc-shadow);
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
    color: var(--sjc-forest-900);
    background: var(--sjc-canvas);
    padding-left: var(--spacing-lg);
}

.nav-actions .btn {
    min-height: 44px;
}

.btn,
.submit-btn,
.method-btn,
.visit-btn,
.store-btn,
.style-inquiry {
    min-height: 44px;
    border-radius: var(--sjc-radius-md);
    box-shadow: none;
    transition: color var(--sjc-duration-fast) var(--sjc-ease),
                background var(--sjc-duration-fast) var(--sjc-ease),
                border-color var(--sjc-duration-fast) var(--sjc-ease),
                transform var(--sjc-duration-fast) var(--sjc-ease);
}

.btn::before {
    display: none;
}

.btn-primary,
.submit-btn,
.visit-btn {
    color: #fff;
    background: var(--sjc-forest-900);
    border-color: var(--sjc-forest-900);
}

.btn-primary:hover,
.submit-btn:hover,
.visit-btn:hover {
    color: #fff;
    background: var(--sjc-forest-950);
    border-color: var(--sjc-forest-950);
    transform: translateY(-1px);
}

.btn-outline,
.style-inquiry {
    color: var(--sjc-forest-900);
    background: transparent;
    border: 1px solid var(--sjc-forest-900);
}

.btn-outline:hover,
.style-inquiry:hover {
    color: #fff;
    background: var(--sjc-forest-900);
}

.section-title,
.page-title,
h1, h2, h3 {
    color: var(--sjc-ink);
    text-wrap: balance;
}

.section-badge {
    color: var(--sjc-gold-700);
    background: transparent;
    border: 0;
    padding: 0;
    border-radius: 0;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-description,
.page-description {
    color: var(--sjc-muted);
    max-width: 720px;
}

.page-header {
    min-height: 400px;
    margin-top: 88px;
    background: var(--sjc-forest-950);
}

.section {
    padding: clamp(2.5rem, 4vw, 3.75rem) 0;
}

.section-sm {
    padding: clamp(2.25rem, 4vw, 3.25rem) 0;
}

.section-lg {
    padding: clamp(3rem, 5vw, 4.25rem) 0;
}

.section-header {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.section-footer {
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.gold-gallery,
.silver-gallery,
.diamond-gallery,
.platinum-gallery,
.gemstone-gallery,
.bridal-gallery,
.lab-grown-gallery,
.diamond-comparison {
    padding: clamp(2.5rem, 4vw, 3.75rem) 0;
}

.header-overlay {
    background: linear-gradient(90deg, rgba(16,42,37,.82), rgba(16,42,37,.38));
}

.page-header .page-title,
.page-header .page-description,
.page-header .breadcrumb,
.page-header .breadcrumb a {
    color: #fff;
}

.trust-card,
.collection-card,
.service-card,
.testimonial-card,
.method-card,
.info-card,
.gallery-item {
    border: 1px solid var(--sjc-border);
    border-radius: var(--sjc-radius-md);
    background: var(--sjc-paper);
    box-shadow: none;
}

.collection-card:hover,
.service-card:hover,
.method-card:hover,
.gallery-item:hover {
    box-shadow: var(--sjc-shadow);
    transform: translateY(-2px);
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img,
.collection-image img {
    aspect-ratio: 4 / 5;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.style-inquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    padding: .7rem 1rem;
    font-size: .88rem;
    font-weight: 700;
}

.footer {
    color: rgba(255,255,255,.82);
    background: var(--sjc-forest-950);
    box-shadow: none;
    padding: 2.5rem 0 2rem !important;
}

.footer-section h3,
.footer-section h4,
.footer-logo-text h3 {
    color: #fff;
}

.footer-section a:hover,
.footer-section a:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-rating,
.testimonials,
.reviews-section,
.our-team,
.quick-contact,
.rating-card {
    display: none !important;
}

.quick-contact-header,
.contact-info,
.location-contact,
.store-visit-tile {
    display: none !important;
}

.social-links {
    display: none !important;
}

.form-group input,
.form-group textarea,
.form-group select,
.form-input,
.form-textarea,
.form-select {
    min-height: 48px;
    color: var(--sjc-ink);
    background: #fff;
    border: 1px solid #a9ada9;
    border-radius: var(--sjc-radius-sm);
    outline: none;
}

.form-group textarea,
.form-textarea {
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--sjc-forest-900);
    box-shadow: 0 0 0 3px rgba(24,53,47,.14);
}

.field-help,
.privacy-note {
    display: block;
    margin-top: .45rem;
    color: var(--sjc-muted);
    font-size: .84rem;
    line-height: 1.5;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--sjc-radius-md);
    border: 1px solid var(--sjc-border);
    background: var(--sjc-canvas);
}

.form-status[hidden] {
    display: none;
}

.request-preview {
    width: 100%;
    min-height: 170px;
    margin-block: .75rem;
    padding: 1rem;
    color: var(--sjc-ink);
    background: #fff;
    border: 1px solid var(--sjc-border);
    border-radius: var(--sjc-radius-sm);
    resize: vertical;
}

/* Runtime contact/footer components shared by every route, including legacy galleries. */
.verified-business-footer {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(520px, 1.35fr);
    align-items: center;
    gap: 2rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.16);
}

.verified-business-location {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}

.verified-business-location strong,
.verified-business-location > div > span {
    display: block;
}

.verified-business-location strong {
    color: #fff;
    font-size: .95rem;
}

.verified-business-location > div > span {
    max-width: 620px;
    margin-top: .25rem;
    color: rgba(255,255,255,.68);
    font-size: .85rem;
    line-height: 1.6;
}

.verified-business-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: var(--sjc-gold-400);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(224,189,119,.34);
    border-radius: 50%;
}

.verified-business-icon svg,
.verified-business-actions svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.verified-business-actions .icon-fill {
    fill: currentColor;
    stroke: none;
}

.verified-business-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
}

.verified-business-actions a {
    min-width: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .7rem;
    color: #fff;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--sjc-radius-sm);
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.verified-business-actions a:hover,
.verified-business-actions a:focus-visible {
    color: #fff;
    background: rgba(224,189,119,.1);
    border-color: rgba(224,189,119,.55);
    transform: translateY(-2px);
}

.verified-business-actions a > svg {
    flex: 0 0 21px;
    color: var(--sjc-gold-400);
}

.verified-business-action-copy {
    min-width: 0;
    display: block;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.verified-business-action-copy small,
.verified-business-action-copy b {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.verified-business-action-copy small {
    color: rgba(255,255,255,.58);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.verified-business-action-copy b {
    margin-top: .2rem;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
}

.site-copyright {
    max-width: none !important;
    margin: 1rem 0 0;
    padding-top: 1rem;
    color: rgba(255,255,255,.62);
    border-top: 1px solid rgba(255,255,255,.16);
    font-size: .8rem;
    line-height: 1.6;
    text-align: center;
}

.site-footer.site-footer--compact {
    padding: 1.5rem 0 2rem;
    color: rgba(255,255,255,.75);
    background: var(--sjc-forest-950);
}

.site-footer.site-footer--compact .site-copyright {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.floating-whatsapp {
    position: fixed;
    z-index: 1024;
    right: 1.5rem;
    bottom: 1.5rem;
    min-width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: 0 1.25rem;
    color: #fff;
    background: #18b978;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(16, 86, 60, .3);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp svg {
    width: 31px !important;
    height: 31px !important;
    flex: 0 0 31px;
    display: block;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    color: #fff;
    background: #109b64;
    transform: translateY(-3px);
}

.mobile-action-bar {
    display: none;
}

@media (max-width: 1023px) {
    .nav-container {
        min-height: 72px;
    }

    .logo-img,
    .navbar.scrolled .logo-img {
        width: 56px;
        height: 56px;
    }

    .nav-actions {
        gap: .5rem;
        padding-right: 0;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: calc(100dvh - 72px);
        display: flex;
        max-height: calc(100dvh - 72px);
        padding: 1rem 1rem 6rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(105%);
        opacity: 1;
        visibility: hidden;
        border-top: 0;
    }

    .page-header {
        min-height: 360px;
        margin-top: 72px;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-link,
    .nav-disclosure {
        width: 100%;
        justify-content: space-between;
        padding: .75rem .25rem;
        text-align: left;
    }

    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        margin-top: .25rem;
        background: var(--sjc-canvas);
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 560px;
    }

    .mobile-action-bar {
        position: fixed;
        right: .75rem;
        bottom: max(.75rem, env(safe-area-inset-bottom));
        left: .75rem;
        z-index: 1025;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .5rem;
        padding: .5rem;
        background: rgba(255,253,252,.96);
        border: 1px solid var(--sjc-border);
        border-radius: var(--sjc-radius-lg);
        box-shadow: var(--sjc-shadow);
        backdrop-filter: blur(12px);
    }

    .mobile-action-bar a {
        min-height: 46px;
        display: grid;
        place-items: center;
        padding: .6rem;
        border-radius: var(--sjc-radius-md);
        font-size: .84rem;
        font-weight: 700;
    }

    .mobile-action-bar a:first-child {
        color: #fff;
        background: var(--sjc-forest-900);
    }

    .mobile-action-bar a:last-child {
        color: var(--sjc-forest-900);
        border: 1px solid var(--sjc-forest-900);
    }

    .footer {
        padding-bottom: 10rem !important;
    }

    .verified-business-footer {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-2xl: 1.35rem;
        --spacing-3xl: 2rem;
        --spacing-4xl: 3rem;
    }

    .nav-actions .btn {
        display: none;
    }

    .page-header {
        min-height: 320px;
        margin-top: 72px;
    }

    .page-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .btn-lg {
        width: 100%;
        padding: .9rem 1.25rem;
        font-size: 1rem;
    }

    .verified-business-actions {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .floating-whatsapp {
        right: 1rem;
        bottom: 5.5rem;
        width: 58px;
        min-width: 58px;
        height: 58px;
        padding: 0;
    }

    .floating-whatsapp span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}

/* Privacy, legal links and optional external media */
.site-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem 1.15rem;
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255,255,255,.14);
}

.site-legal-links a,
.site-legal-links button {
    padding: 0;
    color: rgba(255,255,255,.68);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: .76rem;
    text-decoration: none;
}

.site-legal-links a:hover,
.site-legal-links button:hover,
.site-legal-links a:focus-visible,
.site-legal-links button:focus-visible {
    color: #fff;
}

.privacy-notice {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1100;
    width: min(calc(100% - 2rem), 680px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem .6rem .55rem 1.15rem;
    color: var(--sjc-ink);
    background: rgba(255,253,252,.985);
    border: 1px solid var(--sjc-border);
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(16,42,37,.16);
    opacity: 0;
    transform: translateY(.75rem);
    transition: opacity 180ms ease, transform 180ms ease;
}

.privacy-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Avoid a bottom-corner collision: the floating WhatsApp steps aside while the
   transient first-visit notice is on screen, and returns once it is dismissed. */
body.has-privacy-notice .floating-whatsapp {
    display: none;
}

.privacy-notice__text {
    margin: 0;
    color: var(--sjc-muted);
    font-size: .78rem;
    line-height: 1.45;
}

.privacy-notice__text a {
    color: var(--sjc-forest-900);
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 1px solid var(--sjc-gold-700);
}

.privacy-notice__actions {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
}

.privacy-notice__actions button {
    min-height: 38px;
    padding: .5rem .95rem;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.privacy-notice__prefs {
    color: var(--sjc-forest-900);
    background: transparent;
    border: 1px solid var(--sjc-border);
}

.privacy-notice__dismiss {
    color: #fff;
    background: var(--sjc-forest-900);
    border: 1px solid var(--sjc-forest-900);
}

@media (max-width: 560px) {
    .privacy-notice {
        flex-wrap: wrap;
        gap: .6rem;
        padding: .85rem 1rem;
        border-radius: 16px;
    }

    .privacy-notice__actions {
        width: 100%;
        justify-content: flex-end;
    }
}

.privacy-preferences {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1100;
    width: min(calc(100% - 2rem), 980px);
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(210px, .7fr) auto;
    align-items: end;
    gap: 1.5rem;
    margin-inline: auto;
    padding: 1.4rem;
    color: var(--sjc-ink);
    background: rgba(255,253,252,.985);
    border: 1px solid var(--sjc-border);
    border-radius: 4px;
    box-shadow: 0 22px 70px rgba(16,42,37,.24);
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 180ms ease, transform 180ms ease;
}

.privacy-preferences.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.privacy-preferences__close {
    position: absolute;
    top: .6rem;
    right: .7rem;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--sjc-muted);
    font-size: 1.65rem;
    line-height: 1;
}

.privacy-preferences__close[hidden] {
    display: none !important;
}

.privacy-preferences__eyebrow {
    margin: 0 0 .35rem;
    color: var(--sjc-gold-700);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.privacy-preferences h2 {
    margin: 0 0 .4rem;
    color: var(--sjc-forest-900);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1;
}

.privacy-preferences__copy > p:not(.privacy-preferences__eyebrow) {
    max-width: 580px;
    margin: 0;
    color: var(--sjc-muted);
    font-size: .82rem;
    line-height: 1.55;
}

.privacy-preferences__copy a {
    display: inline-block;
    margin-top: .45rem;
    color: var(--sjc-forest-900);
    border-bottom: 1px solid var(--sjc-gold-700);
    font-size: .76rem;
    font-weight: 700;
}

.privacy-preferences__status {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .35rem .8rem;
    color: var(--sjc-muted);
    font-size: .72rem;
}

.privacy-preferences__status strong {
    color: var(--sjc-forest-900);
    font-weight: 700;
}

.privacy-preferences__actions {
    display: grid;
    gap: .5rem;
}

.privacy-preferences__actions button {
    min-height: 42px;
    padding: .65rem .85rem;
    color: var(--sjc-forest-900);
    background: transparent;
    border: 1px solid var(--sjc-forest-900);
    border-radius: 3px;
    font-size: .74rem;
    font-weight: 700;
    white-space: nowrap;
}

.privacy-preferences__actions button:last-child {
    color: #fff;
    background: var(--sjc-forest-900);
}

.consent-map iframe[hidden],
.map-consent-placeholder[hidden] {
    display: none !important;
}

.showroom-map.consent-map {
    display: grid;
}

.showroom-map .map-consent-placeholder {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--sjc-forest-900);
    background: var(--sjc-canvas);
    text-align: center;
}

.showroom-map .map-consent-placeholder > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--sjc-gold-700);
    border: 1px solid var(--sjc-gold-400);
    border-radius: 50%;
}

.showroom-map .map-consent-placeholder svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.showroom-map .map-consent-placeholder h3 {
    margin: 1rem 0 .4rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
}

.showroom-map .map-consent-placeholder p {
    max-width: 360px;
    color: var(--sjc-muted);
    line-height: 1.65;
}

.showroom-map .map-consent-placeholder button {
    min-height: 44px;
    margin-top: 1rem;
    padding: .65rem 1rem;
    color: #fff;
    background: var(--sjc-forest-900);
    border-radius: 3px;
    font-weight: 700;
}

.showroom-map .map-consent-placeholder a {
    margin-top: .75rem;
    color: var(--sjc-gold-700);
    font-size: .8rem;
    font-weight: 700;
}

@media (max-width: 760px) {
    .privacy-preferences {
        right: .6rem;
        bottom: .6rem;
        left: .6rem;
        width: calc(100% - 1.2rem);
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 1rem;
        padding: 1.2rem;
    }

    .privacy-preferences__copy {
        padding-right: 1.5rem;
    }

    .privacy-preferences__actions {
        grid-template-columns: 1fr 1fr;
    }

    .privacy-preferences__actions button {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media print {
    .navbar,
    .mobile-action-bar,
    .privacy-preferences {
        display: none !important;
    }
}
