/* ============================================================
   MATCHSPECS — Static Pages Styles
   ============================================================ */

.static-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #FAF3E1 0%, #F5E7C6 50%, #FAF3E1 100%);
    padding: 100px 20px 40px;
}

.static-container {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #777;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    transition: all 0.2s;
    padding: 6px 12px;
    border-radius: 50px;
}
.back-link:hover { color: #222; background: rgba(0,0,0,0.03); }

.static-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.static-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #222;
    margin: 0 0 6px;
}

.static-subtitle {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 32px;
}

.static-section {
    margin-bottom: 28px;
}

.static-section:last-child { margin-bottom: 0; }

.static-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #F0EBE0;
}

.static-section p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.8;
    margin: 0 0 12px;
}

.static-section ul,
.static-section ol {
    padding-left: 20px;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.static-section li {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.7;
}

.static-section a {
    color: #8B6F4E;
    text-decoration: underline;
    font-weight: 500;
}
.static-section a:hover { color: #222; }

/* Footer */
.static-footer {
    position: relative;
    padding: 40px 20px 24px;
    text-align: center;
    overflow: hidden;
    background: transparent;
}
.static-footer .footer-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 900;
    color: #222;
    opacity: 0.018;
    white-space: nowrap;
    pointer-events: none;
    width: 100%;
    z-index: 0;
}
.static-footer-inner { position: relative; z-index: 1; }
.footer-logo-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #222;
    text-decoration: none;
    letter-spacing: 2px;
}
.footer-tagline { font-size: 0.78rem; color: #888; margin: 4px 0 12px; }
.footer-links-row {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; flex-wrap: wrap; margin-bottom: 8px;
}
.footer-links-row a {
    text-decoration: none; color: #555;
    font-size: 0.82rem; font-weight: 500;
    transition: color 0.2s;
}
.footer-links-row a:hover { color: #222; }
.footer-dot { color: #CCC; font-size: 0.7rem; }
.footer-copy-text { font-size: 0.72rem; color: #AAA; margin: 0; }

/* Responsive */
@media (max-width: 768px) {
    .static-page { padding: 90px 12px 30px; }
    .static-card { padding: 24px 18px; border-radius: 16px; }
    .static-title { font-size: 1.6rem; }
    .static-section h2 { font-size: 1rem; }
    .static-section p, .static-section li { font-size: 0.82rem; }
}
@media (max-width: 480px) {
    .static-page { padding: 80px 8px 20px; }
    .static-card { padding: 20px 14px; border-radius: 14px; }
    .static-title { font-size: 1.4rem; }
}

/* ─── Blog Slider Fade (for Contact & Static Pages) ─── */
.contact-blog-section .slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}

.contact-blog-section .slider-wrapper::before,
.contact-blog-section .slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.contact-blog-section .slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(250,243,225,1), transparent);
}

.contact-blog-section .slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(250,243,225,1), transparent);
}

@media (max-width: 768px) {
    .contact-blog-section .slider-wrapper::before,
    .contact-blog-section .slider-wrapper::after {
        width: 60px;
    }
}