.sp-page {
    min-height: 100vh;
    background: #f0eeeb;
    color: #111;
    font-family: 'DM Sans', sans-serif;
}

.sp-hero {
    position: relative;
    overflow: hidden;
    background: #090909;
    color: #fff;
}

.sp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.42)),
        url('/Media/Images/hero_new.jpg') center/cover;
    opacity: 0.92;
}

.sp-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(120px, 18vh, 190px) 0 clamp(64px, 10vh, 110px);
}

.sp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e8d49a;
}

.sp-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #e8d49a;
}

.sp-title {
    max-width: 780px;
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 5.7rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.sp-title em {
    color: #e8d49a;
    font-style: italic;
}

.sp-lead {
    max-width: 660px;
    margin: 24px 0 0;
    color: rgba(255,255,255,0.76);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.7;
}

.sp-shell {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(46px, 7vw, 78px) 0;
}

.sp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sp-card {
    min-height: 220px;
    padding: clamp(22px, 3vw, 32px);
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.08);
    box-shadow: 0 18px 46px rgba(17,17,17,0.08);
}

.sp-card--wide {
    grid-column: span 2;
}

.sp-card-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    margin-bottom: 20px;
}

.sp-card h2,
.sp-card h3 {
    margin: 0 0 12px;
    color: #111;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    font-weight: 850;
    letter-spacing: 0;
}

.sp-card p {
    margin: 0;
    color: #5f5f5f;
    line-height: 1.7;
    font-size: 1rem;
}

.sp-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.sp-list li {
    display: flex;
    gap: 10px;
    color: #444;
    line-height: 1.55;
}

.sp-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    margin-top: 8px;
    border-radius: 50%;
    background: #111;
}

.sp-cta {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.sp-cta:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 820px) {
    .sp-hero-inner,
    .sp-shell {
        width: min(100% - 28px, 1120px);
    }

    .sp-grid {
        grid-template-columns: 1fr;
    }

    .sp-card--wide {
        grid-column: auto;
    }
}
