/* Reset minimal defaults so layout is predictable across browsers */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* Body fills viewport and centers content vertically and horizontally */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Main column is constrained-width and centered text */
main {
    max-width: 640px;
    text-align: center;
}

/* Logo sits above the wordmark, scales down responsively on small screens */
.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

/* Business name in large bold weight with tight letter spacing */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Tagline is secondary - lighter weight and slightly muted color */
.tagline {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Contact email is the only call-to-action; orange matches the logo accent */
.contact a {
    color: #e87722;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
}
.contact a:hover { text-decoration: underline; }

/* Footer city tag is small and subtle */
footer {
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #888;
}
