/* WeFarm SA public landing — aligned with login screen atmosphere */

.landing-layout {
    --landing-ink: #f4f1ea;
    --landing-muted: rgba(244, 241, 234, 0.76);
    --landing-accent: #c9d9aa;
    --landing-btn: #1f6b45;
    --landing-btn-hover: #175536;
    --landing-panel: #121c16;
    --landing-panel-2: #1a2c22;
    --landing-border: rgba(229, 231, 235, 0.25);
    min-height: 100vh;
    background: var(--landing-panel);
    color: var(--landing-ink);
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.landing-page { min-height: 100vh; background: var(--landing-panel); }

/* ── Banner (hero + header) ── */
.landing-banner {
    position: relative;
    width: 100%;
    min-height: min(72vh, 640px);
    display: flex;
    flex-direction: column;
    background-color: #1a2c22;
    background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&w=2400&q=80');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    filter: none;
}

.landing-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center 40%;
    filter: saturate(0.88) contrast(1.05) brightness(1.06);
    z-index: 0;
}

.landing-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(12, 22, 16, 0.82) 0%, rgba(12, 22, 16, 0.58) 42%, rgba(12, 22, 16, 0.22) 68%, rgba(12, 22, 16, 0.08) 100%),
        linear-gradient(180deg, rgba(12, 22, 16, 0.26) 0%, transparent 30%, rgba(12, 22, 16, 0.58) 100%);
    pointer-events: none;
}

/* ── Header ── */
.landing-header {
    position: relative;
    z-index: 30;
    flex-shrink: 0;
}

.landing-header:has(.user-menu.is-open) {
    z-index: 100;
}

.landing-header-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .landing-header-inner { padding: 1.5rem 2.5rem; }
}

.landing-logo {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}

.landing-logo img {
    display: block;
    height: 3rem;
    width: auto;
    max-width: min(220px, 48vw);
    object-fit: contain;
    /* Light lockup sits on the dark hero; a soft shadow keeps the mark readable on the photo */
    filter: drop-shadow(0 1px 8px rgba(8, 16, 12, 0.45));
}

.landing-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.landing-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .landing-nav { display: flex; }
}

.landing-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.landing-nav-link:hover { opacity: 0.75; }

.landing-nav-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    opacity: 0.9;
}

.landing-auth-btns {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.landing-login-btn {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(229, 231, 235, 0.55);
    padding: 0.5rem 1.35rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    background: transparent;
}

.landing-login-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(229, 231, 235, 0.9);
}

.landing-signup-btn {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--landing-btn);
    border: 1px solid var(--landing-btn);
    padding: 0.5rem 1.35rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.landing-signup-btn:hover {
    background: var(--landing-btn-hover);
    border-color: var(--landing-btn-hover);
}

/* Solid header for light pages (e.g. /register) — same links as home */
.landing-header--solid {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.landing-header--solid .landing-logo img {
    mix-blend-mode: normal;
    filter: none;
}

.landing-header--solid .landing-nav-link {
    color: #334155;
}

.landing-header--solid .landing-nav-link:hover {
    opacity: 1;
    color: #059669;
}

.landing-header--solid .landing-login-btn {
    color: #0f172a;
    border-color: #cbd5e1;
}

.landing-header--solid .landing-login-btn:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

/* ── Hero ── */
.landing-hero {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
}

.landing-hero-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1.5rem 3.5rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .landing-hero-content { padding: 2.5rem 2.5rem 4rem; }
}

.landing-hero-copy { max-width: 38rem; }

.landing-hero-eyebrow {
    color: var(--landing-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin: 0 0 1rem;
}

.landing-hero-title {
    color: #fff;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(2.15rem, 5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
}

.landing-hero-subtitle {
    color: var(--landing-muted);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
    margin: 0 0 2rem;
    max-width: 32rem;
}

@media (min-width: 1024px) {
    .landing-hero-subtitle { font-size: 1.1rem; }
}

.landing-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .landing-hero-actions { flex-direction: row; flex-wrap: wrap; }
}

.landing-btn-primary {
    display: inline-block;
    background: var(--landing-btn);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85rem 1.65rem;
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: none;
    border: 1px solid var(--landing-btn);
    transition: background 0.2s;
    text-align: center;
}

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

.landing-btn-outline {
    display: inline-block;
    border: 1px solid rgba(229, 231, 235, 0.55);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85rem 1.65rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
    background: transparent;
}

