:root {
    color-scheme: light;
    --bg: #f7f8f5;
    --text: #16201d;
    --muted: #66706b;
    --line: #d8ded8;
    --accent: #0f766e;
    --accent-soft: #e5f2ef;
    --planned: #eef0ec;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--bg);
    color: var(--text);
}

.shell {
    width: min(920px, calc(100% - 32px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 72px 0 48px;
}

.masthead {
    max-width: 640px;
    margin-bottom: 42px;
}

.eyebrow,
.label,
.status {
    margin: 0;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    margin: 10px 0 14px;
    font-size: clamp(2.35rem, 7vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.intro {
    max-width: 38rem;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.6;
}

.directory {
    display: grid;
    gap: 12px;
}

.entry {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    min-height: 116px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
}

.entry--available {
    border-color: color-mix(in srgb, var(--accent), white 58%);
}

.entry--available:hover,
.entry--available:focus-visible {
    outline: 3px solid var(--accent-soft);
    border-color: var(--accent);
}

.entry--planned {
    background: var(--planned);
    color: color-mix(in srgb, var(--text), white 24%);
}

.entry strong {
    display: block;
    margin-top: 6px;
    font-size: 1.45rem;
    letter-spacing: 0;
}

.description {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.5;
}

.status {
    min-width: 78px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    text-align: center;
}

.entry--planned .status {
    background: #ffffff;
    color: var(--muted);
}

@media (max-width: 640px) {
    .shell {
        width: min(100% - 24px, 920px);
        padding-top: 44px;
    }

    .masthead {
        margin-bottom: 28px;
    }

    .entry {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 20px;
    }

    .status {
        width: fit-content;
    }
}
