/* --- RAHA HOME PRO THEME (LemonSpaces Clone Style) --- */

:root {
    /* Brand Colors */
    --primary: #c36c30;  /* Bronze */
    --dark: #0d293b;     /* Navy Blue */
    
    /* UI Colors */
    --text-main: #222222;
    --text-light: #717171;
    --bg-light: #F7F7F7;
    --white: #ffffff;
    
    /* Modern Spacing & Radius */
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
    --shadow-hover: 0 6px 16px rgba(0,0,0,0.12);
}

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
    margin: 0;
    background: var(--white);
    color: var(--text-main);
    line-height: 1.6;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

img { max-width: 100%; height: auto; display: block; }
body.nav-open { overflow: hidden; }

/* --- Header --- */
.site-header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #ebebeb;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }

.logo img,
.logo .custom-logo { height: 110px; width: auto; display: block; }

.main-nav { display: flex; gap: 22px; align-items: center; flex-wrap: nowrap; }
.main-nav a { 
    text-decoration: none; 
    color: var(--text-main); 
    font-weight: 500; 
    font-size: 15px;
    white-space: nowrap;
    transition: color 0.2s;
}
.main-nav a:hover { color: var(--primary); }

/* Header CTA size tweaks so it aligns neatly with other nav items */
.main-nav .btn {
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1.1;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    background: var(--white);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    padding: 10px;
    cursor: pointer;
}
.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    transition: transform 0.25s, opacity 0.25s;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
    z-index: 900;
}

body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

/* --- Section Helpers & Separators --- */
.section-separated {
    position: relative;
    padding: 70px 0;
}
.section-separated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), #0cb3d4);
    opacity: 0.35;
}
.section-soft {
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 60%, #f1f5f9 100%);
}
.section-soft-alt {
    background: linear-gradient(135deg, #fff7f0 0%, #ffffff 50%, #f9ede2 100%);
}
.section-contrast {
    background: #f7fafc;
}
.section-dark {
    background: #0f2636;
    color: #eaf2f8;
}
.section-dark h2,
.section-dark p,
.section-dark .eyebrow { color: inherit; }

/* --- Hero Section --- */
.hero {
    height: 70vh;
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none; /* keep only the visible slide clickable */
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,41,59,0.3), rgba(13,41,59,0.65));
}

.hero-slide.active { opacity: 1; }
.hero-slide.active { pointer-events: auto; }

.hero-overlay {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    text-decoration: none;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

.hero-text p {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
    margin: 0;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.hero-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.15);
}

/* --- Floating Search Bar (The "LemonSpaces" Look) --- */
.search-section {
    margin-top: -60px; /* Pulls it up into the hero */
    position: relative;
    z-index: 100;
    padding-bottom: 40px;
}

.filter-form {
    display: flex;
    background: var(--white);
    padding: 10px;
    border-radius: var(--radius-pill); /* Makes it round/pill shaped */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #ddd;
}

.form-group {
    flex: 1;
    padding: 0 20px;
    border-left: 1px solid #ebebeb; /* Separator lines */
    position: relative;
}

.form-group:last-child { border-left: none; } /* Remove border from last item */

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}

.form-group select, 
.form-group input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-light);
    outline: none;
    padding: 0;
    cursor: pointer;
}

/* Search Button — modern glass/gradient pill */
.filter-form button {
    position: relative;
    background: linear-gradient(135deg, #c36c30 0%, #d98645 45%, #0d293b 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    height: 52px;
    min-width: 52px;
    width: 52px;
    padding: 0;
    border-radius: 18px;
    cursor: pointer;
    font-size: 0; /* hide text when showing icon */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-start: 10px;
    margin-inline-end: 0;
    box-shadow: 0 12px 24px rgba(13, 41, 59, 0.24), 0 8px 18px rgba(195, 108, 48, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    overflow: hidden;
    isolation: isolate;
}
.filter-form button::before {
    content: '';
    position: absolute;
    inset: -20% 10% auto -30%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.55), transparent 45%);
    opacity: 0;
    transform: translateY(18%);
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 1;
}
.filter-form button::after { 
    content: '🔍'; 
    position: relative; 
    z-index: 2;
    font-size: 18px;
}
.filter-form button:hover { 
    transform: translateY(-2px) scale(1.02); 
    box-shadow: 0 14px 26px rgba(13, 41, 59, 0.28), 0 10px 20px rgba(195, 108, 48, 0.32); 
    filter: saturate(1.05); 
}
.filter-form button:hover::before { opacity: 1; transform: translateY(0); }
.filter-form button:active { transform: translateY(0); box-shadow: 0 8px 14px rgba(13, 41, 59, 0.25); }
.filter-form button:focus-visible { outline: 3px solid rgba(195, 108, 48, 0.35); outline-offset: 3px; }
.filter-form button span { display: none; }
.filter-form button.is-loading {
    font-size: 14px;
    width: auto;
    padding: 0 18px;
}
.filter-form button.is-loading::after { 
    content: none; 
}

