:root {
    --sv-bg: #0d0d0d;
    --sv-black: #000;
    --sv-primary: #ec1313;
    --sv-primary-rgb: 236, 19, 19;
    --sv-text: #f2f2f2;
    --sv-muted: rgba(255, 255, 255, 0.5);
    --sv-border: rgba(255, 255, 255, 0.15);
    --sv-card: #141414;
    --font-heading: "Bebas Neue", Impact, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.sv-body {
    background: #000;
    color: var(--sv-text);
    font-family: var(--font-body);
    font-weight: 300;
    min-height: 100vh;
    overflow-x: hidden;
}

body.sv-menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.sv-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: 3.5rem;
    display: flex;
    align-items: center;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

@media (min-width: 768px) {
    .sv-nav {
        height: 4rem;
    }
}

.sv-nav.is-scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
}

.sv-nav-inner {
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .sv-nav-inner {
        padding: 0 2.5rem;
    }
}

.sv-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none !important;
}

.sv-brand img {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    display: block;
}

.sv-brand-text {
    font-family: var(--font-body);
    font-weight: 200;
    letter-spacing: 0.28em;
    color: var(--sv-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .sv-brand-text {
        font-size: 1.25rem;
        letter-spacing: 0.4em;
    }
}

.sv-nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .sv-nav-links {
        display: flex;
    }
}

.sv-nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    transition: color 0.2s ease;
}

.sv-nav-links a:hover,
.sv-nav-links a.active {
    color: #fff;
}

.sv-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 0.5rem;
}

.sv-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.sv-social a:hover {
    color: #fff;
}

.sv-burger {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    padding: 0.5rem;
    z-index: 1060;
}

@media (min-width: 768px) {
    .sv-burger {
        display: none;
    }
}

.sv-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: #000;
}

.sv-mobile-menu.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    text-align: center;
}

.sv-mobile-menu a {
    display: block;
    padding: 0;
    letter-spacing: 0.4em;
    font-size: clamp(1.4rem, 6vw, 1.85rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 0;
    text-indent: 0.4em;
}

.sv-mobile-menu a.is-active,
.sv-mobile-menu a:hover {
    color: var(--sv-primary);
}

.sv-mobile-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.sv-mobile-social a {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0;
    text-indent: 0;
}

.sv-mobile-social a:hover {
    color: #fff;
}

.sv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.sv-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(120, 0, 0, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(60, 0, 0, 0.25) 0%, transparent 60%),
        #000;
}

.sv-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem;
    animation: svFadeUp 1s ease both;
}

.sv-hero-logo {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 2rem;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .sv-hero-logo {
        width: 8rem;
        height: 8rem;
    }
}

.sv-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.sv-hero-title {
    font-family: var(--font-body);
    font-weight: 200;
    letter-spacing: 0.28em;
    font-size: clamp(1.35rem, 6.5vw, 3.75rem);
    color: #fff;
    line-height: 1.15;
    margin: 0;
    text-indent: 0.28em;
    word-break: break-word;
}

@media (min-width: 768px) {
    .sv-hero-title {
        letter-spacing: 0.5em;
        text-indent: 0.5em;
        line-height: 1;
    }
}

.sv-hero-sub {
    margin-top: 1rem;
    font-size: clamp(0.62rem, 2.4vw, 1rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 200;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .sv-hero-sub {
        letter-spacing: 0.5em;
    }
}

.sv-btn {
    display: inline-block;
    border: 1px solid var(--sv-primary);
    color: #fff !important;
    background: transparent;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 0;
}

.sv-btn:hover {
    background: var(--sv-primary);
    color: #fff;
}

.sv-btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
}

.sv-page-title {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .sv-page-title {
        padding: 10rem 2.5rem 5rem;
    }
}

.sv-page-title h1 {
    font-family: var(--font-body);
    font-weight: 200;
    letter-spacing: 0.22em;
    font-size: clamp(2rem, 9vw, 4.5rem);
    color: #fff;
    margin: 0;
    text-indent: 0.22em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .sv-page-title h1 {
        letter-spacing: 0.35em;
        text-indent: 0.35em;
    }
}

.sv-page-title .sv-rule {
    width: 5rem;
    height: 2px;
    background: var(--sv-primary);
    margin: 1.5rem auto 0;
    transform-origin: center;
    animation: svScaleX 0.8s ease 0.2s both;
}

.sv-section-title {
    font-family: var(--font-body);
    font-weight: 200;
    letter-spacing: 0.3em;
    text-align: center;
    color: #fff;
    margin-bottom: 2.5rem;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.sv-section-title.primary {
    color: var(--sv-primary);
}

.sv-muted {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.7;
}

.sv-panel {
    border: 1px solid var(--sv-border);
    padding: 2rem;
}

.sv-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--sv-border);
}

