/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Images & Branding */
.brand-logo {
    max-width: 320px; /* Increased to ~50% of the text width */
    height: auto;
    margin-bottom: 50px; /* Slightly tightened the gap below the logo */
    display: block;
}

/* Typography Scale */
.hero h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
}

h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 16px;
    margin-top: 40px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 8px;
}

/* Sections */
section {
    margin-bottom: 40px;
}

.bio p {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.services ul {
    list-style: none;
}

.services li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 1.05rem;
}

.services li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #888;
}

/* Links */
a {
    color: #111;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: #555;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eaeaea;
}

.legal {
    font-size: 0.85rem;
    color: #888;
}

/* Logo Strip (For your rolling thunder launch later) */
.logo-strip {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 20px;
}

.logo-strip img {
    height: 32px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.logo-strip a:hover img {
    opacity: 1;
}

.contact-link {
    font-size: 1rem;
    margin-bottom: 12px;
}

.contact-link a {
    font-weight: 500;
}