/* --- Property Grid --- */
.listings h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 30px;
}
.listings.section-separated { padding: 70px 0 50px; }
.listings.section-contrast { background: #f7fafc; }

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.property-card {
    background: var(--white);
    border: 1px solid #ededed;
    border-radius: var(--radius-lg);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.property-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px; /* Slightly taller images */
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card .meta { flex-wrap: wrap; }

.card-details { padding: 12px; }

.card-details h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-details .price {
    color: var(--text-main);
    font-weight: 800;
    font-size: 16px;
    display: block;
    margin-top: 5px;
}

.meta {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    gap: 10px;
}

/* --- About Section --- */
.about { padding: 40px 0 20px; }
.about.section-separated { padding: 70px 0 60px; }
/* Give the About section a brand-tinted background that matches the palette */
.about.section-soft {
    background: linear-gradient(135deg, rgba(195,108,48,0.12) 0%, rgba(13,41,59,0.1) 38%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
}
.about-text h2 {
    margin: 8px 0 12px;
    font-size: 28px;
    color: var(--dark);
}
.about-text p {
    margin: 0 0 14px;
    color: var(--text-light);
}
.about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin: 12px 0 18px;
    color: var(--dark);
    font-weight: 700;
}
.about .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--primary);
    margin: 0;
}
.about-media { display: flex; justify-content: center; }
.about-media .about-img {
    height: 280px;
    max-width: 400px;
    width: 100%;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 18% 20%, rgba(195,108,48,0.12), transparent 42%),
                radial-gradient(circle at 82% 12%, rgba(13,41,59,0.12), transparent 40%),
                #ffffff;
    border: 1px solid #e6e6e6;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
}
.about-media .about-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- Twist Section --- */
.twist {
    background: #fbfbf8;
    padding: 30px 0 10px;
}
.twist.section-separated { padding: 70px 0 40px; }
.twist.section-soft-alt { background: linear-gradient(135deg, #fff7f0 0%, #ffffff 45%, #f9ede2 100%); }
.twist-head h2 { margin: 8px 0 20px; color: var(--dark); }
.twist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.twist-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.twist-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.twist-card h3 {
    margin: 12px 14px 6px;
    color: var(--dark);
    font-size: 18px;
}
.twist-card p {
    margin: 0 14px 16px;
    color: var(--text-light);
    line-height: 1.5;
    font-size: 14px;
}

/* --- Testimonials --- */
.testimonials {
    padding: 30px 0 50px;
    background: #f9f9f7;
    text-align: center;
}
.testimonials.section-separated { padding: 70px 0 60px; }
.testimonials.section-dark { background: #0f2636; color: #eaf2f8; }
.test-head h2 { margin: 8px 0 18px; color: var(--dark); }
.testimonial-slider {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}
.testimonial-card {
    display: none;
    background: var(--white);
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.testimonial-card.active {
    display: block;
    animation: testimonialFade 0.4s ease;
}
@keyframes testimonialFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.t-row {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.testimonial-card h3 {
    margin: 0;
    color: var(--dark);
}
.testimonial-card .role {
    margin: 0;
    color: var(--text-light);
    font-size: 13px;
}
.testimonial-card .quote {
    margin: 16px 0 12px;
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.6;
}
.stars {
    letter-spacing: 2px;
    color: #f5b301;
    font-size: 16px;
}
.testimonial-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
}
.testimonial-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid var(--dark);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.testimonial-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}
.testimonials.section-dark .test-head h2,
.testimonials.section-dark .test-head p { color: inherit; }
.testimonials.section-dark .testimonial-card {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.08);
    color: #eaf2f8;
}
.testimonials.section-dark .testimonial-card .quote { color: #dfe8ef; }
.testimonials.section-dark .testimonial-card .role { color: #c1ced9; }
.testimonials.section-dark .avatar { background: rgba(255,255,255,0.14); color: #fff; }
.testimonials.section-dark .testimonial-dot {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.12);
}
.testimonials.section-dark .testimonial-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* --- Archive / All Properties --- */
.archive-hero {
    background: linear-gradient(135deg, rgba(13,41,59,0.9), rgba(195,108,48,0.8));
    color: var(--white);
    padding: 60px 0 50px;
    margin-bottom: 30px;
}
.archive-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    opacity: 0.85;
    margin: 0;
}
.archive-hero h1 {
    margin: 10px 0 8px;
    font-size: 32px;
}
.archive-hero .sub {
    margin: 0 0 20px;
    opacity: 0.9;
}
.archive-hero .filter-form {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: none;
    color: var(--white);
}
.archive-hero .form-group label { color: #f4f4f4; }
.archive-hero .form-group input,
.archive-hero .form-group select {
    color: #f4f4f4;
}
.archive-listings .grid-layout {
    margin-top: 10px;
}
.badge.price-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(13,41,59,0.9);
    color: var(--white);
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 14px;
}
.pagination {
    text-align: center;
    margin: 30px 0 50px;
}

/* --- Single Property Page --- */
.single-property {
    padding: 30px 0 60px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.property-header h1 {
    margin: 6px 0 10px;
    font-size: 28px;
    color: var(--dark);
}

.property-location {
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
}

.property-tags {
    display: flex;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.price-block {
    text-align: left;
}

.price-tag {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 16px;
}

.price-note {
    display: block;
    color: var(--text-light);
    font-size: 12px;
    margin-top: 4px;
}

.property-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 16px;
    align-items: start;
    margin-bottom: 24px;
}

.property-hero-main {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.property-hero-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.property-hero-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-height: 360px;
    overflow-y: auto;
    padding: 4px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.property-hero-thumb {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s, outline 0.2s;
}

.property-hero-thumb img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.property-hero-thumb.active, .property-hero-thumb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.property-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.card {
    background: var(--white);
    border: 1px solid #ededed;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 18px 20px;
}

.btn {
    display: inline-block;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    padding: 12px 18px;
    font-weight: 700;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--dark);
    border-color: var(--dark);
}

.description p { margin-top: 0; }

.details .detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.details .label {
    color: var(--text-light);
    font-size: 13px;
}

.details .value {
    display: block;
    font-weight: 700;
    color: var(--text-main);
}

.contact-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 10px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 14px;
    width: auto;
    max-width: 100%;
}

.btn.btn-outline {
    border: 1px solid var(--dark);
    color: var(--dark);
    background: transparent;
}

.btn.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.property-map .map-embed {
    margin-top: 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.property-map iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
}

@media (max-width: 1024px) {
    .property-hero {
        grid-template-columns: 1fr;
    }
    .property-hero-main img { height: 300px; }
    .property-hero-thumbs {
        max-height: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .container { padding: 0 28px; }
    .hero { height: 60vh; }
    .hero-text h1 { font-size: 2.6rem; }
    .grid-layout { gap: 28px; }
    .about-grid { grid-template-columns: 1fr; }
    .property-header { flex-direction: column; align-items: flex-start; }
    .price-block { width: 100%; text-align: right; }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .filter-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }
    
    .filter-form button {
        width: 100%;
        border-radius: 14px;
        height: 52px;
        font-size: 16px;
    }
    .filter-form button::after { content: none; }
    .filter-form button.is-loading {
        width: 100%;
    }
    
    .hero-text h1 { font-size: 2rem; }
    
    /* Mobile Header Layout */
    .site-header .container { flex-wrap: nowrap; gap: 12px; }
    .logo img,
    .logo .custom-logo { height: 88px; }
    .main-nav { 
        position: fixed; 
        inset: 0 0 0 30%;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 18px;
        box-shadow: -4px 0 16px rgba(0,0,0,0.08);
        transform: translateX(110%);
        transition: transform 0.25s ease;
        align-items: flex-start;
        z-index: 950;
    }
    .main-nav a { font-size: 16px; }
    body.nav-open .main-nav { transform: translateX(0); }
    body.nav-open .mobile-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.nav-open .mobile-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .mobile-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .mobile-toggle { display: inline-flex; }
    
    .property-header { gap: 8px; }
    .property-hero { grid-template-columns: 1fr; }
    .property-hero-main img { height: 240px; }
    .property-hero-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 4px;
    }
    .property-hero-thumb img { width: 100%; height: 90px; }
    .contact-card .btn {
        font-size: 13px;
        padding: 9px 12px;
    }
    .property-content-grid { grid-template-columns: 1fr; }

    .about-grid { grid-template-columns: 1fr; }
    .about-media { order: -1; }
    .about-media .about-img {
        height: 220px;
        max-width: 340px;
        margin-bottom: 12px;
    }

    .twist-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

    .testimonial-card { padding: 18px; }

    .grid-layout { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
    .hero { height: 55vh; }
    .hero-text p { font-size: 1rem; }
    .search-section { margin-top: -40px; padding-bottom: 24px; }
    .listings h2 { font-size: 1.6rem; }
    .about.section-separated { padding: 50px 0 30px; }
    .about-text h2 { font-size: 22px; }
    .twist.section-separated { padding: 50px 0 28px; }
    .testimonials.section-separated { padding: 50px 0 40px; }
    .listings.section-separated { padding: 50px 0 40px; }
    .twist-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .twist-card h3 { font-size: 16px; }
    .twist-card p { font-size: 13px; }
    .archive-hero { padding: 40px 0 30px; }
    .archive-hero h1 { font-size: 26px; }
    .archive-hero .filter-form { border-radius: 16px; }
}
