/* ============================================================
    SOLITAIRE PROVINCE — Page-specific styles
    ============================================================ */

/* ── Deep charcoal/champagne replaces gold throughout (except CTAs) ── */
.postid-810 .highlights-bar {
    background: #FFF;
    border: 1px solid var(--border);
}

body {
    /* --gold: #8B7355;
    --gold-hover: #6e5c42; */
    --theme-color: var(--project-theme-color);
    --theme-hover-color: #e6b800;
}

/* ── Restore gold for action CTAs only ── */
.sp-form-btn {
    background: #FFCC02 !important;
    color: #111 !important;
}

.sp-form-btn:hover {
    background: #e6b800 !important;
}

.floating-cta-icon {
    background: #FFCC02 !important;
}

.floating-cta:hover .floating-cta-icon {
    background: #e6b800 !important;
}

/* typology section */
section#typology {
    padding-top: 70px;
}

.highlights-bar {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    /* font-family: "Segoe UI", Arial, sans-serif; */
    background: #e7e7e7;
}

.highlight-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 20px;
    position: relative;
}

/* vertical dividers between items */
.highlight-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(0, 0, 0, 0.12);
}

.highlight-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.highlight-head svg {
    color: rgba(44, 44, 44, 0.698);
    flex-shrink: 0;
}

.highlight-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(44, 44, 44, 0.698);
}

.highlight-value {
    font-size: 15px;
    color: var(--theme-color);
    line-height: 1.4;
}

/* ── Clubhouse overlay numbers/label ── */
.sp-ch-overlay-title,
.sp-ch-facility-num {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* ── Hero ── */
.hero .hero-overlay {
    background: none;
}

picture img {
    width: 100%;
    height: 100%;
}

.sp-hero {
    height: 100%;
    /* min-height: 100vh; */
    overflow: hidden;
    position: relative;
}

.sp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.sp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.22) 45%,
            rgba(0, 0, 0, 0.60) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero .hero-content,
.hero .scroll-indicator {
    z-index: 2;
}

.hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: none !important;
    background: #0d0d0d;
}

.hero .hero-heading {
    font-size: clamp(28px, 3.5vw, 48px);
}

.hero .hero-heading .sol-white {
    color: #fff !important;
    font-style: normal;
}

.hero .hero-heading em {
    color: #FFCC02 !important;
    font-style: italic;
}

.nav {
    background: transparent !important;
}

.nav.scrolled {
    background: #fff !important;
}

/* ── Section 02: Intro ── */
.sp-intro {
    background: var(--bg);
    padding: var(--section-pad) 0;
    text-align: center;
}

.sp-intro-inner {
    max-width: 860px;
    margin: 0 auto;
}

.sp-intro-quote {
    font-family: 'Scheherazade New', serif;
    font-size: 36px;
    line-height: 1.35;
    font-weight: 300;
    color: var(--text);
    margin: 28px 0 32px;
}

.sp-intro-quote em {
    color: var(--theme-color);
    font-style: italic;
}

.sp-intro-divider {
    width: 48px;
    height: 1px;
    background: var(--theme-color);
    margin: 0 auto 32px;
}

.sp-intro-body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
    margin: 0 auto;
}

/* ── Section 03: The Challenge ── */
.sp-problem {
    background: var(--bg);
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.sp-problem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sp-problem-text .section-label {
    color: var(--muted);
    opacity: 1;
}

.sp-problem-heading {
    font-family: 'Scheherazade New', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin: 16px 0 28px;
}

.sp-problem-heading em {
    font-style: italic;
    color: var(--theme-color);
}

.sp-problem-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 20px;
}

.sp-problem-image {
    position: relative;
    overflow: hidden;
}

.sp-problem-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 6s ease;
}

.sp-problem-image:hover img {
    transform: scale(1.04);
}

/* ── Section 04: Why Choose ── */
.sp-why {
    background: var(--bg-alt);
    padding: var(--section-pad) 0;
}

.sp-why-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
}

.sp-why-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
    margin-top: 20px;
}

.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    border-left: 1px solid rgba(26, 26, 26, 0.08)
}

.sp-why-card {
    padding: 44px 36px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    border-right: 1px solid rgba(26, 26, 26, 0.08);
    transition: background 0.3s ease;
}

/* .sp-why-card:last-child { border-right: 1px solid rgba(26,26,26,0.08); } */
.sp-why-card:hover {
    background: var(--bg);
}

