﻿/* ============================================
   SellingMy.Land — Public Stylesheet
   Mobile-first responsive design
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2D5F2D;
    --secondary: #4A5568;
    --accent: #D4A843;
    --bg: #FAFAF8;
    --text: #1A1A2E;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
    --transition: .2s ease;
    --heading-font: 'Playfair Display', Georgia, serif;
    --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

    a:hover {
        color: var(--accent);
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    padding: 4rem 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: .6rem 1.25rem;
    font-size: .9rem;
    font-weight: 600;
    font-family: var(--body-font);
    border-radius: var(--radius);
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
}

    .btn:hover {
        border-color: var(--secondary);
        color: var(--secondary);
    }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

    .btn-primary:hover {
        background: #245024;
        border-color: #245024;
        color: var(--white);
    }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: var(--white);
    }

.btn-lg {
    padding: .8rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: .35rem .75rem;
    font-size: .8rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- Header / Navbar --- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}

    .nav-brand a:hover {
        color: var(--primary);
    }

.nav-links {
    display: none;
    list-style: none;
    gap: .25rem;
}

    .nav-links a {
        display: block;
        padding: .5rem .85rem;
        font-size: .95rem;
        font-weight: 500;
        color: var(--secondary);
        border-radius: var(--radius);
        transition: all var(--transition);
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
            background: rgba(45,95,45,.06);
        }

.nav-cta {
    display: none;
}

    .nav-cta a {
        white-space: nowrap;
    }

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text);
}

/* Mobile nav open */
.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: .5rem 1rem 1rem;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .site-header .nav-container {
        position: relative;
    }
}

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3d1a 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .highlight {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

    .hero-cta .btn-outline {
        color: var(--white);
        border-color: rgba(255,255,255,.5);
    }

        .hero-cta .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
            border-color: var(--white);
        }

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

        .hero h1 {
            font-size: 3.25rem;
        }
}

/* --- Value Props --- */
.value-props {
    padding: 3.5rem 0;
    background: var(--white);
}

.props-grid {
    display: grid;
    gap: 2rem;
}

.prop-card {
    text-align: center;
    padding: 1.5rem;
}

.prop-icon {
    font-size: 2.5rem;
    margin-bottom: .75rem;
}

.prop-card h3 {
    margin-bottom: .5rem;
}

.prop-card p {
    color: var(--text-muted);
    font-size: .95rem;
}

@media (min-width: 768px) {
    .props-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Section Headers --- */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* --- Page Header --- */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3d1a 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

    .page-header h1 {
        color: var(--white);
        margin-bottom: .5rem;
    }

    .page-header p {
        color: rgba(255,255,255,.8);
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* --- Property Grid --- */
.property-grid {
    display: grid;
    gap: 1.5rem;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

    .property-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .property-card a {
        color: inherit;
    }

        .property-card a:hover {
            color: inherit;
        }

.property-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #e8e8e4;
}

    .property-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    background: linear-gradient(135deg, #e8e8e4, #d5d5cf);
}

    .placeholder-img.large {
        height: 400px;
        font-size: 5rem;
    }

.badge-financing {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--accent);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem .6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.property-info {
    padding: 1rem 1.25rem 1.25rem;
}

    .property-info h3 {
        font-size: 1.05rem;
        margin-bottom: .4rem;
    }

.property-meta {
    display: flex;
    gap: .75rem;
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: .6rem;
}

.property-price {
    display: flex;
    align-items: baseline;
    gap: .5rem;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: .9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

@media (min-width: 600px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .property-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Filter Bar --- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.filter-group select {
    padding: .5rem .75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .9rem;
    font-family: var(--body-font);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
}

.filter-count {
    margin-left: auto;
    font-size: .85rem;
    color: var(--text-muted);
}

/* --- Pagination --- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.page-info {
    font-size: .9rem;
    color: var(--text-muted);
}

/* --- Property Detail --- */
.property-detail {
    padding: 2rem 0 4rem;
}

.breadcrumb {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

    .breadcrumb a {
        color: var(--text-muted);
    }

        .breadcrumb a:hover {
            color: var(--primary);
        }

.detail-grid {
    display: grid;
    gap: 2rem;
}

.detail-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

    .detail-image img {
        width: 100%;
    }

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e53e3e;
    color: var(--white);
    font-size: .85rem;
    font-weight: 700;
    padding: .4rem .8rem;
    border-radius: var(--radius);
}

.detail-body h1 {
    margin-bottom: 1.5rem;
}

.detail-table {
    margin-bottom: 2rem;
}

    .detail-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .detail-table th,
    .detail-table td {
        padding: .65rem .85rem;
        border-bottom: 1px solid var(--border);
        text-align: left;
        font-size: .95rem;
    }

    .detail-table th {
        font-weight: 600;
        width: 40%;
        color: var(--secondary);
    }

.detail-description {
    line-height: 1.8;
}

    .detail-description h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

.price-box {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
    margin-bottom: .25rem;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--heading-font);
}

.price-original {
    font-size: .95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: .25rem;
}

.price-savings {
    font-size: .95rem;
    font-weight: 600;
    color: #e53e3e;
    margin-top: .15rem;
}

.financing-note {
    margin-top: .75rem;
    font-size: .85rem;
    padding: .5rem;
    background: #fffbe6;
    border-radius: var(--radius);
    color: #92600a;
}

.inquiry-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.5rem;
}

    .inquiry-box h3 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .inquiry-box .form-group {
        margin-bottom: .75rem;
    }

    .inquiry-box input,
    .inquiry-box textarea {
        width: 100%;
        padding: .6rem .75rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        font-size: .9rem;
        font-family: var(--body-font);
    }

        .inquiry-box input:focus,
        .inquiry-box textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(45,95,45,.1);
        }

.call-cta {
    text-align: center;
    margin-top: 1rem;
    font-size: .9rem;
    color: var(--text-muted);
}

    .call-cta a {
        font-weight: 700;
        color: var(--primary);
    }

@media (min-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr 360px;
    }
}