.landing-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(229, 231, 235, 0.9);
}

/* ── Offer section ── */
.landing-offer {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3.25rem 1.5rem 3.5rem;
}

@media (min-width: 1024px) {
    .landing-offer { padding: 4rem 2.5rem; }
}

.landing-section-header {
    text-align: left;
    margin-bottom: 2rem;
    max-width: 40rem;
}

@media (min-width: 1024px) {
    .landing-section-header { margin-bottom: 2.5rem; }
}

.landing-section-eyebrow {
    color: var(--landing-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin: 0 0 0.75rem;
}

.landing-section-title {
    color: #fff;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
}

@media (min-width: 1024px) {
    .landing-section-title { font-size: 2.1rem; }
}

.landing-offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .landing-offer-grid { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
}

.landing-offer-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: 1px solid var(--landing-border);
    border-radius: 1.15rem;
    padding: 0.85rem;
    transition: border-color 0.2s, background 0.2s;
}

.landing-offer-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 231, 235, 0.45);
}

.landing-offer-card-image {
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-offer-card-image img {
    width: 100%;
    height: 11rem;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    filter: saturate(0.92) contrast(1.03);
}

.landing-offer-card:hover img { transform: scale(1.04); }

.landing-offer-card h3 {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    margin: 0 0 0.45rem;
}

.landing-offer-card p {
    color: var(--landing-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Agro-processing facilities showcase ── */
.landing-facilities {
    background: var(--landing-panel-2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-facilities-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
    .landing-facilities-inner { padding: 4rem 2.5rem; }
}

.landing-facilities-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.landing-facilities-title {
    color: #fff;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
}

@media (min-width: 1024px) {
    .landing-facilities-title { font-size: 2.1rem; }
}

.landing-facilities-lead {
    color: var(--landing-muted);
    margin: 0.5rem 0 0;
    max-width: 42rem;
    line-height: 1.6;
}

.landing-facilities-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--landing-btn);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.4rem;
    border-radius: 0.75rem;
    border: 1px solid var(--landing-btn);
    box-shadow: none;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}

.landing-facilities-cta:hover {
    background: var(--landing-btn-hover);
    border-color: var(--landing-btn-hover);
}

.landing-facilities-cta-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.landing-facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 1024px) {
    .landing-facilities-grid { grid-template-columns: repeat(4, 1fr); }
}

.landing-facility-tile {
    background: transparent;
    border: 1px solid var(--landing-border);
    border-radius: 1rem;
    padding: 1.25rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: block;
}

.landing-facility-tile:hover {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 231, 235, 0.45);
}

.landing-facility-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(196, 214, 165, 0.12);
    color: var(--landing-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: background 0.2s, color 0.2s;
}

.landing-facility-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.landing-facility-tile:hover .landing-facility-icon {
    background: var(--landing-btn);
    color: #fff;
}

.landing-facility-tile h3 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.landing-facility-tile p {
    color: var(--landing-muted);
    font-size: 0.78rem;
    margin: 0.25rem 0 0;
}

/* ── Profile gallery ── */
.landing-gallery {
    background: var(--landing-panel);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3.5rem 0;
}

@media (min-width: 1024px) {
    .landing-gallery { padding: 5rem 0; }
}

.landing-gallery-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .landing-gallery-inner { padding: 0 2.5rem; }
}

.landing-gallery-header { text-align: left; margin-bottom: 2.5rem; max-width: 40rem; }

.landing-gallery-eyebrow {
    color: var(--landing-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin: 0 0 0.75rem;
}

.landing-gallery-title {
    color: #fff;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

@media (min-width: 1024px) {
    .landing-gallery-title { font-size: 2.1rem; }
}

.landing-gallery-subtitle {
    color: var(--landing-muted);
    font-size: 0.9rem;
    max-width: 42rem;
    margin: 0;
    line-height: 1.6;
}

.landing-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .landing-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (min-width: 1100px) {
    .landing-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.landing-profile-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: transparent;
    border: 1px solid var(--landing-border);
    border-radius: 1.15rem;
    padding: 1.75rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    width: 100%;
    height: 100%;
    min-height: 0;
    font-family: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    outline: none;
}

.landing-profile-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 231, 235, 0.45);
}

.landing-profile-icon {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.landing-profile-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
    flex-shrink: 0;
}

