/* ═══════════════════════════════════════════════ */
/* MODAL GALLERY SYSTEM                            */
/* ═══════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
    padding: 0.35rem 0;
}

.gallery-grid .gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(20, 30, 60, 0.08);
    padding: 0.8rem;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: clamp(150px, 18vw, 220px);
    object-fit: cover;
    border-radius: 0.7rem;
}

.gallery-caption {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: #4a5664;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.gallery-grid--modal {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-category-stack {
    display: grid;
    gap: 1.35rem;
}

.gallery-category-section {
    border: 1px solid rgba(19, 36, 61, 0.08);
    border-radius: 14px;
    padding: 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.95));
}

.gallery-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.7rem;
    gap: 0.75rem;
}

.gallery-category-title {
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
    color: #17283d;
}

.gallery-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: rgba(215, 171, 91, 0.18);
    color: #7a5712;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.gallery-thumb {
    border: 0;
    background: linear-gradient(165deg, #ffffff, #f5f8fb);
    border-radius: 14px;
    padding: 10px;
    text-align: left;
    box-shadow: 0 10px 22px rgba(13, 27, 44, 0.09);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(13, 27, 44, 0.16);
    outline: none;
}

.gallery-thumb img {
    width: 100%;
    height: clamp(145px, 17vw, 210px);
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.gallery-thumb-caption {
    display: block;
    margin-top: 0.55rem;
    color: #1f2d3f;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-lightbox-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.95rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(6, 10, 16, 0.72));
}

.gallery-lightbox-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(8, 16, 31, 0.58);
    color: #fff;
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-lightbox-btn:hover,
.gallery-lightbox-btn:focus-visible {
    transform: scale(1.06);
    background: rgba(227, 184, 109, 0.95);
    color: #111;
    outline: none;
}

.gallery-lightbox-counter {
    min-width: 76px;
    text-align: center;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-thumb img,
    .gallery-grid .gallery-item img {
        height: 148px;
    }
}
/* Event Hall page sections and experience styles */

.section-title {
    font-family: var(--font-serif);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: #fff;
    background: #000;
    overflow: hidden;
}

.hero-section>.container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: clamp(72px, 9vh, 120px);
    padding-bottom: clamp(72px, 9vh, 120px);
}

.hero-section #heroCarousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.56);
    transform: scale(1.04);
    animation: slowZoom 20s infinite alternate;
}

.carousel-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

@keyframes heroRevealUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroRevealFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroRuleExpand {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-label,
    .hero-rule,
    .hero-title-line,
    .hero-subtitle,
    .hero-actions,
    .hero-scroll-indicator {
        animation: none !important;
    }

    .hero-scroll-arrow {
        animation: none !important;
        opacity: 0.6;
    }
}

.hero-overlay {
    background:
        linear-gradient(180deg,
            rgba(5, 10, 18, 0.50) 0%,
            rgba(5, 10, 18, 0.06) 28%,
            rgba(0, 0, 0, 0.18) 58%,
            rgba(0, 0, 0, 0.68) 100%),
        radial-gradient(ellipse at 50% 60%, transparent 40%, rgba(0, 0, 0, 0.38) 100%);
    z-index: 1;
}

.hero-bloom {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, 96vw);
    height: min(700px, 80vh);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(184, 155, 94, 0.09) 0%, transparent 68%);
    pointer-events: none;
}

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    animation: heroRevealFade 1s 0.15s ease both;
}

.hero-label::before,
.hero-label::after {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
    flex-shrink: 0;
}

