/*
 * DESIGN TOKENS
 *
 */
:root {
    --color-bg:         #FFFFFF;
    --color-bg-warm:    #F6F3EE;
    --color-text:       #1B1A17;
    --color-text-muted: #6B6862;
    --color-accent:     #A8471F;
    --color-accent-dark:#832F0E;
    --color-border:     #E4E0D7;
    --color-dark-bg:    #1B1A17;
    --color-dark-text:  #F6F3EE;
    --color-dark-muted: #A7A39A;

    --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent:  'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --measure: 640px;
}

/*
 * BASE
 *
 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}
@media only screen and (min-width : 992px) {
    html {
        scroll-padding-top: 130px;
    }
}
* {
    box-sizing: border-box;
}
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}
a {
    color: var(--color-text);
    text-decoration: none;
}
a:focus,
a:hover {
    color: var(--color-accent);
}
::selection {
    background: var(--color-accent);
    color: #fff;
}
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}
img { max-width: 100%; }

/* Container / measure */
.container-edit {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
@media only screen and (min-width : 768px) {
    .container-edit {
        padding-left: 56px;
        padding-right: 56px;
    }
}
.measure {
    max-width: var(--measure);
}
.measure-wide {
    max-width: 760px;
}

.two-col-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media only screen and (min-width : 768px) {
    .two-col-block {
        grid-template-columns: minmax(0, 340px) 1fr;
        gap: 3rem;
        align-items: start;
    }
    .two-col-block .h2 {
        margin-bottom: 0;
    }
    .two-col-block--even {
        grid-template-columns: 1fr 1fr;
    }
}

/*
 * TYPOGRAPHY
 *
 */
h1, h2, h3, h4 {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: 0;
}
p {
    margin: 0 0 1.25em;
}
p:last-child { margin-bottom: 0; }

.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.9rem;
}

.h1 {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width : 768px) {
    .h1 { font-size: 68px; }
}
@media only screen and (min-width : 1200px) {
    .h1 { font-size: 92px; }
}

.h2 {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width : 992px) {
    .h2 { font-size: 44px; }
}

.body-copy {
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-text);
}
@media only screen and (min-width : 992px) {
    .body-copy { font-size: 19px; }
}
.body-copy p + p { margin-top: 1.25em; }
.body-copy strong { font-weight: 700; }

.body-lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--color-text-muted);
}
@media only screen and (min-width : 992px) {
    .body-lead { font-size: 22px; }
}

/* Accent typeface usage — logo, nav, footer only */
.font-accent {
    font-family: var(--font-accent);
}

/* Section rhythm */
.section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}
@media only screen and (min-width : 992px) {
    .section {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}
.section-warm {
    background-color: var(--color-bg-warm);
}
.section-rule {
    border-top: 1px solid var(--color-border);
}

/* Nav-linked sections need extra top clearance below fixed nav */
#why-you-need-me,
#how-i-work,
#what-do-you-need,
#who-ive-worked-with,
#lets-talk {
    scroll-margin-top: 110px;
}

/*
 * HEADER / NAV
 *
 */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--color-border);
}
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 22px;
}
.site-logo {
    display: inline-block;
    line-height: 0;
}
.site-logo img {
    height: 40px;
    width: auto;
    display: block;
}
.site-logo:hover {
    opacity: 0.85;
}

.nav-links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem;
}
@media only screen and (min-width : 992px) {
    .nav-links {
        display: flex;
    }
}
.nav-links a {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text);
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}
.nav-links a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
@media only screen and (min-width : 992px) {
    .nav-toggle { display: none; }
}
.nav-toggle span {
    display: block;
    height: 1px;
    background-color: var(--color-text);
    width: 100%;
}
.nav-mobile {
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
}
.nav-mobile.is-open {
    display: flex;
}
.nav-mobile a {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

/*
 * HERO
 *
 */
.hero {
    padding-top: 150px;
    padding-bottom: 4.5rem;
}
@media only screen and (min-width : 992px) {
    .hero {
        padding-top: 210px;
        padding-bottom: 6rem;
    }
}
.hero .eyebrow {
    margin-bottom: 1.1rem;
}
.hero-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 560px;
}
@media only screen and (min-width : 992px) {
    .hero-intro { font-size: 20px; }
}

/*
 * BUTTONS
 *
 */
.btn-accent {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--color-accent);
    padding: 0.95rem 2rem;
    border-radius: 3px;
    border: 1px solid var(--color-accent);
}
.btn-accent:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
}
.btn-outline {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-text);
    background-color: transparent;
    padding: 0.95rem 2rem;
    border-radius: 3px;
    border: 1px solid var(--color-text);
}
.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/*
 * LISTS (replaces card/icon components)
 *
 */