.sp-why-card-num {
    font-family: 'Scheherazade New', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.08);
    line-height: 1;
    margin-bottom: 20px;
}

.sp-why-card-title {
    font-family: 'Scheherazade New', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.25;
}

.sp-why-card-body {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--muted);
}

.sp-why-card-accent {
    width: 28px;
    height: 2px;
    background: var(--theme-color);
    margin-bottom: 20px;
}

/* ── Section 05: Amenities ── */
.sp-amenities {
    background: var(--bg);
    padding: var(--section-pad) 0 0;
    overflow: hidden;
    display: none;
}

.sp-amenities-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
}

.sp-amenities-heading {
    font-family: 'Scheherazade New', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin-top: 16px;
}

.sp-amenities-heading em {
    font-style: italic;
    color: var(--theme-color);
}

.sp-amenities-sub {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
    align-self: end;
}

.sp-amenities-tracks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: var(--section-pad);
}

.sp-amenities-track {
    display: flex;
    overflow: hidden;
    gap: 14px;
}

.sp-amenities-track-inner {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    animation: amenityScroll 28s linear infinite;
}

.sp-amenities-track:nth-child(2) .sp-amenities-track-inner {
    animation-direction: reverse;
    animation-duration: 22s;
}

.sp-amenities-track:nth-child(3) .sp-amenities-track-inner {
    animation-duration: 34s;
}

@keyframes amenityScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.sp-amenities-tracks:hover .sp-amenities-track-inner {
    animation-play-state: paused;
}

.sp-amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: 1.5px solid rgba(26, 26, 26, 0.12);
    border-radius: 100px;
    white-space: nowrap;
    background: #fff;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(.16, 1, .3, 1);
}

.sp-amenity-pill:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    transform: scale(1.04);
}

.sp-amenity-pill:hover .sp-amenity-pill-num {
    color: rgba(0, 0, 0, 0.35);
}

.sp-amenity-pill:hover .sp-amenity-pill-name {
    /* color: #fff; */
    color: #000000;
}

.sp-amenity-pill-num {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--theme-color);
    transition: color 0.3s ease;
}

.sp-amenity-pill-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

/* ── Section 06: Clubhouse ── */
.sp-clubhouse {
    background: var(--bg-alt);
    padding: var(--section-pad) 0 0;
    display: none;
}

.sp-ch-header {
    margin-bottom: 56px;
}

.sp-ch-visual {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sp-ch-img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

.sp-ch-visual:hover .sp-ch-img {
    transform: scale(1.04);
}

.sp-ch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 18, 0.96) 0%, rgba(10, 10, 18, 0.75) 50%, rgba(10, 10, 18, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 56px 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.16, 1, .3, 1);
}

.sp-ch-visual:hover .sp-ch-overlay {
    opacity: 1;
    transform: translateY(0);
}

.sp-ch-overlay-title {
    font-family: 'Scheherazade New', serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 32px;
}

.sp-ch-facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-ch-facility {
    padding: 28px 32px;
    background: rgba(10, 10, 18, 0.6);
    transition: background 0.3s ease;
}

.sp-ch-facility:hover {
    background: rgba(139, 115, 85, 0.15);
}

.sp-ch-facility-num {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.sp-ch-facility-name {
    font-family: 'Scheherazade New', serif;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.sp-ch-facility-desc {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
}

/* ── Section 07: Masterplan ── */
button.sp-plan-tab[data-tab="floorplans"] {
    display: none;
}
.sp-masterplan {
    background: var(--bg-alt);
    padding: var(--section-pad) 0;
}

.sp-masterplan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sp-plan-tabs {
    display: flex;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
    padding: 3px;
}

.sp-plan-tab {
    padding: 10px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.sp-plan-tab.active {
    background: var(--dark);
    color: #fff;
    border-radius: 999px;
}

.sp-plan-tab:not(.active):hover {
    background: var(--bg-alt);
    color: var(--text);
}

.sp-plan-panel {
    display: none;
}

.sp-plan-panel.active {
    display: block;
}

.sp-masterplan-frame {
    position: relative;
    overflow: hidden;
    background: #e8e4de;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-masterplan-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.sp-masterplan-frame:hover img {
    transform: scale(1.03);
}

.sp-masterplan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.sp-masterplan-badge {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: var(--theme-color);
    color: #FFF;
    border: 1px solid var(--theme-color);
    padding: 10px 24px;
    cursor: pointer;
}

.sp-masterplan-label {
    font-family: 'Scheherazade New', serif;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
}

.sp-floorplan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sp-floorplan-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 16px;
    cursor: pointer;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}

.sp-floorplan-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    border-color: rgba(0, 0, 0, 0.18);
    transform: translateY(-3px);
}

.sp-fp-icon {
    width: 56px;
    height: 56px;
    opacity: 0.18;
}

.sp-fp-type {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--theme-color);
}

