/* murxs.ch — single-page, mobile-first stylesheet
   Accent: #f28c00 (orange, sampled from murxs.ch.png glow)
   One breakpoint: min-width 48em
*/

/* ---- Reset & base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
    padding: 1.5rem 1rem;
}

/* ---- Layout ---- */
.hero,
main,
.site-footer {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Hero / wordmark ---- */
.hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-style: italic;
    font-weight: 700;
    color: #f28c00;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero blockquote {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-style: italic;
    color: #444;
    border: none;
}

.hero blockquote p {
    margin-bottom: 0.5rem;
}

.hero blockquote footer {
    font-size: 0.9em;
    color: #666;
    font-style: normal;
}

/* ---- Sections ---- */
section {
    margin-bottom: 2rem;
}

section h2 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111;
}

/* ---- About ---- */
.about p {
    font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
    line-height: 1.55;
    color: #333;
}

/* ---- Contact & public files ---- */
.contact p,
.files p {
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.files p.files-note {
    display: block;
    min-height: 0;
    color: #555;
}

/* ---- Links ---- */
a {
    color: #f28c00;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s ease;
}

a:hover,
a:focus {
    border-bottom: 1px solid #f28c00;
}

/* ---- Footer ---- */
.site-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.875rem;
    color: #666;
}

/* ---- Desktop breakpoint ---- */
@media (min-width: 48em) {
    body {
        padding: 3rem 1.5rem;
    }

    .hero {
        margin-bottom: 3.5rem;
    }

    section {
        margin-bottom: 2.5rem;
    }

    .site-footer {
        margin-top: 4rem;
    }
}