.hero-rule {
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 155, 94, 0.65) 50%, transparent);
    margin: 0.2rem auto 1.7rem;
    transform-origin: center;
    animation: heroRuleExpand 1s 0.42s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 0.85;
    font-weight: 300;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-title-line:nth-child(1) {
    animation: heroRevealUp 1.2s 0.56s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title-line:nth-child(2) {
    animation: heroRevealUp 1.2s 0.74s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle {
    max-width: 42rem;
    margin: 0 auto clamp(1.5rem, 3.8vh, 2.75rem);
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.7;
    text-wrap: balance;
    animation: heroRevealUp 1.2s 0.94s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (min-width: 992px) {
    .hero-subtitle {
        max-width: 52rem;
        font-size: 1.24rem;
    }
}

.hero-cta-label {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(184, 155, 94, 0.55);
    background: rgba(10, 22, 40, 0.36);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-actions {
    align-items: center;
    flex-wrap: wrap;
    animation: heroRevealUp 1.2s 1.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: clamp(1.25rem, 3vh, 2rem);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.67rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: heroRevealFade 1s 1.5s ease both;
    /* button reset */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.22s ease, transform 0.22s ease;
}

.hero-scroll-indicator:hover,
.hero-scroll-indicator:focus-visible {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(3px);
    outline: none;
}

.hero-scroll-arrow {
    width: 18px;
    height: 11px;
    animation: scrollChevron 2.2s ease-in-out infinite;
}

@keyframes scrollChevron {

    0%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    55% {
        opacity: 0.9;
        transform: translateY(5px);
    }
}

/* ═══════════════════════════════════════════════ */
/* LEGACY STATS SECTION                           */
/* ═══════════════════════════════════════════════ */
.legacy-stats-section {
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.legacy-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.legacy-header {
    text-align: center;
    margin-bottom: 80px;
}

.legacy-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.legacy-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.legacy-title-accent {
    background: linear-gradient(90deg, var(--gold), #d4af6a, var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.legacy-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.legacy-divider-line {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.legacy-divider-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.legacy-divider-icon {
    color: var(--gold);
    width: 16px;
    height: 16px;
}

/* ─── STAT GRID ─── */
.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr 1fr;
    gap: 24px;
    row-gap: 24px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.legacy-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    padding: 50px 30px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.legacy-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 155, 94, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.legacy-card:hover {
    transform: translateY(-12px);
    border-color: rgba(184, 155, 94, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(184, 155, 94, 0.1);
}

.legacy-card:hover::before {
    opacity: 1;
}

/* Featured card — taller, more prominent */
.legacy-card-featured {
    padding: 70px 40px;
    background: linear-gradient(160deg, rgba(184, 155, 94, 0.08) 0%, var(--card-bg) 60%);
    border-color: rgba(184, 155, 94, 0.3);
    box-shadow: 0 20px 50px rgba(184, 155, 94, 0.08);
}

.legacy-card-inner {
    position: relative;
    z-index: 1;
}

/* ─── ARC RING ─── */
.legacy-arc-ring {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--ring-color, #b89b5e);
    opacity: 0.15;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.legacy-arc-ring::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 50%;
    border: 1px solid var(--ring-color, #b89b5e);
    opacity: 0.5;
}

.legacy-card:hover .legacy-arc-ring {
    opacity: 0.4;
    transform: scale(1.1) rotate(30deg);
}

/* ─── NUMBER ─── */
.legacy-number-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-bottom: 16px;
}

.legacy-number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: -2px;
    line-height: 1;
}

.legacy-card-featured .legacy-number {
    font-size: clamp(4rem, 7vw, 7rem);
}

.legacy-suffix {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: var(--gold);
    opacity: 0.7;
    align-self: flex-start;
    margin-top: 8px;
}

.legacy-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.legacy-sub {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.legacy-rating {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.legacy-stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--gold);
    font-size: 0.95rem;
    line-height: 1;
}

.legacy-stars i {
    filter: drop-shadow(0 1px 2px rgba(184, 155, 94, 0.28));
}

.legacy-rating-meta {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

@media (max-width: 991px) {
    .legacy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        /* bit wider */
        row-gap: 32px;
    }

    /* Featured is Card 2 in HTML */
    /* Satisfaction is Card 4 in HTML */
    .legacy-card:nth-child(1) {
        order: 2;
    }

    .legacy-card:nth-child(2) {
        order: 1;
        grid-column: 1 / -1;
        padding: 60px 40px;
    }

    .legacy-card:nth-child(3) {
        order: 3;
    }

    .legacy-card:nth-child(4) {
        order: 4;
        grid-column: 1 / -1;
    }

    .legacy-stats-section {
        padding: 120px 24px 80px;
        /* More top padding for navbar */
    }
}

@media (max-width: 576px) {
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        row-gap: 24px;
    }

    .legacy-card {
        padding: 40px 24px;
        order: unset !important;
        /* Back to simple stack */
    }

    .legacy-card:nth-child(2) {
        grid-column: 1 / -1;
        padding: 50px 24px;
    }

    .legacy-stats-section {
        padding: 110px 16px 60px;
        /* Clear navbar */
    }
}

/* ------------------------------ */

.spaces-intro {
    max-width: 650px;
    text-align: center;
    color: var(--text-secondary);
}

.space-item {
    height: 100%;
    border: 1px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.space-item:hover,
.space-item:focus-visible,
.space-item.hint-peek {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(184, 155, 94, 0.45);
}

.space-img-wrap {
    position: relative;
    overflow: hidden;
}

.space-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.space-item:hover img,
.space-item:focus-visible img {
    transform: scale(1.03);
}

.space-gallery-pill {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: rgba(10, 22, 40, 0.8);
    color: #fff;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.space-text {
    padding: 1rem 1rem 1.2rem;
}

.space-text h4 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.spaces-section .section-eyebrow,
.spaces-section .section-intro-title,
.spaces-section .space-text h4 {
    font-family: "Cinzel", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-weight: 400;
    font-style: normal;
}

.spaces-section .section-eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.spaces-section .section-intro-title {
    letter-spacing: 0.055em;
    line-height: 1.08;
    text-transform: none;
}

.spaces-section .space-text h4 {
    font-size: 1.28rem;
    letter-spacing: 0.045em;
    line-height: 1.18;
    text-transform: none;
}

.space-text p {
    color: var(--text-secondary);
    margin: 0;
}

/* ═══════════════════════════════════════════════ */
/* PREMIUM SECTION INTROS                         */
/* ═══════════════════════════════════════════════ */
.section-intro {
    position: relative;
}

.section-intro-accent {
    display: inline-block;
}

.milestone-section .section-intro--milestone {
    max-width: 1020px;
    margin: 0 auto 2.7rem;
    text-align: center;
}

.milestone-intro-head {
    align-content: start;
    gap: 0.65rem;
    justify-items: center;
}

.milestone-section .section-intro--milestone .milestone-intro-copy-wrap {
    position: relative;
    padding: 0.15rem 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateX(clamp(0px, 3vw, 40px));
}

.milestone-section .section-intro--milestone .milestone-intro-copy-wrap::before {
    content: none;
}

.milestone-intro-title {
    margin: 0 0 0.5rem;
    font-size: clamp(3.6rem, 8.8vw, 7.4rem);
    line-height: 0.88;
    letter-spacing: -0.038em;
    max-width: none;
    margin-inline: auto;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.15em;
    flex-wrap: nowrap;
    font-feature-settings: 'liga' 1, 'kern' 1;
    white-space: nowrap;
}

.milestone-intro-title-main,
.milestone-intro-title-lead-wrap,
.milestone-intro-title-accent {
    display: block;
}

.milestone-intro-title-lead-wrap {
    display: inline-grid;
    justify-items: center;
    gap: 0.28rem;
    padding-bottom: 0.08em;
}

.milestone-intro-title-main {
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #1d2432;
}

.milestone-section .section-intro--milestone .section-intro-accent {
    width: calc(100% + clamp(130px, 13vw, 220px));
    max-width: none;
    justify-self: start;
    transform: translateX(clamp(-52px, -3.6vw, -26px));
    height: 2px;
    border-radius: 999px;
    border: 0;
    margin: 0;
    position: relative;
    background: linear-gradient(90deg, rgba(184, 155, 94, 0.18), rgba(184, 155, 94, 0.98), rgba(184, 155, 94, 0.18));
}

.milestone-section .section-intro--milestone .section-intro-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1.25px solid rgba(184, 155, 94, 0.45);
    border-right: 1.25px solid rgba(184, 155, 94, 0.45);
    border-radius: 0;
    background: transparent;
}

.milestone-section .section-intro--milestone .section-intro-accent::before {
    content: none;
}

.milestone-section .section-intro--milestone .section-intro-accent::after {
    right: -10px;
}

.milestone-intro-title-accent {
    font-size: 1.16em;
    line-height: 0.78;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.06em;
    transform: translateY(-0.24em);
    background: linear-gradient(180deg, #d7bd84 0%, #b89447 48%, #8f6b2c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 24px rgba(184, 155, 94, 0.12);
}

.milestone-intro-copy {
    max-width: 52rem;
    font-size: 1.12rem;
    line-height: 1.78;
    color: rgba(58, 67, 82, 0.95);
    margin-inline: auto;
}

@media (max-width: 767.98px) {
    .milestone-section .section-intro--milestone {
        gap: 0.8rem;
        margin-bottom: 1.7rem;
    }

    .milestone-section .section-intro--milestone .milestone-intro-copy-wrap {
        padding: 0;
        transform: none;
    }

    .milestone-intro-title {
        font-size: clamp(2.45rem, 8.8vw, 4.3rem);
        line-height: 0.9;
        column-gap: 0.05em;
        row-gap: 0;
        flex-wrap: wrap;
        white-space: normal;
    }

    .milestone-intro-title-lead-wrap {
        gap: 0;
        width: fit-content;
        position: relative;
        padding-bottom: 0.34rem;
    }

    .milestone-section .section-intro--milestone .section-intro-accent {
        width: calc(100% + clamp(136px, 30vw, 220px));
        max-width: none;
        justify-self: start;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }

    .milestone-section .section-intro--milestone .section-intro-accent::after {
        width: 7px;
        height: 7px;
        border-top-width: 1px;
        border-right-width: 1px;
        right: -9px;
    }

    .milestone-intro-copy {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.spaces-section .section-intro--spaces {
    max-width: 880px;
    margin: 0 auto 1.75rem;
    text-align: center;
}

.spaces-section .section-intro--spaces .section-intro-accent {
    width: 84px;
    height: 2px;
    margin: 0 auto 1rem;
    background: linear-gradient(90deg, transparent, rgba(184, 155, 94, 0.95), transparent);
}

.spaces-section .section-intro--spaces .section-intro-copy {
    font-size: 1rem;
    letter-spacing: 0.01em;
}

@media (max-width: 767.98px) {
    .spaces-section .section-eyebrow {
        letter-spacing: 0.22em;
    }

    .spaces-section .section-intro-title {
        letter-spacing: 0.035em;
        line-height: 1.12;
    }

    .spaces-section .space-text h4 {
        font-size: 1.18rem;
        letter-spacing: 0.035em;
    }
}

.services-section .section-intro--services {
    max-width: 860px;
    margin: 0 auto 2rem;
    padding: clamp(1.1rem, 2vw, 1.4rem) clamp(1.1rem, 2.6vw, 1.8rem);
    border-radius: 22px;
    border: 1px solid rgba(184, 155, 94, 0.2);
    background:
        radial-gradient(circle at 6% 20%, rgba(184, 155, 94, 0.15), transparent 30%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(245, 241, 234, 0.92));
    box-shadow: 0 14px 28px rgba(26, 20, 11, 0.08);
}

.services-section .section-intro--services .section-intro-accent {
    width: 54px;
    height: 1px;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, rgba(184, 155, 94, 0.12), rgba(184, 155, 94, 0.86));
}

.pricing-section .section-intro--pricing .section-intro-accent {
    width: 110px;
    height: 14px;
    margin: 0 auto 0.85rem;
    background:
        linear-gradient(90deg, transparent, rgba(184, 155, 94, 0.82), transparent),
        linear-gradient(90deg, transparent, rgba(184, 155, 94, 0.24), transparent);
    background-size: 100% 1px, 60% 1px;
    background-repeat: no-repeat;
    background-position: center 3px, center 10px;
}

.pricing-section .section-intro--pricing .section-intro-title {
    letter-spacing: -0.02em;
}

.social-section .section-intro--social {
    margin: 0;
    text-align: left;
}

.social-section .section-intro--social .section-intro-copy {
    color: rgba(232, 238, 247, 0.74);
    max-width: 38rem;
}

.testimonials-intro-col.section-intro--testimonials {
    margin: 0;
    text-align: left;
}

.testimonials-intro-col.section-intro--testimonials .section-eyebrow {
    letter-spacing: 0.24em;
}

[data-theme="dark"] .milestone-section .section-intro--milestone .milestone-intro-copy-wrap::before,
[data-theme="dark"] .section-intro--services .section-intro-accent,
[data-theme="dark"] .section-intro--pricing .section-intro-accent {
    opacity: 0.9;
}

[data-theme="dark"] .milestone-intro-line {
    background: linear-gradient(90deg, rgba(216, 190, 134, 0.88), rgba(216, 190, 134, 0.16));
}

[data-theme="dark"] .milestone-intro-title-main {
    color: #f4f7fb;
}

[data-theme="dark"] .milestone-intro-title-accent {
    background: linear-gradient(180deg, #f1ddb1 0%, #d8be86 52%, #ad8540 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

[data-theme="dark"] .milestone-section .section-intro--milestone .milestone-intro-copy-wrap {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

[data-theme="dark"] .milestone-intro-copy {
    color: rgba(221, 229, 241, 0.84);
}

[data-theme="dark"] .services-section .section-intro--services {
    border-color: rgba(184, 155, 94, 0.26);
    background:
        radial-gradient(circle at 6% 20%, rgba(184, 155, 94, 0.12), transparent 30%),
        linear-gradient(140deg, rgba(15, 27, 49, 0.92), rgba(10, 20, 38, 0.9));
    box-shadow: 0 18px 30px rgba(2, 10, 28, 0.34);
}

[data-theme="dark"] .section-intro--services .section-intro-copy,
[data-theme="dark"] .section-intro--milestone .section-intro-copy,
[data-theme="dark"] .section-intro--spaces .section-intro-copy,
[data-theme="dark"] .section-intro--pricing .section-intro-copy,
[data-theme="dark"] .section-intro--testimonials .section-intro-copy {
    color: rgba(221, 229, 241, 0.8);
}

.services-section {
    border: 1px solid var(--border-color);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.25s ease;
}

.service-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.services-section .col-md-3:hover .service-icon-wrapper {
    transform: translateY(-6px);
    background: var(--gold);
    border-color: var(--gold);
}

.services-section .col-md-3:hover .service-icon {
    color: #fff;
}

.testimonials-section {
    position: relative;
}

.testimonials-intro-col {
    padding-right: clamp(0rem, 2vw, 1rem);
}

.testimonials-intro-title {
    position: relative;
    display: inline-grid;
    justify-items: start;
    gap: 0.2rem;
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 3.8vw, 3.5rem);
    line-height: 0.96;
    letter-spacing: -0.01em;
    color: #172133;
}

.testimonials-title-line {
    display: block;
}

.testimonials-title-line--lead {
    position: relative;
    padding-left: 0.9rem;
    font-size: 0.92em;
    letter-spacing: 0.02em;
}

.testimonials-title-line--lead::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.44em;
    margin-left: 0.28rem;
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.95) 0%, rgba(184, 155, 94, 0.28) 72%, transparent 100%);
    box-shadow: 0 0 0 0.28rem rgba(184, 155, 94, 0.1);
}

.testimonials-title-line--accent-wrap {
    position: relative;
    display: inline-grid;
    align-items: center;
}

.testimonials-title-orbit {
    position: absolute;
    inset: 50% auto auto 0.12rem;
    width: calc(100% + 1.1rem);
    height: 128%;
    transform: translateY(-50%);
    border: 1px solid rgba(184, 155, 94, 0.2);
    border-radius: 999px;
    pointer-events: none;
}

.testimonials-title-line--accent {
    position: relative;
    z-index: 1;
    padding: 0.04em 0.38em 0.08em 0;
    font-family: "Allura", "Cormorant Garamond", serif;
    font-size: 1.38em;
    line-height: 0.82;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: none;
    background: linear-gradient(180deg, #d8be86 0%, #c39a52 52%, #8f6b2c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 22px rgba(184, 155, 94, 0.16);
}

.testimonials-intro-rule {
    width: 90px;
    height: 2px;
    margin: 1rem 0;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.testimonials-intro-body {
    color: #4a5568;
    max-width: 28rem;
}

.testimonials-view-all-btn {
    border: 1px solid rgba(111, 84, 34, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #6f5422;
    padding: 0.8rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.testimonials-intro-actions {
    display: grid;
    justify-items: center;
    gap: 0.9rem;
    width: 100%;
}

[data-theme="dark"] .testimonials-intro-title {
    color: #f7f8fb;
}

[data-theme="dark"] .testimonials-title-line--lead::before {
    box-shadow: 0 0 0 0.28rem rgba(184, 155, 94, 0.16);
}

[data-theme="dark"] .testimonials-title-orbit {
    border-color: rgba(216, 190, 134, 0.26);
}

[data-theme="dark"] .testimonials-title-line--accent {
    background: linear-gradient(180deg, #f2deb4 0%, #d8be86 52%, #b38844 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

[data-theme="dark"] .testimonials-intro-body {
    color: rgba(225, 231, 242, 0.86);
}

[data-theme="dark"] .testimonials-view-all-btn {
    background: transparent;
    color: #d8be86;
    border-color: rgba(184, 155, 94, 0.46);
}

[data-theme="light"] .testimonials-shell {
    /* border-radius: 20px; */
    background:
        radial-gradient(circle at 12% 16%, rgba(207, 176, 106, 0.12), transparent 34%),
        radial-gradient(circle at 84% 82%, rgba(166, 193, 236, 0.18), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 244, 238, 0.92));
    border: none;
    box-shadow: 0 16px 34px rgba(56, 42, 18, 0.08);
    padding: 1rem 1.4rem;
}

.testimonials-view-all-btn:hover,
.testimonials-view-all-btn:focus-visible {
    transform: translateY(-2px);
    background: rgba(184, 155, 94, 0.12);
    border-color: rgba(184, 155, 94, 0.68);
}

.testimonials-shell {
    position: relative;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.testimonials-track {
    display: flex;
    gap: 0;
    will-change: transform, opacity;
    transition: transform 0.35s ease, opacity 0.3s ease;
}

.testimonials-track.is-desktop-rotating {
    opacity: 0.38;
}

.testimonial-slide {
    flex: 0 0 100%;
    display: flex;
}

.testimonial-card,
.all-testimonial-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
    min-height: 310px;
    border: 1px solid rgba(184, 155, 94, 0.16);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(18, 15, 10, 0.96), rgba(18, 15, 10, 0.92));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
    padding: 1.55rem 1.55rem 1.35rem;
}

.testimonial-card {
    min-height: 332px;
    padding: 1.78rem 1.72rem 1.58rem;
}

[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .all-testimonial-item {
    background: linear-gradient(180deg, rgba(18, 15, 10, 0.98), rgba(18, 15, 10, 0.94));
}

.testimonial-card::before,
.all-testimonial-item::before {
    content: '';
    position: absolute;
    top: 1.05rem;
    left: 1.1rem;
    width: 32px;
    height: 2px;
    background: #cfb06a;
}

.tc-ornament {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    border: 1px solid rgba(207, 176, 106, 0.34);
    color: #cfb06a;
    background: rgba(207, 176, 106, 0.08);
    font-size: 0.82rem;
    line-height: 1;
    pointer-events: none;
}

.tc-quote,
.testimonial-text-clamp {
    margin: 1.15rem 0 1rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(184, 155, 94, 0.16);
    color: rgba(247, 242, 233, 0.95);
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 1.2vw, 1.28rem);
    font-style: italic;
    line-height: 1.85;
}

.tc-attribution {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.tc-avatar,
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(184, 155, 94, 0.45);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.tc-byline {
    display: grid;
    gap: 0.15rem;
}

.tc-name {
    color: #f8fbff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tc-event {
    color: rgba(198, 208, 226, 0.72);
    font-size: 0.8rem;
}

[data-theme="light"] .testimonial-card {
    border-color: rgba(111, 84, 34, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 242, 233, 0.95));
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .testimonial-card::before {
    background: #c9a45f;
}

[data-theme="light"] .tc-quote,
[data-theme="light"] .testimonial-text-clamp {
    border-bottom-color: rgba(111, 84, 34, 0.14);
    color: #2f3a4d;
}

[data-theme="light"] .tc-name {
    color: #172133;
}

[data-theme="light"] .tc-event {
    color: #667084;
}

[data-theme="light"] .tc-avatar,
[data-theme="light"] .testimonial-avatar {
    border-color: rgba(184, 155, 94, 0.36);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .testimonials-nav-btn {
    border-color: rgba(111, 84, 34, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 233, 0.92));
    color: #233044;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .testimonials-nav-btn:hover,
[data-theme="light"] .testimonials-nav-btn:focus-visible {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 232, 206, 0.96));
    border-color: rgba(184, 155, 94, 0.52);
    color: #172133;
}

[data-theme="light"] .testimonials-dot {
    background: rgba(111, 84, 34, 0.26);
}

[data-theme="light"] .testimonials-dot.active {
    background: #c9a45f;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
    width: 100%;
    padding: 0.55rem 0.65rem;
    /* border-radius: 999px; */
    /* background: linear-gradient(180deg, rgba(9, 17, 30, 0.44), rgba(9, 17, 30, 0.18)); */
    /* border: 1px solid rgba(184, 155, 94, 0.12); */
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
}

.testimonials-controls--intro {
    width: fit-content;
    max-width: 100%;
    margin-top: 0;
    padding: 0.42rem 0.46rem;
    gap: 0.52rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(9, 17, 30, 0.58), rgba(9, 17, 30, 0.28));
    box-shadow: 0 14px 28px rgba(2, 8, 23, 0.16);
}

.testimonials-nav-btn {
    border: 1px solid rgba(184, 155, 94, 0.16);
    background: linear-gradient(180deg, rgba(28, 46, 76, 0.96), rgba(16, 28, 49, 0.94));
    color: #f5f8ff;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 22px rgba(2, 8, 23, 0.22);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.testimonials-controls--intro .testimonials-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 14px;
}

.testimonials-controls--intro .testimonials-autoplay-btn {
    width: 54px;
}

.testimonials-nav-btn:hover,
.testimonials-nav-btn:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(44, 69, 107, 0.98), rgba(24, 42, 70, 0.96));
    border-color: rgba(184, 155, 94, 0.4);
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(2, 8, 23, 0.28);
    outline: none;
}

.testimonials-nav-btn i {
    font-size: 1rem;
    line-height: 1;
}

.testimonials-autoplay-btn {
    position: relative;
}

.testimonials-autoplay-btn::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 12px;
    border: 1px solid rgba(184, 155, 94, 0.14);
    pointer-events: none;
}

[data-theme="light"] .testimonials-controls {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 243, 235, 0.76));
    border-color: rgba(184, 155, 94, 0.16);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .testimonials-controls--intro {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 233, 0.9));
    border-color: rgba(184, 155, 94, 0.18);
}

.testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.85rem;
    padding-inline: 0.9rem;
    overflow: visible;
}

.testimonials-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(207, 216, 229, 0.22);
    transition: width 0.22s ease, background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonials-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 999px;
    border: 1px solid rgba(207, 176, 106, 0);
    opacity: 0;
}

.testimonials-dot.active {
    width: 12px;
    background: #cfb06a;
    transform: scale(1.15);
    box-shadow: 0 0 0 0.24rem rgba(207, 176, 106, 0.12);
    animation: testimonialDotPulse 1.8s ease-in-out infinite;
}

.testimonials-dot.active::after {
    border-color: rgba(207, 176, 106, 0.34);
    opacity: 1;
    animation: testimonialDotHalo 1.8s ease-in-out infinite;
}

@keyframes testimonialDotPulse {

    0%,
    100% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1.28);
    }
}