.sp-fp-name {
    font-family: 'Scheherazade New', serif;
    font-size: 26px;
    font-weight: 300;
    color: var(--dark);
    text-align: center;
    line-height: 1.2;
}

.sp-fp-area {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: var(--muted);
}

.sp-fp-cta {
    margin-top: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    border-bottom: 1px solid var(--dark);
    padding-bottom: 2px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
}

.sp-floorplan-card:hover .sp-fp-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ── Section 08: Gallery ── */
.sp-gallery {
    background: var(--bg);
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.sp-gal-header {
    margin-bottom: 64px;
    text-align: center;
}

.sp-gal-stage {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-gal-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.sp-gal-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(.16, 1, .3, 1), opacity 0.75s ease, left 0.75s cubic-bezier(.16, 1, .3, 1);
    cursor: pointer;
    pointer-events: none;
}

.sp-gal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

.sp-gal-slide.pos-active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

.sp-gal-slide.pos-active:hover img {
    transform: scale(1.04);
}

.sp-gal-slide.pos-prev {
    left: 20%;
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0.38;
    z-index: 2;
    pointer-events: auto;
}

.sp-gal-slide.pos-next {
    left: 80%;
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0.38;
    z-index: 2;
    pointer-events: auto;
}

.sp-gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sp-gal-arrow:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.sp-gal-prev {
    left: 32px;
}

.sp-gal-next {
    right: 32px;
}

.sp-gal-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.sp-gal-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.2);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    padding: unset;
}

.sp-gal-dot.active {
    background: var(--theme-color);
    transform: scale(1.4);
}

/* ── Section 09: Other Provinces ── */
.about-cta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--theme-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--theme-color);
    padding-bottom: 2px;
    transition: gap .25s;
}

.sp-provinces {
    background: var(--bg-alt);
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.sp-provinces-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
}

.sp-provinces-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sp-prov-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    text-decoration: none;
}

.sp-prov-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(.16, 1, .3, 1);
}

.sp-prov-card:hover img {
    transform: scale(1.06);
}

.sp-prov-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.sp-prov-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
}

.sp-prov-card-num {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.sp-prov-card-name {
    font-family: 'Scheherazade New', serif;
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.sp-prov-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0);
    transition: color 0.3s ease, gap 0.3s ease;
}

.sp-prov-card:hover .sp-prov-card-arrow {
    color: rgba(255, 255, 255, 0.7);
    gap: 12px;
}

/* ── Enquiry ── */
.sp-enquiry {
    background: var(--bg);
    padding: var(--section-pad) 0;
}

.sp-enquiry-inner {
    display: grid;
    grid-template-columns: 36fr 64fr;
    gap: 80px;
    align-items: start;
}

.sp-enquiry-left .section-label {
    color: var(--muted);
}

.sp-enquiry-heading {
    font-family: 'Scheherazade New', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin: 16px 0 20px;
}

.sp-enquiry-heading em {
    font-style: italic;
    color: var(--theme-color);
}

.sp-enquiry-sub {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
}

.sp-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.sp-form-group {
    border-bottom: 1px solid rgba(26, 26, 26, 0.18);
    margin-bottom: 36px;
    padding-bottom: 12px;
}

.sp-form-group.full {
    grid-column: span 2;
}

.sp-form-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.sp-form-input,
.sp-form-select,
.sp-form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--text);
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

.sp-form-select option {
    background: #fff;
    color: var(--text);
}

.sp-form-input::placeholder,
.sp-form-textarea::placeholder {
    color: rgba(26, 26, 26, 0.25);
}

.sp-form-textarea {
    resize: none;
    height: 60px;
}

.sp-form-submit {
    grid-column: span 2;
    margin-top: 8px;
}

.sp-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme-color);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 17px 36px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, gap 0.25s ease;
}

.sp-form-btn:hover {
    gap: 14px;
}