/* --- Blog Grid --- */
.blog-grid {
    display: grid;
    gap: 1.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

    .blog-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .blog-card a {
        color: inherit;
    }

        .blog-card a:hover {
            color: inherit;
        }

.blog-img {
    height: 180px;
    overflow: hidden;
}

    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog-card-body {
    padding: 1.25rem;
}

    .blog-card-body time {
        font-size: .8rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: .03em;
    }

    .blog-card-body h3 {
        margin: .4rem 0 .5rem;
        font-size: 1.1rem;
    }

    .blog-card-body p {
        color: var(--text-muted);
        font-size: .9rem;
        margin-bottom: .5rem;
    }

.read-more {
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
}

@media (min-width: 600px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Single Post --- */
.post-detail {
    padding: 2rem 0 4rem;
}

.post-grid {
    display: grid;
    gap: 2rem;
}

.post-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

    .post-hero-img img {
        width: 100%;
    }

.post-header {
    margin-bottom: 2rem;
}

    .post-header h1 {
        margin-bottom: .5rem;
    }

    .post-header time {
        font-size: .9rem;
        color: var(--text-muted);
    }

.post-content {
    line-height: 1.85;
    font-size: 1.05rem;
}

    .post-content h2 {
        margin: 2rem 0 1rem;
        font-size: 1.5rem;
    }

    .post-content h3 {
        margin: 1.5rem 0 .75rem;
        font-size: 1.2rem;
    }

    .post-content p {
        margin-bottom: 1.25rem;
    }

    .post-content a {
        color: var(--primary);
        text-decoration: underline;
    }

    .post-content strong {
        font-weight: 700;
    }

    .post-content em {
        font-style: italic;
    }

.post-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.post-sidebar {
}

.sidebar-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

    .sidebar-box h3 {
        font-size: 1.05rem;
        margin-bottom: .75rem;
    }

.sidebar-list {
    list-style: none;
}

    .sidebar-list li {
        padding: .5rem 0;
        border-bottom: 1px solid var(--border);
    }

        .sidebar-list li:last-child {
            border-bottom: none;
        }

    .sidebar-list a {
        font-size: .9rem;
        font-weight: 500;
    }

    .sidebar-list time {
        display: block;
        font-size: .78rem;
        color: var(--text-muted);
        margin-top: .15rem;
    }

.cta-box {
    background: linear-gradient(135deg, var(--primary), #1a3d1a);
    color: var(--white);
    border: none;
}

    .cta-box h3, .cta-box p {
        color: var(--white);
    }

    .cta-box p {
        font-size: .9rem;
        opacity: .9;
        margin-bottom: 1rem;
    }

    .cta-box .btn-primary {
        background: var(--accent);
        border-color: var(--accent);
        color: #1a1a1a;
    }

@media (min-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr 300px;
    }
}

/* --- About Page --- */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-story {
    margin-bottom: 3rem;
}

    .about-story h2 {
        margin-bottom: 1rem;
    }

    .about-story p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--secondary);
        margin-bottom: 1rem;
    }