@keyframes testimonialDotHalo {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.92);
    }

    50% {
        opacity: 0.52;
        transform: scale(1.08);
    }
}

.testimonials-modal-dialog {
    max-width: min(920px, calc(100vw - 1.5rem));
}

.testimonials-modal-content {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 236, 0.96));
}

.testimonials-modal-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 236, 0.96));
    border-bottom: 1px solid rgba(111, 84, 34, 0.08);
}

.testimonials-modal-body {
    max-height: min(72vh, 720px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    padding-top: 0.5rem;
}

.testimonials-modal-body:focus {
    outline: none;
}

.testimonials-modal-meta {
    font-size: 0.88rem;
}

.all-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.all-testimonial-item {
    min-height: auto;
    gap: 0.7rem;
    border-radius: 18px;
    padding: 1rem 1rem 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 233, 0.94));
    border-color: rgba(111, 84, 34, 0.12);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.all-testimonial-item p {
    margin: 0;
    color: #334155;
    line-height: 1.7;
}

.all-testimonial-item h5 {
    color: #172133;
}

.all-testimonial-item .text-muted {
    color: #6b7280 !important;
}

[data-theme="dark"] .testimonials-modal-content {
    background: linear-gradient(180deg, rgba(18, 15, 10, 0.98), rgba(18, 15, 10, 0.95));
}

