* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
    background: #f3efe3;
    color: #2b1f16;
    min-height: 100vh;
}

.page-shell {
    max-width: 980px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background: linear-gradient(180deg, #4c1205 0%, #240700 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    border-bottom: 4px solid #7a220a;
    text-align: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: lowercase;
}

.brand-icon {
    font-size: 2rem;
    line-height: 1;
}

.content {
    padding: 48px 24px 40px;
    flex: 1;
}

.maintenance-box {
    background: #fff;
    border: 1px solid #ddd1c1;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 42px 36px;
}

.maintenance-box h1 {
    font-size: 2.1rem;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.maintenance-box p {
    line-height: 1.8;
    color: #413329;
    margin-bottom: 18px;
    font-size: 1rem;
}

.subtitle {
    color: #806b55;
    font-size: 0.98rem;
    margin-bottom: 26px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #5b4a40;
    font-size: 0.95rem;
}

.status {
    font-weight: 700;
    color: #8a2d16;
}

.site-footer {
    padding: 20px 24px;
    font-size: 0.9rem;
    color: #533d2f;
    text-align: center;
}

/* Desktop-focused layout preserved; no mobile menu or search styling is required. */
