/* Keith Ford — Amherstburg's Most Eligible Bachelor */
/* Warm golden retriever energy — inviting, friendly, premium */

:root {
    --gold: #d4a373;
    --gold-light: #fefae0;
    --cream: #faedcd;
    --warm-bg: #fefae0;
    --deep-warm: #ccd5ae;
    --dark-text: #2b2d42;
    --text-muted: #6c757d;
    --card-bg: #fff;
    --accent: #e9c46a;
    --accent-dark: #d4a373;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--warm-bg);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(160deg, #fefae0 0%, #faedcd 40%, #e9c46a 100%);
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 196, 106, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    background: var(--card-bg);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5em;
    color: var(--dark-text);
}

.hero h1 .highlight {
    display: block;
    background: linear-gradient(135deg, #d4a373, #8d6b47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ─── Section ─── */
.section {
    padding: 5rem 0;
}

.section-warm {
    background: var(--cream);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 0.75rem auto 1.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-style: italic;
}

/* ─── Traits Grid ─── */
.traits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.trait-card {
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(212, 163, 115, 0.15);
}

.trait-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 163, 115, 0.15);
}

.trait-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trait-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.trait-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── Testimonials ─── */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    border-left: 4px solid var(--gold);
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── Facts ─── */
.facts-grid {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(212, 163, 115, 0.12);
}

.fact-label {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.fact-value {
    color: var(--text-muted);
    text-align: right;
    font-size: 0.9rem;
    max-width: 60%;
}

/* ─── Contact ─── */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 2.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    text-decoration: none;
    color: var(--dark-text);
    min-width: 200px;
    transition: transform 0.2s, border-color 0.2s;
    border: 1px solid rgba(212, 163, 115, 0.15);
}

.contact-link:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.15);
}

.contact-link-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-link-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-link-value {
    font-weight: 600;
    margin-top: 0.25rem;
}

/* ─── Footer ─── */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(212, 163, 115, 0.2);
}

.footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-style: italic;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .fact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .fact-value {
        text-align: center;
        max-width: 100%;
    }

    .traits-grid {
        grid-template-columns: 1fr;
    }
}