body.site {
    --primary: #097f93;
    --primary-dark: #172a61;
    --secondary: #dff4fb;
    --aqua: #25d8d1;
    --text-main: #172a61;
    --text-dark: #1d2743;
    --gray-light: #f4fbfe;
}

.section-padding { padding: 72px 0; }
.text-left { text-align: left; }
.mt-4 { margin-top: 24px; }

.section-title {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 14px;
}

.section-title span,
.about-text .section-title span,
.sd-heading span {
    color: var(--primary);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-dark);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(23, 42, 97, 0.18);
}

.btn-primary:hover {
    background: #0e1d4c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: inset 0 0 0 2px rgba(23, 42, 97, 0.12);
}

.home-staff-hero {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(135deg, #0a8f92 0%, #2ce0d9 52%, #14858c 100%);
    color: #ffffff;
    min-height: 620px;
    /*display: flex;*/
    align-items: center;
    overflow: hidden;
}

.home-staff-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 54px;
    align-items: center;
    width: 100%;
}

.home-staff-hero__copy {
    max-width: 610px;
}

.eyebrow {
    font-weight: 800;
    font-size: 20px;
    margin: 0 0 14px;
    color: #fc0507;
    text-shadow: 0 0 black;
}

.home-staff-hero h1 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.08;
    margin: 0 0 18px;
    font-weight: 900;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.hero-lead {
    font-size: 18px;
    line-height: 1.72;
    margin: 0 0 28px;
    max-width: 560px;
    color: #f6ffff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.provider-panel {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    contain: layout paint;
}

.provider-asset-carousel {
    width: min(100%, 520px);
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    z-index: 1;
}

.provider-asset-carousel:active {
    cursor: grabbing;
}

.provider-asset-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.provider-asset-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(18px) scale(0.98);
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.provider-asset-slide.is-active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.provider-asset-image {
    width: min(92%, 430px);
    height: min(92%, 430px);
    object-fit: contain;
    filter: drop-shadow(0 22px 26px rgba(23, 42, 97, 0.18));
    pointer-events: none;
}

.provider-card,
.quick-provider-card,
.contact-card,
.sd-map-card,
.about-flex {
    border-radius: 8px;
}

.provider-card {
    background: #ffffff;
    color: var(--text-dark);
    padding: 24px;
    min-height: 210px;
    box-shadow: 0 18px 40px rgba(8, 63, 86, 0.18);
    border: 1px solid rgba(23, 42, 97, 0.08);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(2px);
}

.provider-card h2,
.quick-provider-card h3 {
    margin: 14px 0 8px;
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 900;
}

.provider-card p,
.quick-provider-card p {
    margin: 0;
    color: #465069;
    line-height: 1.58;
    font-size: 14px;
}

.provider-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: var(--secondary);
    color: var(--primary-dark);
    position: relative;
}

.provider-icon::before {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
}

.provider-icon--cook::before { content: "C"; }
.provider-icon--chef::before { content: "H"; }
.provider-icon--nanny::before { content: "N"; }
.provider-icon--driver::before { content: "D"; }

.quick-services,
.services-section {
    background: var(--secondary);
}

.posts-header {
    display: block;
    text-align: center;
    margin-bottom: 28px;
    border-bottom: 2px solid rgba(9, 127, 147, 0.16);
    padding-bottom: 16px;
}

.posts-header p {
    max-width: 560px;
    margin: 0 auto;
    color: #4b5872;
}

.quick-provider-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.quick-provider-card {
    background: #ffffff;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(9, 127, 147, 0.14);
    box-shadow: 0 10px 24px rgba(23, 42, 97, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(23, 42, 97, 0.12);
}

.quick-service-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--secondary);
}

.quick-service-body {
    padding: 22px;
}

.quick-service-empty {
    grid-column: 1 / -1;
    margin: 0;
    text-align: center;
    color: #4b5872;
}

.about-section {
    background: linear-gradient(135deg, #0d7989 0%, #24d8d1 100%);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.96);
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.11);
}

.about-image-wrapper { flex: 0.75; }
.about-main-img { width: 100%; border-radius: 8px; }
.about-text { flex: 1.25; }
.about-text p { color: #3f4a63; line-height: 1.7; margin: 0 0 24px; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-box {
    display: flex;
    gap: 14px;
    background: #ffffff;
    padding: 18px;
    border: 1px solid rgba(9, 127, 147, 0.13);
    border-radius: 8px;
}

.feature-box .icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.feature-box h4 {
    margin: 0 0 6px;
    color: var(--primary-dark);
    font-size: 14px;
    text-transform: uppercase;
}

.feature-box p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.services-grid--compact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 18px;
    background: #ffffff;
    color: var(--primary-dark);
    border-radius: 24px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(23, 42, 97, 0.08);
}

.service-pill:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

.contact-map-section {
    background: #ffffff;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
    align-items: stretch;
}

.contact-card,
.sd-map-card {
    background: var(--gray-light);
    border: 1px solid rgba(9, 127, 147, 0.15);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(9, 127, 147, 0.08);
}

.contact-card p {
    color: #3f4a63;
    line-height: 1.65;
}

.sd-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
}

.sd-heading {
    font-size: 30px;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 18px;
}

.sd-map-frame {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(23, 42, 97, 0.12);
}

.sd-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 420px;
}

.sd-faq-section {
    background: var(--secondary);
}

.sd-faq-list {
    border-top: 1px solid rgba(23, 42, 97, 0.12);
}

.sd-faq-item {
    border-bottom: 1px solid rgba(23, 42, 97, 0.12);
}

.sd-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}

.sd-faq-icon {
    color: var(--primary);
    font-size: 24px;
    font-weight: 600;
}

.sd-faq-content {
    display: none;
    padding-bottom: 20px;
}

.sd-faq-content p {
    margin: 0;
    color: #3f4a63;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .home-staff-hero { min-height: auto; padding: 72px 0; }
    .home-staff-hero__grid,
    .contact-map-grid {
        grid-template-columns: 1fr;
    }
    .provider-panel {
        min-height: 420px;
    }
    .quick-provider-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-image-wrapper { display: none; }
}

@media (max-width: 767px) {
    .section-padding { padding: 48px 0; }
    .home-staff-hero { padding: 54px 0; }
    .home-staff-hero h1 { font-size: 34px; }
    .hero-lead { font-size: 16px; }
    .provider-panel,
    .quick-provider-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    .provider-panel {
        min-height: auto;
    }
    .provider-asset-carousel {
        width: min(100%, 360px);
    }
    .posts-header p {
        margin-top: 10px;
    }
    .about-flex,
    .contact-card,
    .sd-map-card {
        padding: 22px;
    }
    .sd-map-frame iframe { min-height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
    .provider-asset-slide {
        transition: none;
    }
}