.edit-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.edit-list li {
    padding: 1.4rem 0;
    border-top: 1px solid var(--color-border);
    font-size: 17px;
    line-height: 1.6;
}
.edit-list li:last-child {
    border-bottom: 1px solid var(--color-border);
}
@media only screen and (min-width : 992px) {
    .edit-list li { font-size: 19px; }
}

.two-col-list {
    columns: 1;
    column-gap: 3rem;
}
@media only screen and (min-width : 768px) {
    .two-col-list { columns: 2; }
}
.two-col-list li {
    break-inside: avoid;
}

/* Question / answer rows (What do you need help with?) */
.qa-rows {
    list-style: none;
    margin: 0;
    padding: 0;
}
.qa-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.75rem 0;
    border-top: 1px solid var(--color-border);
}
.qa-rows li:last-child {
    border-bottom: 1px solid var(--color-border);
}
.qa-row__q {
    font-weight: 700;
    font-size: 17px;
    line-height: 1.5;
    color: var(--color-text);
}
.qa-row__arrow {
    display: none;
    color: var(--color-accent);
    font-weight: 700;
    text-align: center;
}
.qa-row__a {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    color: var(--color-text-muted);
}
@media only screen and (min-width : 768px) {
    .qa-row {
        grid-template-columns: 1fr 32px 1fr;
        align-items: center;
        gap: 1.5rem;
    }
    .qa-row__arrow {
        display: block;
    }
    .qa-row__q,
    .qa-row__a {
        font-size: 18px;
    }
}
@media only screen and (min-width : 992px) {
    .qa-row__q,
    .qa-row__a {
        font-size: 19px;
    }
}

/* Numbered service list (Why you might need my help) */
.numbered-list li {
    display: flex;
    gap: 1.1rem;
    align-items: baseline;
}
.numbered-list__num {
    font-weight: 800;
    font-size: 14px;
    color: var(--color-accent);
    flex-shrink: 0;
    width: 24px;
}

/*
 * TESTIMONIAL STRIP
 *
 */
.testimonial-strip {
    padding: 3.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    background-color: var(--color-bg-warm);
}
.testimonial-strip--white {
    background-color: var(--color-bg);
}
@media only screen and (min-width : 992px) {
    .testimonial-strip { padding: 5rem 0; }
}
.testimonial-strip__mark {
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.5rem;
}
.testimonial-strip__quote {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.01em;
    max-width: 720px;
    margin: 0 auto 1.25rem;
}
@media only screen and (min-width : 992px) {
    .testimonial-strip__quote { font-size: 30px; }
}
.testimonial-strip__author {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/*
 * CLIENT LOGOS STRIP
 *
 */
.logos-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
    align-items: center;
}
@media only screen and (min-width : 768px) {
    .logos-strip {
        grid-template-columns: repeat(5, 1fr);
    }
}
.logos-strip img {
    height: auto;
    max-height: 40px;
    width: auto;
    max-width: 100%;
}

/*
 * CONTACT
 *
 */
.contact-info {
    display: none;
    font-size: 17px;
    flex-direction: column;
    gap: 0.6rem;
}
@media only screen and (min-width : 768px) {
    .contact-info {
        display: flex;
    }
}
.contact-info a,
.contact-info__item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid transparent;
    color: var(--color-text);
}
.contact-info a:hover {
    border-bottom-color: var(--color-accent);
    color: var(--color-accent);
}
.contact-info svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 2rem;
}
@media only screen and (min-width : 768px) {
    .contact-actions {
        display: none;
    }
}

/*
 * FOOTER
 *
 */
.site-footer {
    background-color: var(--color-dark-bg);
    padding: 3.5rem 0 2.5rem;
}
.site-footer__top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(246,243,238,0.14);
}
@media only screen and (min-width : 768px) {
    .site-footer__top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.site-footer .site-logo img {
    height: 34px;
}
.site-footer__top .btn-accent {
    align-self: flex-start;
}
.site-footer__fine {
    padding-top: 2rem;
}
.site-footer__headline {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--color-dark-text);
    max-width: 640px;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width : 992px) {
    .site-footer__headline {
        font-size: 24px;
    }
}
.site-footer__disclaimer {
    font-family: var(--font-accent);
    font-size: 12px;
    line-height: 1.7;
    color: var(--color-dark-muted);
    margin-bottom: 0;
}