@media (min-width: 768px) {
    .sv-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sv-feature {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--sv-border);
}

@media (min-width: 768px) {
    .sv-feature {
        border-top: 0;
        border-right: 1px solid var(--sv-border);
    }

    .sv-feature:last-child {
        border-right: 0;
    }
}

.sv-feature:first-child {
    border-top: 0;
}

.sv-feature h3 {
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 200;
    margin: 1rem 0;
}

.sv-feature p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

.sv-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
}

.sv-gallery img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.sv-event-card {
    background: var(--sv-card);
    border: 1px solid var(--sv-border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.sv-event-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-2px);
}

.sv-event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #111;
}

.sv-event-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sv-event-body h3 {
    font-size: 1rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    margin: 0 0 0.5rem;
}

.sv-event-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.35rem;
}

.sv-badge {
    display: inline-block;
    border: 1px solid var(--sv-primary);
    color: var(--sv-primary);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: 0.2rem 0.5rem;
    margin-right: 0.35rem;
}

.sv-stars {
    color: #f5c518;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

.sv-form label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.sv-form .form-control,
.sv-form .form-select,
.sv-form textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #fff;
    font-weight: 300;
    padding: 0.7rem 0.85rem;
}

.sv-form .form-control:focus,
.sv-form .form-select:focus,
.sv-form textarea:focus {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    color: #fff;
}

.sv-form .form-select option {
    background: #000;
    color: #fff;
}

.sv-footer {
    border-top: 1px solid var(--sv-border);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.sv-footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.sv-footer-links a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s ease;
}

.sv-footer-links a:hover {
    color: var(--sv-primary);
}

.sv-footer address {
    font-style: normal;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.sv-faq {
    border: 1px solid var(--sv-border);
}

.sv-faq-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--sv-border);
}

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

.sv-faq-item h3 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 200;
    margin: 0 0 0.5rem;
}

.sv-faq-item p,
.sv-faq-item {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.sv-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    filter: grayscale(1) invert(0.9) contrast(0.9) hue-rotate(180deg);
}

.sv-house-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sv-house-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.sv-house-list li:last-child {
    margin-bottom: 0;
}

.sv-house-list .icon {
    color: var(--sv-primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.sv-empty {
    border: 1px dashed var(--sv-border);
    padding: 3rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
}

@keyframes svFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes svScaleX {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.sv-reveal {
    animation: svFadeUp 0.9s ease both;
}

.sv-reveal-delay-1 { animation-delay: 0.15s; }
.sv-reveal-delay-2 { animation-delay: 0.3s; }
.sv-reveal-delay-3 { animation-delay: 0.45s; }

/* Skiddle-style events widget */
.sk-widget {
    --sk-accent: #46C3BD;
    --colour-primary-main: var(--sk-accent);
    background: #fff;
    color: #222;
    border-radius: 10px;
    overflow: visible;
    position: relative;
    z-index: 5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
    font-family: Inter, system-ui, sans-serif;
}

.sk-body {
    position: relative;
    z-index: 1;
}

.sk-toolbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 16px 12px;
    position: relative;
    z-index: 50;
    background: #f5f5f5;
    border-top: 2px solid var(--sk-accent);
    border-radius: 10px 10px 0 0;
    overflow: visible;
}

.sk-logo {
    color: var(--sk-accent);
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}

.sk-logo svg {
    width: 14px;
    height: 28px;
    display: block;
}

.sk-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
    overflow: visible;
    position: relative;
    z-index: 60;
}

.sk-trigger {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    color: #222;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sk-trigger svg {
    color: var(--sk-accent);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.sk-trigger.is-selected,
.sk-trigger[aria-pressed="true"] {
    background: var(--sk-accent);
    color: #fff;
    border-color: var(--sk-accent);
}

.sk-trigger.is-selected svg,
.sk-trigger[aria-pressed="true"] svg {
    color: #fff;
}

.sk-sort-wrap {
    position: relative;
    display: inline-block;
    z-index: 70;
}

.sk-sort-wrap.is-open {
    z-index: 90;
}

.sk-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    z-index: 200;
    pointer-events: auto;
}

.sk-dropdown[hidden] {
    display: none !important;
}

.sk-dropdown-date,
.sk-dropdown-location {
    min-width: 300px;
}

.sk-dropdown-item {
    all: unset;
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 15px;
    color: #222;
    cursor: pointer;
    border-radius: 4px;
}

.sk-dropdown-item:hover,
.sk-dropdown-item.is-active {
    background: var(--sk-accent);
    color: #fff;
}

.sk-dropdown-item.is-filtered-out {
    display: none !important;
}

.sk-location-search {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 8px;
    background: #f7f7f7;
}

.sk-location-search svg {
    color: var(--sk-accent);
    flex-shrink: 0;
}

.sk-location-search input {
    border: 0;
    outline: none;
    width: 100%;
    background: transparent;
    font-size: 15px;
    color: #222;
}

.sk-location-results {
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 8px;
}

.sk-date-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
}