[data-theme="dark"] .testimonials-modal-header {
    background: linear-gradient(180deg, rgba(18, 15, 10, 0.98), rgba(18, 15, 10, 0.95));
    border-bottom-color: rgba(184, 155, 94, 0.18);
}

[data-theme="dark"] .all-testimonial-item {
    background: linear-gradient(180deg, rgba(28, 24, 18, 0.98), rgba(28, 24, 18, 0.94));
    border-color: rgba(184, 155, 94, 0.16);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

[data-theme="dark"] .all-testimonial-item p {
    color: rgba(243, 244, 246, 0.9);
}

[data-theme="dark"] .all-testimonial-item h5 {
    color: #f8fbff;
}

[data-theme="dark"] .all-testimonial-item .text-muted,
[data-theme="dark"] .testimonials-modal-meta {
    color: rgba(225, 231, 242, 0.72) !important;
}

@media (min-width: 768px) {
    .all-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .testimonials-shell {
        padding-top: 0.65rem;
    }

    .testimonials-track {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.6rem 1.6rem;
        transform: none !important;
    }

    .testimonial-slide {
        flex: initial;
        transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
    }

    .testimonial-slide:nth-child(odd) {
        transform: translateY(-0.45rem);
    }

    .testimonial-slide:nth-child(even) {
        transform: translateY(0.75rem);
    }

    .testimonial-slide.is-swapping,
    .testimonial-slide.is-entering {
        opacity: 0;
        filter: blur(2px);
    }

    .testimonial-slide.is-swapping:nth-child(odd),
    .testimonial-slide.is-entering:nth-child(odd) {
        transform: translateY(-0.4rem);
    }

    .testimonial-slide.is-swapping:nth-child(even),
    .testimonial-slide.is-entering:nth-child(even) {
        transform: translateY(0.4rem);
    }

    .testimonial-card {
        min-height: 292px;
    }
}

@media (max-width: 991.98px) {
    .testimonials-intro-title {
        justify-items: center;
    }

    .testimonials-intro-actions {
        justify-items: center;
    }

    .testimonials-track {
        display: flex;
    }

    .testimonial-slide {
        min-width: 100%;
    }

    .testimonials-shell {
        margin-top: 1rem;
    }

    .testimonials-controls,
    .testimonials-controls--intro {
        width: fit-content;
        margin-inline: auto;
    }
}

@media (max-width: 575.98px) {
    .testimonials-shell {
        border: none;
    }

    .testimonials-intro-actions {
        display: none;
    }

    .testimonials-title-line--lead {
        padding-left: 0.72rem;
        font-size: 0.96em;
    }

    .testimonials-title-line--lead::before {
        width: 0.44rem;
        height: 0.44rem;
    }

    .testimonials-title-orbit {
        width: calc(100% + 0.78rem);
        height: 118%;
        left: 0.06rem;
    }

    .testimonials-title-line--accent {
        font-size: 1.24em;
    }
}

.pricing-section {
    background:
        radial-gradient(circle at top center, rgba(207, 176, 106, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(251, 247, 240, 0.98), rgba(242, 236, 226, 0.98));
    border-radius: 30px;
    color: #172133;
}

.pricing-section .section-title {
    color: #172133;
}

.pricing-section .small-caps {
    color: #9a7a3d;
}

.pricing-section .text-muted {
    color: #5f6b7c !important;
}

.pricing-grid {
    overflow: hidden;
    border: 1px solid rgba(111, 84, 34, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

.pricing-row {
    position: relative;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid rgba(111, 84, 34, 0.1);
}

.header-row {
    background: rgba(244, 238, 228, 0.96);
    color: #6f5422;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.header-row .col-label:last-child {
    text-align: center;
}

.item-row {
    background: rgba(255, 255, 255, 0.72);
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.item-row:nth-child(odd) {
    background: rgba(248, 243, 235, 0.82);
}

.item-row:last-child {
    border-bottom: 0;
}

.item-row:hover,
.item-row:focus-within {
    transform: translateY(-2px);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(245, 238, 227, 0.98));
    box-shadow: inset 0 0 0 1px rgba(207, 176, 106, 0.12);
}

.item-row.featured {
    padding-left: 2.35rem;
    background: linear-gradient(90deg, rgba(207, 176, 106, 0.12), rgba(248, 243, 235, 0.98) 16%, rgba(248, 243, 235, 0.98) 100%);
}

.pkg-featured-rail {
    position: absolute;
    inset: 0 auto 0 0;
    width: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: rgba(207, 176, 106, 0.18);
    color: #8f6b2c;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.pkg-name h3 {
    margin-bottom: 0.25rem;
    color: #172133;
}

.pkg-name .text-muted {
    color: #667084 !important;
}

.pkg-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    color: #6b7280;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pkg-stat {
    display: grid;
    gap: 0.15rem;
}

.data-value,
.price-value {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    line-height: 1;
    color: #172133;
}

.data-label {
    color: #6b7280;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.pkg-availability {
    display: flex;
    justify-content: center;
    justify-self: center;
    width: 100%;
}

.pkg-check-btn {
    min-width: 126px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(111, 84, 34, 0.22);
    color: #172133;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pkg-check-btn:hover,
.pkg-check-btn:focus-visible,
.item-row:hover .pkg-check-btn,
.item-row:focus-within .pkg-check-btn {
    border-color: rgba(207, 176, 106, 0.68);
    background: rgba(207, 176, 106, 0.18);
    color: #172133;
    transform: translateY(-1px);
}

.pkg-check-btn.featured {
    background: linear-gradient(135deg, #cfb06a, #b89447);
    border-color: rgba(207, 176, 106, 0.88);
    color: #08152a;
    box-shadow: 0 12px 24px rgba(207, 176, 106, 0.2);
}

[data-theme="dark"] .pricing-section {
    background:
        radial-gradient(circle at top center, rgba(184, 155, 94, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(4, 16, 36, 0.98), rgba(6, 20, 42, 0.98));
    color: #f8fbff;
}

[data-theme="dark"] .pricing-section .section-title {
    color: #f8fbff;
}

[data-theme="dark"] .pricing-section .small-caps {
    color: #d8be86;
}

[data-theme="dark"] .pricing-section .text-muted {
    color: rgba(214, 222, 236, 0.76) !important;
}

[data-theme="dark"] .pricing-grid {
    border-color: rgba(132, 153, 191, 0.18);
    background: rgba(6, 20, 42, 0.72);
    box-shadow: 0 22px 48px rgba(2, 8, 23, 0.34);
}

[data-theme="dark"] .pricing-row {
    border-bottom-color: rgba(132, 153, 191, 0.12);
}

[data-theme="dark"] .header-row {
    background: rgba(12, 28, 58, 0.96);
    color: rgba(234, 240, 249, 0.78);
}

[data-theme="dark"] .item-row {
    background: rgba(24, 39, 68, 0.9);
}

[data-theme="dark"] .item-row:nth-child(odd) {
    background: rgba(10, 24, 50, 0.96);
}

[data-theme="dark"] .item-row:hover,
[data-theme="dark"] .item-row:focus-within {
    background: linear-gradient(90deg, rgba(31, 49, 82, 0.98), rgba(15, 29, 58, 0.98));
}

[data-theme="dark"] .item-row.featured {
    background: linear-gradient(90deg, rgba(184, 155, 94, 0.1), rgba(10, 24, 50, 0.98) 16%, rgba(10, 24, 50, 0.98) 100%);
}

[data-theme="dark"] .pkg-featured-rail {
    background: rgba(207, 176, 106, 0.14);
    color: #d8be86;
}

[data-theme="dark"] .pkg-name h3,
[data-theme="dark"] .data-value,
[data-theme="dark"] .price-value {
    color: #f8fbff;
}

[data-theme="dark"] .pkg-name .text-muted {
    color: rgba(214, 222, 236, 0.76) !important;
}

[data-theme="dark"] .pkg-features {
    color: rgba(214, 222, 236, 0.62);
}

[data-theme="dark"] .data-label {
    color: rgba(214, 222, 236, 0.62);
}

[data-theme="dark"] .pkg-check-btn {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(132, 153, 191, 0.22);
    color: #f8fbff;
}

[data-theme="dark"] .pkg-check-btn:hover,
[data-theme="dark"] .pkg-check-btn:focus-visible,
[data-theme="dark"] .item-row:hover .pkg-check-btn,
[data-theme="dark"] .item-row:focus-within .pkg-check-btn {
    background: rgba(207, 176, 106, 0.14);
    color: #fff;
}

.social-section {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 2.75rem);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(207, 176, 106, 0.08), transparent 22%),
        linear-gradient(180deg, #020406 0%, #05070b 100%);
    color: #f8fbff;
}

.social-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-eyebrow {
    color: #d8be86;
    margin-bottom: 0.5rem;
}

.social-title {
    margin: 0;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    line-height: 0.96;
    color: #f8fbff;
}

.social-section-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.3rem;
}

.social-circle-link {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-circle-link:hover,
.social-circle-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(207, 176, 106, 0.48);
    background: rgba(207, 176, 106, 0.1);
    color: #fff;
}

.social-moments-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.social-moment-card {
    position: relative;
    display: block;
    min-height: 335px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.social-moment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.social-moment-overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: grid;
    gap: 0.4rem;
    padding: 1rem 1rem 0.9rem;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.78));
}

.social-moment-chip {
    display: inline-flex;
    width: fit-content;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(207, 176, 106, 0.18);
    color: #f6dfae;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.social-moment-caption {
    color: #f8fbff;
    font-size: 0.92rem;
    line-height: 1.45;
}

.social-moment-card:hover img,
.social-moment-card:focus-visible img {
    transform: scale(1.04);
    filter: saturate(1.06);
}

html[data-theme="light"] .social-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(207, 176, 106, 0.18), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(176, 206, 255, 0.2), transparent 36%),
        linear-gradient(180deg, #f7f6f2 0%, #f2f1ee 100%);
    border: 1px solid rgba(199, 179, 137, 0.26);
    box-shadow: 0 24px 46px rgba(76, 61, 31, 0.08);
    color: #1f2733;
}

html[data-theme="light"] .social-section::before,
html[data-theme="light"] .social-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
}

