/* 2026 FORERUNNER STYLESHEET */

:root {
    --bg: #f0ede6;        /* Deep Parchment */
    --card: #ffffff;      /* Pure White */
    --accent: #b08d57;    /* Deep Tan */
    --text: #1a1512;      /* Espresso Black */
    --dim: #5c544e;       /* Stone Grey */
    --border: rgba(26, 21, 18, 0.15);
}

* { box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    line-height: 1.4;
    font-size: 22px;
}

/* NEW BACKGROUND WRAP */
.header-visual-wrap {
    /* Calls your new image */
    background-image: url('header-bg.png'); 
    background-size: cover;
    background-position: center top;
    /* Static effect provides depth on scroll */
    background-attachment: fixed;
    border-bottom: 2px solid var(--border);
}

/* NAVIGATION */
nav {
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 22px; font-weight: 900; letter-spacing: 2px; text-decoration: none; color: var(--text); }
.nav-links a { color: var(--text); text-decoration: none; font-weight: 700; margin-left: 30px; font-size: 18px; }

/* HERO */
.hero { padding: 120px 5%; text-align: center; }
h1 { font-size: clamp(50px, 12vw, 110px); font-weight: 900; line-height: 0.85; margin: 0; letter-spacing: -4px; text-transform: uppercase; }
.highlight { color: var(--accent); }
.sub-hero { font-size: clamp(24px, 4vw, 32px); color: var(--text); max-width: 800px; margin: 40px auto; font-weight: 700; text-shadow: 0 0 10px rgba(255,255,255,0.8); }

/* BENTO GRID */
.container { max-width: 1400px; margin: auto; padding: 100px 5%; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 380px; gap: 30px; }

.item {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 45px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    transition: 0.4s ease;
}

.item:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 30px 60px rgba(45, 36, 30, 0.1); }

.wide { grid-column: span 2; }
.tall { grid-row: span 2; }
.num { position: absolute; top: 40px; right: 40px; font-weight: 900; color: var(--accent); }

/* CONTENT */
h2 { font-size: 45px; margin: 0 0 15px 0; text-transform: uppercase; letter-spacing: -2px; }
p { font-size: 20px; color: var(--dim); font-weight: 600; margin: 0; }

/* BUTTONS */
.btn {
    display: inline-block;
    background: var(--text);
    color: var(--bg);
    padding: 24px 50px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    margin-top: 20px;
}

.btn-alt {
    display: inline-block;
    background: var(--accent);
    color: var(--text);
    padding: 24px 50px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
}

/* TESTIMONIAL */
.testimonial { background: var(--accent); color: var(--text); justify-content: center; }
blockquote { font-size: 34px; font-weight: 900; border-left: 10px solid var(--text); padding-left: 30px; margin: 0; }
.cite { margin-top: 25px !important; text-transform: uppercase; color: var(--text) !important; }

/* FOOTER */
.cta-box { grid-column: span 3; background: var(--text); color: var(--bg); text-align: center; justify-content: center; align-items: center; }
footer { padding: 80px; text-align: center; opacity: 0.6; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; }

/* MOBILE */
@media (max-width: 1000px) {
    .header-visual-wrap { background-attachment: scroll; }
    .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .wide, .tall, .cta-box { grid-column: span 1; }
    .item { min-height: 350px; }
}