/* sections.css — section shells + hire landing zone */

.section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5vw;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-sub {
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Social proof — two-column list of shipped work */

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.proof-head {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.proof-list {
    list-style: none;
    color: var(--muted);
    font-size: 0.95rem;
}
.proof-list li {
    padding: 0.45rem 0 0.45rem 1.6rem;
    position: relative;
    line-height: 1.45;
}
.proof-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
}
.proof-list a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: color 0.2s, border-color 0.2s;
}
.proof-list a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Hire — landing pad. Text sits top and bottom; the fixed hire
   button flies into the empty center when this zone is reached. */

.hire {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 18vh 5vw;
}

.hire-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.hire-sub {
    color: var(--muted);
    font-size: 0.95rem;
}