.wpcf7-form-control.wpcf7-submit input[type="submit"] {
    display: inline-block;
    background: #FFCC02 !important;
    color: var(--dark) !important;
    font-size: 13px !important;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px !important;
    border: none !important;
    cursor: pointer;
    transition: background .25s, transform .2s;
}

span.subtitle {
    font-style: italic;
    color: var(--theme-color);
    display: block;
}

.hero-line.hero-line-1 em {
    color: #FFCC02;
}

.postid-15693 section#sol-explore {
    display: none;
    opacity: 0;
    visibility: none;
}

/* Video banner — mirror the image banner's fit and toggle by device */
.sp-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills the hero without distortion, like the image */
    display: block;
}

/* Desktop video shows by default; mobile video hidden */
.hero-video-mobile {
    display: none;
}


/* ── Responsive ── */
@media (max-width: 996px) {
    .sp-ch-img {
        width: 100%;
    }

    .sp-ch-visual:hover .sp-ch-img {
        transform: none;
    }

    .sp-ch-overlay {
        position: relative;
        opacity: 1;
        transform: none;
        background: linear-gradient(to top, rgba(10, 10, 18, 0.96) 0%, rgba(10, 10, 18, 0.75) 50%, rgb(10 10 18 / 70%) 100%);
    }
}

@media (max-width: 900px) {

    .sp-problem-inner,
    .sp-why-intro,
    .sp-amenities-header,
    .sp-enquiry-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-provinces-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-form {
        grid-template-columns: 1fr;
    }

    .sp-form-group.full,
    .sp-form-submit {
        grid-column: span 1;
    }

    .sp-intro-inner {
        max-width: 100%;
    }

    .sp-ch-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .sp-ch-img { aspect-ratio: 4/3; } */
    .sp-gal-stage {
        height: 380px;
    }

    .sp-gal-slide {
        width: 70%;
    }

    .sp-gal-slide.pos-prev {
        left: 10%;
    }

    .sp-gal-slide.pos-next {
        left: 90%;
    }
}

@media (max-width: 600px) {

    /* Typology section */

    .highlights-bar {
        flex-wrap: wrap;
    }

    .highlight-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 20px 15px;
    }

    /* remove the vertical line on the right of the 2nd column */
    .highlight-item:nth-child(2)::after {
        display: none;
    }

    /* horizontal divider under the top row */
    .highlight-item:nth-child(1)::before,
    .highlight-item:nth-child(2)::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background: rgba(0, 0, 0, 0.12);
    }

    .sp-why-grid {
        grid-template-columns: 1fr;
    }

    .sp-provinces-track {
        grid-template-columns: 1fr;
    }

    .sp-why-card {
        padding: 32px 24px;
    }

    .sp-ch-facilities-grid {
        grid-template-columns: 1fr;
    }

    .sp-gal-stage {
        height: 280px;
    }

    .sp-gal-slide {
        width: 85%;
    }

    .sp-gal-slide.pos-prev,
    .sp-gal-slide.pos-next {
        opacity: 0.2;
    }

    .sp-masterplan-header {
        flex-direction: column;
    }

    .sp-masterplan-header-left {
        width: 100%;
        margin-bottom: 20px;
    }

    .sp-floorplan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .sp-provinces-header { flex-direction: column; } */

    .highlight-item {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 16px 15px;
    }

    /* no vertical dividers when stacked */
    .highlight-item::after {
        display: none;
    }

    /* horizontal divider between each stacked item */
    .highlight-item:not(:last-child)::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background: rgba(0, 0, 0, 0.12);
    }

    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }
}
/* ── Project Popup Form modal ──────────────────────────────── */
.pp-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 10, 10, 0.62);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.pp-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.pp-box {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 52px 52px 48px;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pp-overlay.is-open .pp-box {
    transform: translateY(0) scale(1);
}
.pp-close {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    transition: color 0.2s;
}
.pp-close:hover { color: var(--text); }
.pp-close svg { width: 18px; height: 18px; }
.pp-label {
    display: block;
    margin-bottom: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}
.pp-heading {
    font-family: 'Scheherazade New', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin: 0 0 32px;
}
.pp-heading em { font-style: italic; color: var(--muted); }
body.pp-open { overflow: hidden; }
@media (max-width: 600px) {
    .pp-box { padding: 44px 22px 34px; }
    .pp-close { top: 14px; right: 14px; }
}