html[data-theme="light"] .social-section::before {
    width: min(42vw, 420px);
    height: min(42vw, 420px);
    left: -10%;
    top: -18%;
    background: radial-gradient(circle, rgba(207, 176, 106, 0.2) 0%, rgba(207, 176, 106, 0) 68%);
}

html[data-theme="light"] .social-section::after {
    width: min(38vw, 360px);
    height: min(38vw, 360px);
    right: -10%;
    bottom: -22%;
    background: radial-gradient(circle, rgba(119, 162, 236, 0.18) 0%, rgba(119, 162, 236, 0) 72%);
}

html[data-theme="light"] .social-section-head,
html[data-theme="light"] .social-moments-grid {
    position: relative;
    z-index: 1;
}

html[data-theme="light"] .social-eyebrow {
    color: #b6924f;
}

html[data-theme="light"] .social-title {
    color: #1f2733;
}

html[data-theme="light"] .social-circle-link {
    border-color: rgba(180, 149, 86, 0.34);
    background: rgba(255, 255, 255, 0.65);
    color: #4d3d1e;
    box-shadow: 0 10px 22px rgba(74, 63, 42, 0.08);
}

html[data-theme="light"] .social-circle-link:hover,
html[data-theme="light"] .social-circle-link:focus-visible {
    border-color: rgba(207, 176, 106, 0.62);
    background: rgba(207, 176, 106, 0.22);
    color: #2b230f;
}

html[data-theme="light"] .social-moment-card {
    border: 1px solid rgba(199, 179, 137, 0.24);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(249, 247, 242, 0.95));
    box-shadow: 0 20px 34px rgba(60, 48, 23, 0.1);
}

html[data-theme="light"] .social-moment-overlay {
    background: linear-gradient(180deg, transparent, rgba(12, 18, 30, 0.64));
}

html[data-theme="light"] .social-moment-chip {
    background: rgba(207, 176, 106, 0.28);
    color: #fff5dc;
}

@media (max-width: 991.98px) {
    .social-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-moments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .social-moments-grid {
        grid-template-columns: 1fr;
    }

    .social-circle-link {
        width: 46px;
        height: 46px;
    }
}

.contact-section {
    padding-top: 3rem;
}

.contact-section .card {
    border-radius: 28px;
    overflow: hidden;
    background: #05070b;
    box-shadow: 0 26px 56px rgba(2, 8, 23, 0.14);
}

