/* Wellness Farm: retain the original panel layout with a warmer, botanical palette. */
:root {
    --bg: #0c1511;
    --panel: #14221a;
    --panel-2: #1b2d22;
    --line: rgba(192, 213, 175, .13);
    --line-strong: rgba(192, 213, 175, .28);
    --text: #f4f2e9;
    --muted: #a2b3a5;
    --soft: #d3dfcc;
    --accent: #e3c47d;
    --warm-accent: #bfd1a1;
    --ok: #a9d6ac;
}
body.os-body { font-variant-numeric: tabular-nums; }
.metric-card, .os-panel, .member-card, .trainer-card { background: var(--panel); border-radius: 10px; }
.hero-panel { background: var(--panel); border-radius: 10px; box-shadow: none; }
.day-pill:not(.is-active) { background: var(--panel-2); }
.upcoming-card:not(.upcoming-card--cancelled):not(.upcoming-card--unselected):not(.upcoming-card--trial) {
    background: var(--panel-2);
    border-color: var(--line-strong);
    box-shadow: none;
}
.upcoming-card__meta { background: var(--bg); }
.upcoming-card .trainer-avatar { background: var(--bg); border-color: var(--line-strong); }
.upcoming-card__actions a:not(.is-danger-action),
.upcoming-card__actions button:not(.is-danger-action) { background: var(--panel); }
.upcoming-card__actions a:not(.is-danger-action):hover,
.upcoming-card__actions button:not(.is-danger-action):hover {
    background: #283b29;
    border-color: var(--accent);
}
.status-dot--planned::before { background: var(--accent); }
.training-history-item--planned { border-left-color: var(--accent); }
.daily-report-row--planned {
    border-left-color: var(--accent);
    background: rgba(227, 196, 125, .08);
}
.os-topbar { background: rgba(12, 21, 17, .94); padding-block: 9px; }
.os-brand { align-items: center; }
.os-brand img { width: 68px; height: 66px; }
.hero-panel h1, .page-head h1 { letter-spacing: -.035em; line-height: 1.12; }
.action-btn, .icon-btn { border-radius: 7px; }
.action-btn:active, .icon-btn:active { transform: translateY(1px); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}
.os-mobile-nav { background: rgba(17, 32, 23, .97); border-radius: 12px; overflow: hidden; }
.os-mobile-nav a.is-active { color: var(--accent); background: rgba(227, 196, 125, .09); }
.topbar-icon.is-active { color: var(--accent); }
.login-shell {
    min-height: 100vh;
    min-height: 100dvh;
    background: radial-gradient(ellipse at 50% 12%, #213c29 0, var(--bg) 65%);
    padding: 32px 20px;
}
.login-card {
    width: min(440px, 100%);
    padding: 32px;
    background: var(--panel);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(3, 14, 7, .32);
}
.login-brand { flex-direction: column; align-items: center; gap: 14px; margin-bottom: 30px; }
.login-brand img { width: 180px; height: 172px; object-fit: contain; }
.login-brand p { text-align: center; text-transform: none; font-size: 13px; letter-spacing: .02em; }
.os-form input, .os-form select, .os-form textarea { border-radius: 7px; }
@media (max-width: 480px) {
    .login-card { padding: 26px 22px; }
    .login-brand img { width: 150px; height: 144px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
