:root {
    --navy: #2C4A6E;
    --steel: #4A7DAD;
    --bronze: #8B6F47;
    --sand: #D4C5A9;
    --warm-white: #F7F5F0;
    --dark-text: #3A3A38;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    font-size: 16px;
}

/* NAV */
nav {
    background: var(--navy);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-decoration: none;
}

.logo-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--warm-white);
}

.logo-descriptor {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--sand);
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav a.nav-link {
    color: var(--sand);
    text-decoration: none;
    font-size: 14px;
    margin-left: 32px;
    transition: color 0.2s;
}

nav a.nav-link:hover {
    color: var(--warm-white);
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HERO */
.hero {
    background: var(--navy);
    padding: 80px 0 90px;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--warm-white);
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    color: var(--sand);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero .cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--bronze);
    color: var(--warm-white);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #7A6240;
}

.btn-secondary {
    display: inline-block;
    border: 1px solid var(--sand);
    color: var(--sand);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--warm-white);
    color: var(--warm-white);
}

/* SECTIONS */
section {
    padding: 72px 0;
}

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

section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

section h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    margin-top: 32px;
}

section p {
    margin-bottom: 16px;
    max-width: 720px;
}

/* FEATURES GRID */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.feature {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 6px;
}

section.alt .feature {
    background: var(--white);
}

.feature h4 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
    color: #5A5A58;
    margin-bottom: 0;
}

/* WHO ITS FOR */
.audience-list {
    list-style: none;
    margin-top: 20px;
}

.audience-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--sand);
    font-size: 15px;
}

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

.audience-list strong {
    color: var(--navy);
}

/* METHODOLOGY PAGE */
.method-section {
    margin-bottom: 48px;
}

.method-section h3 {
    margin-top: 0;
}

.method-section p {
    font-size: 15px;
}

/* ENGAGEMENT PHASES */
.phases {
    margin-top: 24px;
}

.phase {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--sand);
}

.phase:last-child {
    border-bottom: none;
}

.phase-label {
    flex-shrink: 0;
    width: 140px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.phase-desc {
    font-size: 14px;
    color: #5A5A58;
}

.phase-time {
    flex-shrink: 0;
    width: 100px;
    font-size: 13px;
    color: var(--bronze);
    text-align: right;
}

/* CONTACT */
.contact-section {
    background: var(--navy);
    padding: 72px 0;
}

.contact-section h2 {
    color: var(--warm-white);
    margin-bottom: 12px;
}

.contact-section p {
    color: var(--sand);
    margin-bottom: 32px;
}

.contact-form {
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 197, 169, 0.3);
    border-radius: 4px;
    color: var(--warm-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(212, 197, 169, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sand);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: var(--bronze);
    color: var(--warm-white);
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #7A6240;
}

.contact-fallback {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(212, 197, 169, 0.6);
}

.contact-fallback a {
    color: var(--sand);
}

/* FOOTER */
footer {
    background: #243D5A;
    padding: 32px 0;
    text-align: center;
}

footer p {
    font-size: 13px;
    color: rgba(212, 197, 169, 0.5);
    margin-bottom: 0;
}

/* ABOUT */
.about-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 8px;
}

.headshot {
    width: 160px;
    height: 160px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--sand);
}

/* DIVIDER */
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--bronze);
    margin-bottom: 24px;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
    }

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

    .phase {
        flex-direction: column;
        gap: 4px;
    }

    .phase-label {
        width: auto;
    }

    .phase-time {
        width: auto;
        text-align: left;
    }

    nav .container {
        flex-direction: column;
        gap: 12px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