.contact-info-panel {
    background:
        radial-gradient(circle at top left, rgba(207, 176, 106, 0.12), transparent 30%),
        linear-gradient(180deg, #05070b 0%, #0b1018 100%) !important;
    padding: 3rem 2.25rem !important;
}

.contact-eyebrow {
    margin-bottom: 0.75rem;
}

.contact-title {
    font-size: clamp(2.35rem, 4vw, 3.5rem);
    line-height: 0.96;
    margin-bottom: 1rem;
}

.contact-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.contact-info {
    display: grid;
    gap: 1.15rem;
    margin-top: 2rem;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.85rem;
    align-items: start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(207, 176, 106, 0.34);
    background: rgba(207, 176, 106, 0.05);
    color: #d8be86;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-info-label {
    margin: 0 0 0.2rem;
    color: #f8fbff;
    font-family: var(--font-serif);
    font-size: 1.15rem;
}

.contact-info-value {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
    word-break: break-word;
}

.contact-form-col {
    background: #0b0d12 !important;
    padding: 2rem 2rem 2.25rem !important;
}

.contact-form-panel {
    display: grid;
    gap: 0.95rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
}

.contact-field {
    display: grid;
    gap: 0.35rem;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-section .form-label {
    color: rgba(233, 240, 249, 0.74);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.15rem;
}

.contact-section .form-control,
.contact-section .form-select,
.contact-section textarea.form-control {
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #f8fbff;
    padding: 0.8rem 0.95rem !important;
    box-shadow: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-section .form-select option {
    background: #0b0d12;
    color: #f8fbff;
}

.contact-section .form-select option[value=""] {
    color: rgba(200, 208, 220, 0.82);
}

.contact-section .strict-date-picker {
    color-scheme: dark;
}

.contact-section .strict-date-picker::-webkit-calendar-picker-indicator {
    filter: invert(91%) sepia(13%) saturate(545%) hue-rotate(352deg) brightness(89%) contrast(90%);
    opacity: 0.95;
    cursor: pointer;
}

.contact-section .strict-date-picker::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.contact-section .form-control::placeholder,
.contact-section textarea.form-control::placeholder {
    color: rgba(200, 208, 220, 0.48);
}

.contact-section .form-control:focus,
.contact-section .form-select:focus,
.contact-section textarea.form-control:focus {
    border-color: rgba(207, 176, 106, 0.78);
    box-shadow: 0 0 0 3px rgba(207, 176, 106, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.contact-section .form-control.is-valid,
.contact-section .form-select.is-valid,
.contact-section textarea.form-control.is-valid {
    border-color: rgba(74, 195, 120, 0.82);
    box-shadow: 0 0 0 2px rgba(74, 195, 120, 0.1);
    background-image: none;
}

.contact-section .form-control.is-invalid,
.contact-section .form-select.is-invalid,
.contact-section textarea.form-control.is-invalid {
    border-color: rgba(239, 68, 68, 0.9);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.12);
    background-image: none;
}

.contact-section textarea.form-control {
    min-height: 120px;
    border-radius: 14px !important;
    resize: vertical;
}

.contact-field-error {
    min-height: 0.8rem;
    margin: 0;
    color: #ff5b5b;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.guest-stepper {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.guest-step-btn {
    border: 0;
    background: rgba(255, 255, 255, 0.03);
    color: #d8be86;
    font-size: 1.15rem;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.guest-step-btn:hover,
.guest-step-btn:focus-visible {
    background: rgba(207, 176, 106, 0.12);
    color: #fff;
    outline: none;
}

.guest-count-input {
    border: 0 !important;
    border-radius: 0 !important;
    text-align: center;
    background: transparent !important;
    box-shadow: none !important;
}

.guest-stepper:has(.is-valid) {
    border-color: rgba(74, 195, 120, 0.82);
    box-shadow: 0 0 0 2px rgba(74, 195, 120, 0.1);
}

.guest-stepper:has(.is-invalid) {
    border-color: rgba(239, 68, 68, 0.9);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.12);
}

.guest-count-input.is-invalid {
    background: rgba(127, 29, 29, 0.18) !important;
}

.guest-count-input.is-valid {
    background: transparent !important;
}

.contact-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.2rem;
}

.contact-radio-group {
    transition: background-color 0.22s ease;
}

.contact-radio-group.is-valid {
    border-radius: 10px;
    padding: 0.35rem 0.55rem;
    outline: 1px solid rgba(74, 195, 120, 0.5);
    background: rgba(22, 101, 52, 0.1);
}

.contact-radio-group.is-invalid {
    border-radius: 10px;
    padding: 0.35rem 0.55rem;
    outline: 1px solid rgba(239, 68, 68, 0.55);
    background: rgba(127, 29, 29, 0.12);
}

.contact-radio-option {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(233, 240, 249, 0.86);
    font-size: 0.88rem;
}

.contact-radio-option input {
    appearance: none;
    width: 1rem;
    height: 1rem;
    margin: 0;
    border-radius: 50%;
    border: 2px solid rgba(233, 240, 249, 0.72);
    background: rgba(2, 6, 23, 0.75);
    box-shadow: 0 0 0 2px rgba(2, 6, 23, 0.5);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-radio-option input:checked {
    border-color: #d8be86;
    background: radial-gradient(circle, #d8be86 0 45%, transparent 50% 100%);
    box-shadow: 0 0 0 2px rgba(207, 176, 106, 0.22);
}

.contact-radio-option input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(207, 176, 106, 0.32);
}

.contact-radio-option:hover input {
    border-color: rgba(216, 190, 134, 0.92);
}

.contact-consent-wrap {
    gap: 0.15rem;
}

.contact-consent {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 0.7rem;
    align-items: start;
    color: rgba(233, 240, 249, 0.66);
    font-size: 0.66rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.contact-consent input {
    appearance: none;
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    border-radius: 0.22rem;
    border: 2px solid rgba(233, 240, 249, 0.74);
    background: rgba(2, 6, 23, 0.72);
    box-shadow: 0 0 0 2px rgba(2, 6, 23, 0.48);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-consent input:checked {
    border-color: #d8be86;
    background-color: #d8be86;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7.2l2.7 2.8 6.2-6' fill='none' stroke='%2305070b' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.72rem 0.72rem;
    box-shadow: 0 0 0 2px rgba(207, 176, 106, 0.2);
}

.contact-consent input:hover {
    border-color: rgba(216, 190, 134, 0.9);
}

.contact-consent input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(207, 176, 106, 0.34);
}

.contact-consent input.is-valid {
    outline: 2px solid rgba(74, 195, 120, 0.7);
    outline-offset: 2px;
    border-radius: 3px;
}

.contact-consent input.is-invalid {
    outline: 1px solid rgba(239, 68, 68, 0.7);
    outline-offset: 2px;
}

.contact-consent a {
    color: #d8be86;
    text-decoration: none;
}

.contact-consent a:hover,
.contact-consent a:focus-visible {
    text-decoration: underline;
}

.contact-legal-links,
.form-legal-note {
    color: rgba(233, 240, 249, 0.66);
    font-size: 0.72rem;
    line-height: 1.6;
}

.contact-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.45rem;
}

.contact-legal-links a,
.form-legal-note a {
    color: #d8be86;
    text-decoration: none;
}

.contact-legal-links a:hover,
.contact-legal-links a:focus-visible,
.form-legal-note a:hover,
.form-legal-note a:focus-visible {
    text-decoration: underline;
}

[data-theme="light"] .contact-section .card {
    background: #fffaf2;
    border: 1px solid rgba(184, 155, 94, 0.2);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .contact-info-panel {
    background:
        radial-gradient(circle at top left, rgba(184, 155, 94, 0.16), transparent 34%),
        linear-gradient(180deg, #fff8ec 0%, #fdf4e3 100%) !important;
    color: #172133 !important;
}

[data-theme="light"] .contact-copy {
    color: rgba(30, 41, 59, 0.82);
}

[data-theme="light"] .contact-info-icon {
    border-color: rgba(184, 155, 94, 0.4);
    background: rgba(184, 155, 94, 0.12);
    color: #8e6f35;
}

[data-theme="light"] .contact-info-label {
    color: #172133;
}

[data-theme="light"] .contact-info-value {
    color: rgba(30, 41, 59, 0.74);
}

[data-theme="light"] .contact-form-col {
    background: #fffdf7 !important;
}

[data-theme="light"] .contact-section .form-label {
    color: rgba(30, 41, 59, 0.72);
}

[data-theme="light"] .contact-section .form-control,
[data-theme="light"] .contact-section .form-select,
[data-theme="light"] .contact-section textarea.form-control {
    border: 1px solid rgba(184, 155, 94, 0.34);
    background: #ffffff;
    color: #0f172a;
}

[data-theme="light"] .contact-section .form-control.is-valid,
[data-theme="light"] .contact-section .form-select.is-valid,
[data-theme="light"] .contact-section textarea.form-control.is-valid {
    border-color: rgba(22, 163, 74, 0.78);
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.1);
}

[data-theme="light"] .contact-section .form-control.is-invalid,
[data-theme="light"] .contact-section .form-select.is-invalid,
[data-theme="light"] .contact-section textarea.form-control.is-invalid {
    border-color: rgba(220, 38, 38, 0.82);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

[data-theme="light"] .contact-section .form-select option {
    background: #ffffff;
    color: #0f172a;
}

[data-theme="light"] .contact-section .form-select option[value=""] {
    color: rgba(71, 85, 105, 0.82);
}

[data-theme="light"] .contact-section .strict-date-picker {
    color-scheme: light;
}

[data-theme="light"] .contact-section .strict-date-picker::-webkit-calendar-picker-indicator {
    filter: none;
    opacity: 0.78;
}

[data-theme="light"] .contact-section .form-control::placeholder,
[data-theme="light"] .contact-section textarea.form-control::placeholder {
    color: rgba(100, 116, 139, 0.72);
}

[data-theme="light"] .contact-section .form-control:focus,
[data-theme="light"] .contact-section .form-select:focus,
[data-theme="light"] .contact-section textarea.form-control:focus {
    border-color: rgba(184, 155, 94, 0.86);
    box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.16);
    background: #fffdf9;
    color: #0f172a;
}

[data-theme="light"] .guest-stepper {
    border-color: rgba(184, 155, 94, 0.28);
    background: #ffffff;
}

[data-theme="light"] .guest-stepper:has(.is-valid) {
    border-color: rgba(22, 163, 74, 0.78);
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.1);
}

[data-theme="light"] .guest-stepper:has(.is-invalid) {
    border-color: rgba(220, 38, 38, 0.82);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

[data-theme="light"] .guest-step-btn {
    background: #f9f2e3;
    color: #8e6f35;
}

[data-theme="light"] .guest-step-btn:hover,
[data-theme="light"] .guest-step-btn:focus-visible {
    background: #f1e3c5;
    color: #6f5422;
}

[data-theme="light"] .contact-radio-option {
    color: rgba(30, 41, 59, 0.84);
}

[data-theme="light"] .contact-radio-option input {
    border-color: rgba(30, 41, 59, 0.54);
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .contact-radio-option input:checked {
    border-color: #8e6f35;
    background: radial-gradient(circle, #8e6f35 0 45%, transparent 50% 100%);
    box-shadow: 0 0 0 2px rgba(184, 155, 94, 0.2);
}

[data-theme="light"] .contact-radio-option input:focus-visible {
    box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.3);
}

[data-theme="light"] .contact-radio-group.is-valid {
    outline-color: rgba(22, 163, 74, 0.5);
    background: rgba(22, 101, 52, 0.06);
}

[data-theme="light"] .contact-radio-group.is-invalid {
    outline-color: rgba(220, 38, 38, 0.5);
    background: rgba(254, 202, 202, 0.22);
}

[data-theme="light"] .contact-consent {
    color: rgba(30, 41, 59, 0.76);
}

[data-theme="light"] .contact-consent input {
    border-color: rgba(30, 41, 59, 0.58);
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.92);
}

[data-theme="light"] .contact-consent input:checked {
    border-color: #8e6f35;
    background-color: #8e6f35;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7.2l2.7 2.8 6.2-6' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    box-shadow: 0 0 0 2px rgba(184, 155, 94, 0.22);
}

[data-theme="light"] .contact-consent input:focus-visible {
    box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.32);
}

[data-theme="light"] .contact-consent a,
[data-theme="light"] .contact-legal-links a,
[data-theme="light"] .form-legal-note a {
    color: #8e6f35;
}

[data-theme="light"] .contact-field-error {
    color: #d43f3f;
}

[data-theme="light"] .contact-legal-links,
[data-theme="light"] .form-legal-note {
    color: rgba(15, 23, 42, 0.72);
}

/* ─── SUBMIT WRAPPER + TRI-STATE BUTTON ─── */

.contact-submit-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.4rem;
}

.contact-form-guide-anchor {
    position: relative;
    flex-shrink: 0;
}

.contact-form-guide-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(184, 155, 94, 0.3);
    border-radius: 50%;
    background: rgba(184, 155, 94, 0.08);
    color: rgba(184, 155, 94, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.contact-form-guide-btn:hover,
.contact-form-guide-btn:focus-visible {
    background: rgba(184, 155, 94, 0.18);
    border-color: rgba(184, 155, 94, 0.6);
    color: #d8be86;
    transform: scale(1.06);
}

.contact-form-guide-btn[aria-expanded="true"] {
    background: rgba(184, 155, 94, 0.18);
    border-color: rgba(184, 155, 94, 0.58);
    color: #d8be86;
}

.contact-form-guide-btn svg {
    width: 18px;
    height: 18px;
}

.contact-form-guide-panel {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    z-index: 30;
    min-width: 240px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(184, 155, 94, 0.22);
    border-radius: 14px;
    background: rgba(8, 18, 34, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
    animation: guideSlideIn 0.18s ease;
}

@keyframes guideSlideIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-guide-panel[hidden] {
    display: none !important;
}

.contact-form-guide-heading {
    margin: 0 0 0.6rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(184, 155, 94, 0.78);
}

.contact-form-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.38rem;
}

.contact-form-guide-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(220, 228, 242, 0.82);
    line-height: 1.4;
}

.contact-form-guide-item::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(184, 155, 94, 0.42);
    background: transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-form-guide-item.is-done {
    color: rgba(220, 228, 242, 0.52);
    text-decoration: line-through;
    text-decoration-color: rgba(184, 155, 94, 0.44);
}

.contact-form-guide-item.is-done::before {
    border-color: #7fcb8a;
    background: #7fcb8a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-form-guide-item.is-all-done {
    text-decoration: none;
    color: #7fcb8a;
    font-weight: 700;
}

.contact-form-guide-item.is-all-done::before {
    border-color: #7fcb8a;
    background: #7fcb8a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Submit button tri-state */
.contact-section .btn.btn-gold {
    flex: 1;
    min-width: 0;
    margin-top: 0;
}

.contact-section .btn.btn-gold[data-submit-state="incomplete"] {
    opacity: 0.52;
    filter: saturate(0.55);
    cursor: pointer;
}

.contact-section .btn.btn-gold[data-submit-state="incomplete"]:hover {
    opacity: 0.68;
    filter: saturate(0.72);
    transform: translateY(-1px);
}

.contact-section .btn.btn-gold[data-submit-state="ready"] {
    opacity: 1;
    filter: none;
}

.contact-section .btn.btn-gold[data-submit-state="submitting"] {
    opacity: 0.58;
    cursor: not-allowed;
    filter: saturate(0.72);
    transform: none;
}

/* Light theme overrides for guide panel */
[data-theme="light"] .contact-form-guide-btn {
    border-color: rgba(111, 84, 34, 0.3);
    background: rgba(184, 155, 94, 0.08);
    color: #8e6f35;
}

[data-theme="light"] .contact-form-guide-btn:hover,
[data-theme="light"] .contact-form-guide-btn:focus-visible,
[data-theme="light"] .contact-form-guide-btn[aria-expanded="true"] {
    background: rgba(184, 155, 94, 0.16);
    border-color: rgba(111, 84, 34, 0.52);
    color: #6f5422;
}

[data-theme="light"] .contact-form-guide-panel {
    background: rgba(255, 252, 245, 0.98);
    border-color: rgba(184, 155, 94, 0.26);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

[data-theme="light"] .contact-form-guide-heading {
    color: #8e6f35;
}

[data-theme="light"] .contact-form-guide-item {
    color: rgba(30, 41, 59, 0.82);
}

[data-theme="light"] .contact-form-guide-item.is-done {
    color: rgba(30, 41, 59, 0.44);
}

[data-theme="light"] .contact-form-guide-item::before {
    border-color: rgba(111, 84, 34, 0.34);
}

.contact-section #formSuccess .alert {
    border-radius: 12px;
}

.contact-section #formSuccess {
    isolation: isolate;
}

.contact-section #formSuccess:not(.d-none) {
    display: block !important;
}

.contact-success-card {
    display: block;
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(74, 195, 120, 0.45);
    background:
        radial-gradient(circle at 20% 15%, rgba(74, 195, 120, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(15, 35, 24, 0.95) 0%, rgba(9, 20, 15, 0.95) 100%);
    color: #ecfff3;
    padding: 1.2rem 1rem 1.1rem;
    box-shadow: 0 14px 28px rgba(3, 12, 7, 0.35);
    animation: contactSuccessCardIn 0.52s cubic-bezier(0.2, 0.95, 0.2, 1) both;
}

.contact-success-check {
    width: 62px;
    height: 62px;
    margin: 0 auto 0.85rem;
    border-radius: 999px;
    background: rgba(74, 195, 120, 0.14);
    display: grid;
    place-items: center;
    animation: contactSuccessPop 0.45s ease-out 0.14s both;
}

.contact-success-check svg {
    width: 52px;
    height: 52px;
}

.contact-success-circle,
.contact-success-tick {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-success-circle {
    stroke: rgba(74, 195, 120, 0.82);
    stroke-width: 2.8;
    stroke-dasharray: 145;
    stroke-dashoffset: 145;
    animation: contactSuccessStroke 0.62s ease-out 0.12s forwards;
}

.contact-success-tick {
    stroke: #6be28f;
    stroke-width: 3.8;
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
    animation: contactSuccessStroke 0.36s ease-out 0.48s forwards;
}

.contact-success-title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.3vw, 1.4rem);
    color: #f2fff7;
}

.contact-success-message {
    margin: 0;
    color: rgba(233, 255, 241, 0.86);
    line-height: 1.6;
}

@keyframes contactSuccessStroke {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes contactSuccessPop {
    0% {
        opacity: 0;
        transform: scale(0.68);
    }

    65% {
        opacity: 1;
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes contactSuccessCardIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-success-card,
    .contact-success-check,
    .contact-success-circle,
    .contact-success-tick {
        animation: none !important;
        stroke-dashoffset: 0;
    }
}

[data-theme="light"] .contact-success-card {
    border-color: rgba(22, 163, 74, 0.3);
    background:
        radial-gradient(circle at 20% 15%, rgba(22, 163, 74, 0.18), transparent 46%),
        linear-gradient(180deg, #f4fff7 0%, #ebf9f0 100%);
    color: #11412a;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .contact-success-check {
    background: rgba(22, 163, 74, 0.12);
}

[data-theme="light"] .contact-success-circle {
    stroke: rgba(22, 163, 74, 0.84);
}

[data-theme="light"] .contact-success-tick {
    stroke: #16a34a;
}

[data-theme="light"] .contact-success-title {
    color: #0f5132;
}

[data-theme="light"] .contact-success-message {
    color: rgba(22, 65, 40, 0.82);
}

.customize-event-shell {
    border-radius: 24px;
}

.customize-builder {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1rem;
}

.customize-builder-main,
.customize-summary {
    border: 1px solid rgba(184, 155, 94, 0.18);
    border-radius: 20px;
    background: rgba(249, 247, 242, 0.75);
}

[data-theme="dark"] .customize-builder-main,
[data-theme="dark"] .customize-summary {
    background: rgba(15, 23, 42, 0.82);
}

.customize-builder-main {
    padding: 1rem;
}

.customize-summary {
    padding: 1rem;
    align-self: start;
    position: sticky;
    top: 1rem;
}

.customize-summary-label {
    color: var(--text-secondary);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.customize-package-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(184, 155, 94, 0.12);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
}

.customize-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.customize-summary-item {
    display: grid;
    gap: 0.2rem;
    padding: 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

[data-theme="dark"] .customize-summary-item {
    background: rgba(2, 6, 23, 0.35);
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        background-position: 200% 50%;
        opacity: 0;
    }
}

.customize-summary-item {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(184, 155, 94, 0.12);
    position: relative;
}

.customize-summary-item.has-value {
    border-color: rgba(184, 155, 94, 0.45);
    background-color: rgba(255, 255, 255, 0.85);
    /* Slightly more solid */
    box-shadow: 0 4px 12px rgba(184, 155, 94, 0.08);
}

[data-theme="dark"] .customize-summary-item.has-value {
    background-color: rgba(15, 23, 42, 0.95);
    border-color: rgba(184, 155, 94, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.customize-summary-item.is-updated::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 2px;
    /* The border thickness */
    background: linear-gradient(90deg, #10b981, #0ea5e9, #3b82f6, #10b981);
    background-size: 200% auto;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderFlow 1.5s cubic-bezier(0.3, 0, 0.7, 1) forwards;
    z-index: 2;
}

.customize-summary-item.is-updated {
    transform: scale(1.02);
    z-index: 5;
}

.customize-summary-item.full {
    grid-column: 1 / -1;
}

.wizard-stepper {
    display: flex;
    gap: 4px;
    margin-bottom: 2rem;
    background: transparent;
}

.wizard-step {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem 0.85rem 1.75rem;
    background: rgba(184, 155, 94, 0.08);
    /* Light gold tint */
    color: var(--text-secondary);
    clip-path: polygon(calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 0% 100%, 15px 50%, 0% 0%);
    transition: all 0.3s ease;
}

.wizard-step:first-child {
    padding-left: 1.25rem;
    clip-path: polygon(calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 0% 100%, 0% 0%);
    border-radius: 8px 0 0 8px;
}

.wizard-step:last-child {
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 15px 50%, 0% 0%);
    border-radius: 0 8px 8px 0;
}

.wizard-step.is-active,
.wizard-step.is-complete {
    background: var(--gold);
    color: #fff;
}

.wizard-step.is-active {
    background: var(--gold-dark);
}

[data-theme="dark"] .wizard-step {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .wizard-step.is-active,
[data-theme="dark"] .wizard-step.is-complete {
    background: var(--gold);
    color: #fff;
}

.wizard-step-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
}

.wizard-step-label {
    display: block;
    margin-top: 0.2rem;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wizard-progress-bar {
    width: min(180px, 48vw);
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    overflow: hidden;
}

.wizard-progress-bar span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(120deg, var(--gold-dark), var(--gold));
}

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

.wizard-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.wizard-option-grid.two-up,
.wizard-option-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wizard-option-card,
.wizard-check-card {
    display: grid;
    gap: 0.3rem;
    padding: 0.9rem;
    border: 1px solid rgba(184, 155, 94, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

[data-theme="dark"] .wizard-option-card,
[data-theme="dark"] .wizard-check-card {
    background: rgba(2, 6, 23, 0.32);
}

.wizard-option-card:hover,
.wizard-check-card:hover {
    border-color: rgba(184, 155, 94, 0.58);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.wizard-option-card.is-selected,
.wizard-check-card.is-selected {
    border-color: var(--gold);
    border-width: 2px;
    background: rgba(184, 155, 94, 0.04);
    box-shadow: 0 4px 15px rgba(184, 155, 94, 0.15);
    transform: translateY(-2px);
    padding: calc(0.9rem - 1px);
}

[data-theme="dark"] .wizard-option-card.is-selected,
[data-theme="dark"] .wizard-check-card.is-selected {
    background: rgba(184, 155, 94, 0.12);
}

.wizard-option-title {
    font-weight: 700;
}

.wizard-option-copy {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.customize-form-footer,
.customize-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.customize-success {
    padding-top: 0.5rem;
}

.rfp-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
}

.wizard-error {
    font-weight: 600;
}

.venue-info {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    background: var(--bg-primary);
}

.venue-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 155, 94, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 155, 94, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

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

    .legacy-card-featured {
        margin-top: 0;
        min-height: 250px;
        transform: none;
    }

    .customize-builder {
        grid-template-columns: 1fr;
    }

    .customize-summary {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .legacy-stats-section {
        padding: 2.75rem 1rem 3rem;
        border-radius: 24px;
    }

    .contact-info-panel,
    .contact-form-col {
        padding: 1.5rem !important;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .legacy-grid,
    .wizard-option-grid,
    .wizard-option-grid.two-up,
    .wizard-option-grid.compact,
    .customize-summary-grid {
        grid-template-columns: 1fr;
    }

    .legacy-card,
    .legacy-card-featured {
        min-height: auto;
        margin-top: 0;
        padding: 1.5rem 1rem;
    }

    .legacy-arc-ring {
        width: 76px;
        height: 76px;
        top: 18px;
        right: 18px;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem;
    }

    .item-row.featured {
        padding-left: 1rem;
        border-left: none;
        border-top: 4px solid var(--gold);
    }

    .pkg-featured-rail {
        inset: 0 auto auto 0;
        width: auto;
        height: 1.15rem;
        padding: 0 0.55rem;
        writing-mode: initial;
        transform: none;
        letter-spacing: 0.12em;
    }

    .pkg-availability {
        justify-content: start;
    }

    .hero-title {
        font-size: 15vw;
    }

    .testimonials-shell {
        padding: 0.85rem;
    }

    .customize-builder-main .wizard-meta {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .wizard-stepper {
        flex-wrap: wrap;
        gap: 1.25rem;
    }
}

/* Custom Close Button */
.customize-close-circle {
    background-color: rgba(184, 155, 94, 0.12);
    border-radius: 50%;
    /* width: 24px;
    height: 24px; */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 8px;
    background-position: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    /* margin: 0 !important; */
}

.customize-close-circle:hover {
    background-color: rgba(184, 155, 94, 0.25);
    opacity: 1;
}

[data-theme="dark"] .customize-close-circle {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Enhancements: Sticky Stepper & Summary Drawer */
/* Desktop: Full 2-column layout */
.customize-builder {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.5rem;
}

/* ══════════════ BREAKPOINTS ══════════════ */

/* Large Tablets & Small Laptops (992px - 1200px) */
@media (max-width: 1199.98px) {
    .customize-builder {
        gap: 1rem;
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .wizard-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Medium Tablets & Below (< 1024px) */
/* We turn the sidebar into a drawer here to focus on the form */
@media (max-width: 1023.98px) {
    .customize-builder {
        grid-template-columns: 1fr;
    }

    .wizard-stepper {
        margin-bottom: 2rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .wizard-step {
        flex: 1 1 calc(33.33% - 1rem);
        min-width: 140px;
        clip-path: none !important;
        border-radius: 12px !important;
        padding: 0.75rem 1rem !important;
        border: 1px solid rgba(184, 155, 94, 0.15);
    }

    .customize-builder-main .wizard-meta {
        position: sticky;
        top: -1px;
        z-index: 100;
        background: var(--bg-primary);
        padding: 1rem;
        margin: 0 -1rem 1.5rem;
        box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(184, 155, 94, 0.1);
    }

    [data-theme="dark"] .customize-builder-main .wizard-meta {
        background: #0a1628;
    }

    .customize-summary {
        position: fixed !important;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
        height: auto;
        max-height: 80vh;
        z-index: 1060;
        background: var(--bg-primary);
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
        box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.2);
        transform: translateY(120%) !important;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        padding: 2.25rem;
    }

    .customize-summary.is-open {
        transform: translateY(0) !important;
    }

    .customize-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Tablets & Large Phones (< 768px) */
@media (max-width: 767.98px) {

    .wizard-option-grid,
    .wizard-option-grid.two-up,
    .wizard-option-grid.compact,
    .customize-summary-grid {
        grid-template-columns: 1fr;
    }

    .wizard-step {
        flex: 1 1 100%;
        font-size: 0.75rem;
    }

    .customize-summary {
        max-width: 100%;
        border-top-left-radius: 1.5rem;
        border-top-right-radius: 1.5rem;
        padding: 1.75rem 1.25rem;
    }

    .customize-summary-inner {
        flex: 1;
        overflow-y: auto;
        padding-right: 0.5rem;
    }

    .customize-summary-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, 0.4);
        backdrop-filter: blur(4px);
        z-index: 1055;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .customize-summary-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
    }

    /* Floating Toggle Button */
    .customize-summary-toggle {
        position: fixed;
        bottom: 1.5rem;
        right: 1.25rem;
        z-index: 1050;
        background: var(--gold);
        color: #fff;
        border: none;
        padding: 0.6rem 1rem;
        border-radius: 999px;
        box-shadow: 0 8px 20px rgba(184, 155, 94, 0.25);
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-weight: 700;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.3s ease;
    }

    .customize-summary-toggle:active {
        transform: scale(0.95);
    }

    .customize-summary-toggle i {
        font-size: 0.95rem;
    }
}

@media (max-width: 420px) {
    .milestone-section .section-intro--milestone .section-intro-accent {
        width: min(272px, 96vw);
    }
}