.landing-profile-icon.farmer { background: var(--landing-btn); }
.landing-profile-icon.funder { background: #2a5a3f; }
.landing-profile-icon.govdept { background: #1a3326; }
.landing-profile-icon.implementer-p { background: #3d6b4a; }
.landing-profile-icon.implementer-pr { background: #254f38; }
.landing-profile-icon.supplier { background: #1f6b45; }

.landing-profile-card .landing-profile-title,
.landing-profile-card h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 0 0.35rem;
    width: 100%;
}

.landing-profile-card .landing-profile-subtitle {
    color: var(--landing-accent);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 0.65rem;
    width: 100%;
}

.landing-profile-card .landing-profile-description,
.landing-profile-card p:not(.landing-profile-subtitle) {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0 0 1.25rem;
    width: 100%;
    flex: 1;
}

.landing-profile-link {
    color: var(--landing-accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: auto;
    display: inline-block;
}

/* ── Preview modal ── */
.landing-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

@media (min-width: 640px) {
    .landing-modal-backdrop { padding: 1rem; }
}

.landing-modal {
    background: hsl(206, 47%, 91%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 640px) {
    .landing-modal {
        border-radius: 1rem;
        max-width: 72rem;
        max-height: 92vh;
        height: auto;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }
}

.landing-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--landing-panel);
    color: #fff;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .landing-modal-header { padding: 0.75rem 1.5rem; }
}

.landing-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.landing-modal-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-modal-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.landing-modal-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.landing-modal-register {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--landing-btn);
    text-decoration: none;
    transition: background 0.2s;
}

@media (min-width: 640px) {
    .landing-modal-register { display: inline-flex; }
}

.landing-modal-register:hover { background: var(--landing-btn-hover); }

.landing-modal-close {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.landing-modal-close:hover { background: rgba(255, 255, 255, 0.2); }

.landing-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

@media (min-width: 1024px) {
    .landing-modal-body { padding: 2rem; }
}

.landing-modal-mobile-cta {
    display: block;
    flex-shrink: 0;
    padding: 0.75rem;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
    .landing-modal-mobile-cta { display: none; }
}

.landing-modal-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--landing-btn);
    text-decoration: none;
}

/* ── Sample preview widgets ── */
.preview-hero {
    background: linear-gradient(135deg, #1f6b45, #13261c);
    border-radius: 10px;
    padding: 1.5rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.preview-hero h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.preview-hero p { margin: 0; opacity: 0.75; font-size: 0.875rem; }

.preview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
    .preview-stats { grid-template-columns: repeat(4, 1fr); }
}

.preview-stat {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.preview-stat label {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.preview-stat strong {
    font-size: 1.125rem;
    color: #0f172a;
}

.preview-panel {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}

.preview-panel h4 {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
}

.preview-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.875rem;
}

.preview-row:last-child { border-bottom: none; }

/* ── Site footer — React Footer.jsx parity ── */
.site-footer {
    background: #0e1812;
    color: rgba(244, 241, 234, 0.72);
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-footer-grid { grid-template-columns: 1.15fr 1.5fr 1fr; }
}

.site-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.site-footer-logo {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: var(--landing-btn, #1f6b45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.site-footer-brand strong { color: #fff; font-size: 0.875rem; display: block; }
.site-footer-brand span { color: rgba(244, 241, 234, 0.55); font-size: 0.75rem; }

.site-footer-desc {
    font-size: 0.75rem;
    color: rgba(244, 241, 234, 0.55);
    line-height: 1.6;
    margin: 0;
}

.site-footer h5 {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-links-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
}

.site-footer li { margin-bottom: 0; }

.site-footer a {
    color: rgba(244, 241, 234, 0.72);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer-links-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-footer-links-list .lucide-icon {
    color: var(--landing-accent, #c4d6a5);
    opacity: 0.85;
}

.site-footer-links-list a:hover .lucide-icon {
    opacity: 1;
}

.site-footer a:hover { color: var(--landing-accent, #c4d6a5); }

.site-footer-contact p {
    font-size: 0.75rem;
    color: rgba(244, 241, 234, 0.55);
    margin: 0 0 0.5rem;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: rgba(244, 241, 234, 0.45);
    text-align: center;
}

@media (min-width: 640px) {
    .site-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.site-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer-powered {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-footer-powered span { color: var(--landing-accent, #c4d6a5); }