.sk-date-field input {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
}

.sk-date-actions {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
}

.sk-apply {
    all: unset;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    background: var(--sk-accent);
    color: #fff;
}

.sk-cancel {
    all: unset;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 14px;
    color: #555;
}

.sk-body {
    background: #fff;
    min-height: 280px;
    padding: 0 16px 16px;
}

.sk-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    padding-top: 8px;
    max-width: 1050px;
    margin: 0 auto;
}

.sk-card {
    width: 240px;
    height: 380px;
    position: relative;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    overflow: hidden;
    background: #fff;
    outline: 1px solid #eee;
    box-shadow: 0 4px 4px rgba(122, 122, 122, 0.1);
    cursor: default;
}

.sk-card:hover {
    outline-color: #ccc;
}

.sk-min-age {
    left: 10px;
    top: 18px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.1s linear;
    z-index: 5;
    pointer-events: none;
}

.sk-card:hover .sk-min-age {
    opacity: 1 !important;
}

.sk-min-age > div {
    width: 48px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px 0;
    background: #e10600;
    color: #fff;
}

.sk-min-age > div > div {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.sk-card-image {
    position: relative;
    width: calc(100% - 20px);
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: 48%;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

.sk-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sk-card-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 10px 0;
    gap: 6px;
    flex: 1;
}

.sk-card-title {
    margin: 0 0 2px;
    line-height: 1.2;
    font-weight: 700;
    font-size: 14px;
    color: #111 !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sk-line {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    color: #444;
}

.sk-line i {
    color: #888;
    font-size: 13px;
    margin-top: 1px;
    flex-shrink: 0;
}

.sk-date {
    font-weight: 600;
    color: #222;
}

.sk-time {
    font-style: normal;
    font-weight: 500;
}

.sk-venue {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sk-card-cta {
    position: absolute;
    bottom: 10px;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.sk-info-btn {
    all: unset;
    cursor: pointer;
    color: #888;
    font-size: 22px;
    line-height: 1;
    transition: color 0.15s linear;
}

.sk-card:hover .sk-info-btn {
    color: #222;
}

.sk-info-btn.is-open i {
    transform: scale(1.05);
}

.sk-buy {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    color: #222 !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
}

.sk-buy:hover .sk-buy-text {
    text-decoration: underline;
}

.sk-buy-arrow {
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: #555;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    transition: transform 0.1s linear;
}

.sk-card:hover .sk-buy-arrow {
    transform: translateX(3px);
    background: var(--sk-accent);
}

.sk-buy-muted {
    opacity: 0.55;
    pointer-events: none;
}

.sk-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 6;
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.sk-card-overlay[hidden] {
    display: none !important;
}

.sk-card-overlay h4 {
    font-size: 15px;
    margin: 0 1.5rem 0 0;
    color: #111;
}

.sk-card-overlay p {
    margin: 0;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.sk-overlay-close {
    all: unset;
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    font-size: 22px;
    color: #666;
}

.sk-empty {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    width: 100%;
    padding: 16px;
    color: #333;
    font-size: 16px;
}

.sk-empty.is-hidden,
.sk-card.is-hidden {
    display: none !important;
}

.sk-clear-filters {
    background: var(--sk-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.sk-powered {
    margin: 0;
    padding: 0 16px 12px;
    text-align: center;
    font-size: 8pt;
    line-height: 13px;
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.sk-powered a {
    color: #666 !important;
}

@media (max-width: 575px) {
    .sk-toolbar {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px;
    }

    .sk-filters {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }

    .sk-trigger {
        font-size: 13px;
        padding: 7px 9px;
    }

    .sk-dropdown,
    .sk-dropdown-date,
    .sk-dropdown-location {
        right: auto;
        left: 0;
        min-width: min(300px, calc(100vw - 48px));
    }

    .sk-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .sk-grid {
        justify-content: center;
        gap: 12px;
    }

    .sk-body {
        padding: 0 12px 12px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .sk-card {
        width: calc(50% - 8px);
        max-width: none;
    }

    .sk-grid {
        max-width: none;
    }

    .sk-filters {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

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

    .sv-panel {
        padding: 1.25rem;
    }

    .sv-house-list li {
        gap: 0.75rem;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Contact Find Us */
.sv-side-title {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    font-weight: 200;
    color: #fff;
    margin-bottom: 2rem;
}

.sv-find-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.sv-find-row > i {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
}

.sv-find-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.sv-find-value {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.sv-find-link:hover {
    color: var(--sv-primary);
}

.sv-find-social {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.sv-find-social:hover {
    color: #fff;
}