.about-values {
    margin-bottom: 3rem;
}

    .about-values h2 {
        margin-bottom: 1.5rem;
    }

.values-grid {
    display: grid;
    gap: 1.25rem;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.value-card h3 {
    margin-bottom: .4rem;
    font-size: 1.05rem;
}

.value-card p {
    font-size: .9rem;
    color: var(--text-muted);
}

@media (min-width: 600px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-process {
    margin-bottom: 3rem;
}

    .about-process h2 {
        margin-bottom: 1.5rem;
        text-align: center;
    }

.process-steps {
    display: grid;
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: .75rem;
    font-family: var(--heading-font);
}

.process-step h3 {
    margin-bottom: .4rem;
}

.process-step p {
    font-size: .9rem;
    color: var(--text-muted);
    max-width: 320px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-cta {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

    .about-cta h2 {
        margin-bottom: .5rem;
    }

    .about-cta p {
        color: var(--text-muted);
        margin-bottom: 1.5rem;
    }

/* --- About Snippet (homepage) --- */
.about-snippet {
    background: var(--white);
}

.about-text {
    max-width: 700px;
}

    .about-text h2 {
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1.05rem;
        color: var(--secondary);
        line-height: 1.8;
        margin-bottom: 1.25rem;
    }

.check-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

    .check-list li {
        padding: .4rem 0 .4rem 1.75rem;
        position: relative;
        font-size: .95rem;
        color: var(--secondary);
    }

        .check-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3d1a 100%);
    color: var(--white);
    text-align: center;
    padding: 3.5rem 0;
}

    .cta-banner h2 {
        color: var(--white);
        margin-bottom: .5rem;
    }

    .cta-banner p {
        color: rgba(255,255,255,.8);
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
    }

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-form-wrap h2 {
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .3rem;
    color: var(--secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: .65rem .85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .95rem;
    font-family: var(--body-font);
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition);
}

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(45,95,45,.1);
    }

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 340px;
    }
}

.contact-info {
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

    .info-card h3 {
        font-size: 1rem;
        margin-bottom: .4rem;
    }

.info-link {
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    margin-bottom: .2rem;
}

.info-card p {
    font-size: .85rem;
    color: var(--text-muted);
}

.info-card address {
    font-style: normal;
    font-size: .9rem;
    color: var(--secondary);
    line-height: 1.6;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary), #1a3d1a);
    color: var(--white);
    border: none;
}

    .highlight-card h3, .highlight-card p {
        color: var(--white);
    }

/* --- Alerts --- */
.alert {
    padding: .85rem 1rem;
    border-radius: var(--radius);
    font-size: .9rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* --- Empty State --- */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

    .empty-state h2, .empty-state h3 {
        margin-bottom: .5rem;
    }

    .empty-state p {
        color: var(--text-muted);
    }

/* --- Footer --- */
.site-footer {
    background: #1a1a2e;
    color: rgba(255,255,255,.7);
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: .75rem;
    font-size: 1rem;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.6;
    margin-top: .5rem;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: .4rem;
    }

    .footer-links a {
        color: rgba(255,255,255,.6);
        font-size: .9rem;
    }

        .footer-links a:hover {
            color: var(--accent);
        }

.footer-contact p {
    font-size: .9rem;
    margin-bottom: .35rem;
}

.footer-contact a {
    color: rgba(255,255,255,.7);
}

    .footer-contact a:hover {
        color: var(--accent);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: .82rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* --- Featured Section --- */
.featured-section {
    background: var(--bg);
}

/* --- Blog Section (homepage) --- */
.blog-section {
    background: var(--white);
}

/* --- General form styling for public pages --- */
.form-group {
    margin-bottom: 1rem;
}

    .form-group small {
        display: block;
        margin-top: .25rem;
        font-size: .8rem;
        color: var(--text-muted);
    }
