/*
 Theme Name: Lincoln Forbes Landing
 Theme URI: https://lincoln-forbes.com
 Description: Custom single-page landing theme with a full-width header image.
 Author: Michael T. Ruhlman & ChatGPT
 Version: 1.1
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: lincoln-forbes-landing
*/

:root {
    --lf-primary: #0b1f33;      /* Deep navy */
    --lf-primary-dark: #050c14;
    --lf-accent: #c89b3c;       /* Gold accent */
    --lf-accent-soft: #e2c787;
    --lf-bg: #f5f5f7;
    --lf-text: #222222;
    --lf-muted: #6b7280;
    --lf-border: #e5e7eb;
    --lf-radius-lg: 18px;
    --lf-radius-md: 10px;
    --lf-radius-sm: 6px;
    --lf-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
    --lf-shadow-subtle: 0 6px 20px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    background-color: var(--lf-bg);
    color: var(--lf-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--lf-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.lf-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.75rem;
}

/* HEADER BANNER */

.lf-header {
    background-color: #050c14;
}

.lf-header-banner {
    position: relative;
    min-height: 320px;
    max-height: 480px;
    overflow: hidden;
}

.lf-header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(8%) saturate(1.1);
    transform: scale(1.03);
}

.lf-header-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(200,155,60,0.30), transparent 60%),
        linear-gradient(to bottom, rgba(5,10,20,0.10), rgba(5,10,20,0.92));
}

.lf-header-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.6rem 0 2.3rem;
}

.lf-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.site-branding {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-title a {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f9fafb;
}

.site-tagline {
    font-size: 0.8rem;
    color: rgba(249, 250, 251, 0.82);
}

.lf-header-bottom {
    max-width: 640px;
}

.lf-header-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(243,244,246,0.9);
    margin-bottom: 0.5rem;
}

.lf-header-title {
    font-size: clamp(2.1rem, 3.1vw, 2.7rem);
    line-height: 1.08;
    color: #f9fafb;
    margin: 0 0 0.4rem;
}

.lf-header-title span {
    color: var(--lf-accent-soft);
}

.lf-header-subtitle {
    font-size: 0.95rem;
    max-width: 34rem;
    color: rgba(229,231,235,0.92);
}

.site-header-cta {
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 250, 251, 0.75);
    background: rgba(15, 23, 42, 0.7);
    color: #f9fafb;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Ensure header is static (not overlaying) */
.site-header {
    position: relative;
    padding: 0;
    background: none;
}

/* SECTIONS */

.lf-section {
    padding: 3.5rem 0;
}

.lf-section-muted {
    background: #ffffff;
}

.lf-section-header {
    max-width: 620px;
    margin-bottom: 2.4rem;
}

.lf-section-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lf-muted);
    margin-bottom: 0.4rem;
}

.lf-section-title {
    font-size: 1.7rem;
    margin: 0 0 0.4rem;
}

.lf-section-subtitle {
    font-size: 0.95rem;
    color: var(--lf-muted);
}

.lf-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.lf-feature {
    background: #ffffff;
    border-radius: var(--lf-radius-md);
    padding: 1.5rem 1.35rem;
    border: 1px solid var(--lf-border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.lf-feature-label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lf-muted);
    margin-bottom: 0.5rem;
}

.lf-feature-title {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.lf-feature-text {
    font-size: 0.9rem;
    color: #4b5563;
}

.lf-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.2rem;
    align-items: flex-start;
}

.lf-card {
    background: #ffffff;
    border-radius: var(--lf-radius-lg);
    padding: 1.7rem 1.6rem;
    border: 1px solid var(--lf-border);
    box-shadow: var(--lf-shadow-subtle);
}

.lf-fact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lf-fact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--lf-border);
    font-size: 0.9rem;
}

.lf-fact-list li:last-child {
    border-bottom: none;
}

.lf-fact-label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lf-muted);
}

.lf-fact-value {
    font-weight: 600;
}

/* CONTACT / FOOTER */

.lf-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2rem;
}

.lf-contact-card {
    background: #111827;
    border-radius: var(--lf-radius-lg);
    padding: 1.75rem 1.7rem;
    border: 1px solid #1f2937;
    color: #e5e7eb;
    box-shadow: var(--lf-shadow-soft);
}

.lf-contact-card h3 {
    margin-top: 0;
}

.lf-contact-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 1.2rem;
    font-size: 0.88rem;
}

.lf-contact-meta-label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.2rem;
}

.lf-contact-form {
    display: grid;
    gap: 0.85rem;
}

.lf-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.lf-field label {
    font-weight: 500;
}

.lf-field input,
.lf-field textarea {
    border-radius: 999px;
    border: 1px solid var(--lf-border);
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
}

.lf-field textarea {
    border-radius: 16px;
    min-height: 130px;
    resize: vertical;
}

.lf-field input:focus,
.lf-field textarea:focus {
    border-color: var(--lf-accent);
    box-shadow: 0 0 0 1px rgba(200, 155, 60, 0.35);
}

.lf-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, var(--lf-accent), var(--lf-accent-soft));
    color: #111827;
    box-shadow: var(--lf-shadow-soft);
}

.lf-footer {
    border-top: 1px solid #1f2937;
    padding: 1.4rem 0 1.8rem;
    margin-top: 3rem;
    font-size: 0.78rem;
    color: #9ca3af;
}

.lf-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* RESPONSIVE */

@media (max-width: 960px) {
    .lf-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lf-two-column,
    .lf-contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .lf-header-inner {
        padding: 1.2rem 0 1.8rem;
    }
    .lf-header-title {
        font-size: 1.9rem;
    }
    .lf-header-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .lf-feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .lf-container {
        padding: 0 1.1rem;
    }
}
