/* ============================================================
   /virtual-tours - 3Syxty partner landing
   Brand colours from https://www.3syxty.com/media/
   ============================================================ */

.page-virtual-tours .page-content {
    padding: 0;
}

.syxty-page {
    color: var(--syxty-text, #f3f5f8);
}

.syxty-hero {
    background: linear-gradient(165deg, #0d0f12 0%, #15181d 45%, #1c2026 100%);
    padding: calc(var(--header-height) + var(--space-12)) var(--space-6) var(--space-12);
    position: relative;
    overflow: hidden;
}

.syxty-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 75% 15%, rgba(255, 51, 102, 0.16) 0%, transparent 58%),
                radial-gradient(ellipse 50% 50% at 10% 90%, rgba(255, 178, 74, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.syxty-hero__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

.syxty-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
    gap: var(--space-8);
    align-items: center;
    margin-bottom: var(--space-10);
}

.syxty-hero__tour {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 360px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #15181d;
    border: 1px solid rgba(255, 51, 102, 0.28);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.syxty-hero__tour iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.syxty-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(243, 245, 248, 0.55);
    margin-bottom: var(--space-5);
}

.syxty-hero__breadcrumb a {
    color: rgba(243, 245, 248, 0.7);
    text-decoration: none;
}

.syxty-hero__breadcrumb a:hover {
    color: #ffb24a;
}

.syxty-hero__eyebrow {
    margin: 0 0 var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffb24a;
}

.syxty-hero__logo {
    display: block;
    height: 52px;
    width: auto;
    max-width: 220px;
    aspect-ratio: 881 / 308;
    object-fit: contain;
    object-position: left center;
    margin-bottom: var(--space-6);
}

.syxty-hero__title {
    font-size: clamp(1.75rem, 3.6vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
    margin: 0 0 var(--space-5);
    color: #f3f5f8;
}

.syxty-hero__line {
    white-space: nowrap;
}

.syxty-hero__accent {
    background: linear-gradient(135deg, #ff3366 0%, #ff6a3d 50%, #ffb24a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.syxty-hero__lead {
    font-size: var(--text-lg);
    line-height: 1.65;
    margin: 0 0 var(--space-8);
    color: rgba(243, 245, 248, 0.72);
}

.syxty-hero__actions,
.syxty-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.syxty-hero__actions {
    margin-bottom: 0;
}

.syxty-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.syxty-stat__value {
    display: block;
    font-size: clamp(var(--text-lg), 2.4vw, var(--text-2xl));
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f3f5f8;
}

.syxty-stat__label {
    display: block;
    font-size: var(--text-sm);
    color: rgba(243, 245, 248, 0.55);
    margin-top: var(--space-1);
}

.syxty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.syxty-btn--primary {
    background: linear-gradient(135deg, #ff3366 0%, #ff6a3d 50%, #ffb24a 100%);
    color: #fff;
}

.syxty-btn--primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
}

.syxty-btn--secondary {
    background: transparent;
    color: #f3f5f8;
    border: 1px solid rgba(243, 245, 248, 0.22);
}

.syxty-btn--secondary:hover {
    color: #f3f5f8;
    border-color: rgba(255, 178, 74, 0.55);
    background: rgba(255, 255, 255, 0.04);
}

.syxty-section {
    padding: var(--space-16) var(--space-6);
    background: #0d0f12;
}

.syxty-section--alt {
    background: #15181d;
}

.syxty-section--dark {
    background: linear-gradient(180deg, #0d0f12 0%, #1c2026 100%);
}

.syxty-section__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.syxty-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-12);
}

.syxty-section__title {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 var(--space-4);
    line-height: 1.15;
    color: #f3f5f8;
}

.syxty-section__title--light {
    color: #f3f5f8;
}

.syxty-section__subtitle,
.syxty-section__lead {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: rgba(243, 245, 248, 0.68);
    margin: 0;
}

.syxty-section__lead {
    margin-bottom: var(--space-6);
    max-width: 640px;
}

.syxty-section__lead--light {
    color: rgba(243, 245, 248, 0.68);
}

.syxty-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.syxty-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.syxty-checklist li {
    position: relative;
    padding-left: var(--space-6);
    color: rgba(243, 245, 248, 0.82);
    line-height: 1.5;
}

.syxty-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3366, #ffb24a);
}

.syxty-panel {
    background: #1c2026;
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.syxty-panel__label {
    margin: 0 0 var(--space-4);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffb24a;
}

.syxty-panel__row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: var(--text-sm);
    color: rgba(243, 245, 248, 0.6);
}

.syxty-panel__row strong {
    color: #f3f5f8;
    font-weight: 700;
}

.syxty-panel__cta {
    display: inline-block;
    margin-top: var(--space-5);
    font-weight: 700;
    color: #ff6a3d;
    text-decoration: none;
}

.syxty-panel__cta:hover {
    color: #ffb24a;
}

.syxty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.syxty-card {
    background: #1c2026;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.syxty-card__title {
    margin: 0 0 var(--space-3);
    font-size: var(--text-lg);
    font-weight: 700;
    color: #f3f5f8;
}

.syxty-card__text {
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.65;
    color: rgba(243, 245, 248, 0.68);
}

.syxty-venues {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.syxty-venues a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-5);
    background: #1c2026;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    color: #f3f5f8;
    text-decoration: none;
    font-weight: 600;
}

.syxty-venues a:hover {
    border-color: rgba(255, 51, 102, 0.4);
    color: #ffb24a;
}

.syxty-embeds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    margin-top: var(--space-10);
}

.syxty-embed {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #15181d;
    border: 1px solid rgba(255, 51, 102, 0.28);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.syxty-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.syxty-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.syxty-compare__col {
    background: #1c2026;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.syxty-compare__col h3 {
    margin: 0 0 var(--space-4);
    font-size: var(--text-lg);
    color: #f3f5f8;
}

.syxty-compare__col ul {
    list-style: none;
    margin: 0 0 var(--space-5);
    padding: 0;
    color: rgba(243, 245, 248, 0.7);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    font-size: var(--text-sm);
}

.syxty-compare__col a {
    font-weight: 700;
    color: #ff6a3d;
    text-decoration: none;
}

.syxty-compare__col a:hover {
    color: #ffb24a;
}

.syxty-cta {
    background: #0d0f12;
    padding: var(--space-16) var(--space-6) var(--space-20);
    text-align: center;
}

.syxty-cta__inner {
    max-width: 720px;
    margin: 0 auto;
}

.syxty-cta__title {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 var(--space-4);
    color: #f3f5f8;
}

.syxty-cta__text {
    margin: 0 0 var(--space-8);
    font-size: var(--text-lg);
    line-height: 1.7;
    color: rgba(243, 245, 248, 0.68);
}

.syxty-cta__actions {
    justify-content: center;
    margin-bottom: var(--space-6);
}

.syxty-cta__contact {
    margin: 0;
    font-size: var(--text-sm);
    color: rgba(243, 245, 248, 0.5);
}

.syxty-cta__contact a {
    color: #ffb24a;
    text-decoration: none;
}

@media (max-width: 900px) {
    .syxty-hero__grid,
    .syxty-hero__stats,
    .syxty-split,
    .syxty-grid,
    .syxty-compare,
    .syxty-venues,
    .syxty-embeds {
        grid-template-columns: 1fr;
    }

    .syxty-hero__tour {
        min-height: 280px;
        aspect-ratio: 16 / 10;
    }
}
