:root {
    --background: #f4f6f8;
    --surface: #ffffff;
    --text: #18202b;
    --muted: #637080;
    --primary: #174c78;
    --accent: #d18a2e;
    --border: #dce2e8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(23, 76, 120, 0.14),
            transparent 40%
        ),
        var(--background);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.parking-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
}

.parking-card {
    width: min(100%, 1200px);
    padding: clamp(35px, 8vw, 80px);
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: 0 25px 70px rgba(16, 24, 32, 0.12);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h1 {
    max-width: 650px;
    margin: 0 0 24px;
    font-size: clamp(2.8rem, 8vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.description {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.name {
    margin: 55px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}