/* Ashlee Hooghiem — Education Consultant
   Brand: Navy #0F1E36 · Slate #1D3557 · Warm Cream #FDFBF7/#F4EFE6 · Warm Gold #C5A059
   Voice: authoritative, elegant, unhurried. Built for school-board readers,
   not startup hype. Serif display + clean sans, generous whitespace. */

:root {
    --navy: #0F1E36;
    --slate: #1D3557;
    --cream: #FDFBF7;
    --cream-2: #F4EFE6;
    --gold: #C5A059;
    --gold-deep: #A9853F;
    --ink: #1A2230;
    --muted: #5C6675;
    --line: #E4DDD0;
    --white: #FFFFFF;
    --shadow: 0 1px 2px rgba(15, 30, 54, .04), 0 12px 32px rgba(15, 30, 54, .06);
    --shadow-lg: 0 20px 60px rgba(15, 30, 54, .12);
    --radius: 14px;
    --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
    --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --wrap: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin: 0 0 .5em;
}

h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--navy); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; }

.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--gold-deep);
    margin-bottom: 1rem;
}

/* ---------- buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    padding: 15px 32px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 6px 18px rgba(197,160,89,.28); }
.btn-gold:hover { background: var(--gold-deep); color: var(--white); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--slate); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ---------- header / nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(15,30,54,.98);
    backdrop-filter: saturate(140%) blur(6px);
    border-bottom: 1px solid rgba(197,160,89,.22);
}
.nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 28px; max-width: var(--wrap); margin: 0 auto;
}
.brand { display: flex; align-items: center; }
.brand-logo { display: block; height: 54px; width: auto; }
.brand-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--white); letter-spacing: .01em; }
.brand-sub { font-size: .64rem; text-transform: uppercase; letter-spacing: .26em; color: var(--gold); margin-top: 3px; }
@media (max-width: 900px) { .brand-logo { height: 46px; } }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
    color: #C4CBD6; font-size: .92rem; font-weight: 500; position: relative;
    padding: 4px 0; transition: color .15s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
    height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ---------- hero ---------- */
.hero {
    background:
        radial-gradient(1100px 500px at 78% -10%, rgba(197,160,89,.10), transparent 60%),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    border-bottom: 1px solid var(--line);
}
.hero-inner { padding: 92px 0 84px; max-width: 880px; }
.hero h1 { margin-bottom: .35em; }
.hero-lede { font-size: 1.22rem; color: var(--muted); max-width: 680px; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 60px 0; }
.section.alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.navy { background: var(--navy); }
.section.navy h1, .section.navy h2, .section.navy h3 { color: var(--white); }
.section.navy p { color: #C6CDD8; }
.section-head { max-width: 720px; margin-bottom: 48px; }

/* ---------- feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(197,160,89,.4); }
.card h3 { margin-bottom: .5em; }
.card p { color: var(--muted); font-size: .98rem; }
.card .card-link { display: inline-block; margin-top: 8px; font-weight: 600; font-size: .92rem; color: var(--gold-deep); }
.card .card-link:hover { color: var(--navy); }
.card-icon {
    width: 46px; height: 46px; border-radius: 10px; margin-bottom: 18px;
    background: linear-gradient(135deg, var(--cream-2), #EDE4D2);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 1.3rem; color: var(--gold-deep);
}

/* ---------- two-column content ---------- */
.split { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
.split.wide { grid-template-columns: 1fr 1fr; }

.profile-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px; box-shadow: var(--shadow); text-align: center; position: sticky; top: 100px;
}
.headshot {
    width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--slate), var(--navy));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: var(--serif); font-size: 2.6rem; border: 3px solid var(--gold);
}
.profile-card .name { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); }
.profile-card .role { color: var(--gold-deep); font-size: .9rem; font-weight: 600; margin-bottom: 18px; }
.cred-list { list-style: none; padding: 0; margin: 18px 0 0; text-align: left; }
.cred-list li { padding: 9px 0 9px 26px; border-top: 1px solid var(--line); font-size: .93rem; color: var(--ink); position: relative; }
.cred-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .8rem; top: 11px; }

.rich h2 { margin-top: 0; }
.rich h3 { color: var(--slate); margin-top: 1.6em; }
/* Arrow bullets apply to prose lists only — never the numbered workflow list,
   which lives inside .rich and would otherwise inherit the arrow. */
.rich ul:not(.workflow) { padding-left: 0; list-style: none; }
.rich ul:not(.workflow) li { position: relative; padding: 6px 0 6px 30px; }
.rich ul:not(.workflow) li::before { content: "→"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.rich ol { padding-left: 20px; }
.rich ol li { padding: 4px 0; }
.rich strong { color: var(--navy); }

/* ---------- offering panels ---------- */
.panel {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 40px; box-shadow: var(--shadow);
}
.panel .kicker { font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-deep); font-weight: 700; }
.meta-row { display: flex; gap: 28px; flex-wrap: wrap; margin: 14px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.meta-row .meta-item .label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.meta-row .meta-item .value { font-weight: 600; color: var(--navy); }

/* ---------- contact ---------- */
.form { display: grid; gap: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 6px; }
.field .req { color: var(--gold-deep); }
/* Full-width styling is for text-like inputs only. Checkboxes/radios must keep
   their native size — the earlier broad rule stretched them full-width. */
.field input:not([type=checkbox]):not([type=radio]), .field textarea, .field select {
    width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px;
    font-family: var(--sans); font-size: 1rem; background: var(--white); color: var(--ink);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:not([type=checkbox]):not([type=radio]):focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,160,89,.15);
}
.checks { display: flex; gap: 22px; flex-wrap: wrap; }
.checks label { display: flex; gap: 9px; align-items: center; font-weight: 500; font-size: .95rem; white-space: nowrap; }
.checks input[type=checkbox] { width: 18px; height: 18px; flex: none; margin: 0; accent-color: var(--gold-deep); }
.workflow { list-style: none; padding: 0; counter-reset: step; }
.workflow li { position: relative; padding: 14px 0 14px 52px; border-top: 1px solid var(--line); }
.workflow li::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 0; top: 14px; width: 34px; height: 34px; border-radius: 50%;
    background: var(--navy); color: var(--gold); font-family: var(--serif); font-weight: 600;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.workflow li strong { display: block; color: var(--navy); }
.direct { background: var(--cream-2); border-radius: var(--radius); padding: 24px; margin-top: 26px; border: 1px solid var(--line); }
.notice { padding: 16px 20px; border-radius: 8px; background: #EAF6EC; border: 1px solid #BFE3C6; color: #256B33; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #AEB7C4; padding: 56px 0 34px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.site-footer .brand-name { color: var(--white); }
.site-footer a { color: #C9D1DC; }
.site-footer a:hover { color: var(--gold); }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-base { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); font-size: .82rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
    .cards { grid-template-columns: 1fr; }
    .split, .split.wide { grid-template-columns: 1fr; gap: 34px; }
    .profile-card { position: static; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 0; background: var(--navy); padding: 10px 28px 20px;
        border-bottom: 1px solid rgba(197,160,89,.22);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.06); }
    .nav-toggle { display: block; }
    .hero-inner { padding: 64px 0 56px; }
    .section { padding: 60px 0; }
}
