/* PÖFF Siseveeb — stiil (inspireeritud poff.ee-st, moodne oranž aktsent) */

:root {
    --accent:       #f97316;
    --accent-dark:  #ea580c;
    --accent-soft:  #fff1e6;
    --black:        #0a0a0a;
    --ink:          #111;
    --ink-2:        #333;
    --muted:        #6b7280;
    --border:       #ececec;
    --border-strong:#d4d4d4;
    --bg:           #fafaf7;
    --surface:      #ffffff;
    --surface-2:    #f6f6f2;
    --radius:       12px;
    --radius-lg:    16px;
    --radius-sm:    8px;
    --shadow-sm:    0 1px 2px rgba(10,10,10,.04);
    --shadow:       0 1px 3px rgba(10,10,10,.04), 0 4px 14px rgba(10,10,10,.04);
    --shadow-lg:    0 6px 24px rgba(10,10,10,.08), 0 2px 6px rgba(10,10,10,.04);
    --font:         'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
}

a { color: var(--accent-dark); text-decoration: none; transition: color .12s; }
a:hover { color: var(--accent); }

h1, h2, h3 { letter-spacing: -.02em; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* ---------------- Header ---------------- */
.site-header {
    background: var(--black);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(6px);
    -webkit-backdrop-filter: saturate(180%) blur(6px);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.site-header .wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 72px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}
.brand:hover { text-decoration: none; color: #fff; }
.brand-logo {
    width: 38px;
    height: 38px;
    display: block;
    flex-shrink: 0;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-mark {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.01em;
    color: #fff;
}
.brand-mark .dot {
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 3px;
    vertical-align: middle;
    transform: translateY(-2px);
}
.brand-sub {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 4px;
}
.main-nav {
    display: flex;
    gap: 2px;
    flex: 1;
    margin-left: 12px;
}
.main-nav a {
    color: #d4d4d4;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: background .15s, color .15s;
}
.main-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.06);
    text-decoration: none;
}
.main-nav a.active {
    color: #fff;
    background: var(--accent);
    font-weight: 600;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.user-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #333;
    border: 2px solid rgba(255,255,255,.12);
}
.user-meta { text-align: right; line-height: 1.2; }
.user-name { font-size: 13px; font-weight: 600; color: #fff; }
.user-links { font-size: 12px; color: #9ca3af; }
.user-links a { color: #9ca3af; }
.user-links a:hover { color: var(--accent); }

/* ---------------- Main ---------------- */
.site-main {
    min-height: calc(100vh - 72px - 60px);
    padding: 48px 0 80px;
}

/* ---------------- Hero ---------------- */
.hero {
    margin-bottom: 40px;
}
.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 12px;
}
.hero h1 .dot {
    color: var(--accent);
}
.hero-sub {
    font-size: 18px;
    color: var(--muted);
    margin: 0;
    max-width: 700px;
    line-height: 1.5;
}

/* ---------------- Page head ---------------- */
.page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.page-head h1 {
    margin: 0 0 6px;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    letter-spacing: -.02em;
}
.page-head p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------------- Cards ---------------- */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}
.card:hover { box-shadow: var(--shadow); }
.card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 22px 28px 14px;
    border-bottom: 1px solid var(--border);
}
.card-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.01em;
}
.card-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-dark);
}
.card-body { padding: 22px 28px; flex: 1; }
.card-body .muted { color: var(--muted); font-size: 14px; }
.card-body code {
    background: var(--surface-2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

/* Dashboard grid */
.dash-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}
.dash-grid .card-news { grid-row: span 2; }
@media (max-width: 900px) {
    .dash-grid { grid-template-columns: 1fr; }
    .dash-grid .card-news { grid-row: auto; }
}

/* ---------------- Buttons ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, border-color .15s, transform .05s, color .15s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 4px 12px rgba(249,115,22,.25);
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; }

.btn-secondary {
    background: #fff;
    color: var(--ink);
    border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--surface-2); }

.btn-google {
    background: #fff;
    color: #3c4043;
    border-color: #dadce0;
    font-weight: 500;
}
.btn-google:hover { background: #f8f9fa; color: #3c4043; }

/* ---------------- Alerts ---------------- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}
.alert-error    { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-success  { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* ---------------- Forms ---------------- */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--ink-2);
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=search],
.form-group input[type=url],
.form-group input[type=file],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    transition: border-color .12s, box-shadow .12s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
.form-group textarea { min-height: 180px; resize: vertical; line-height: 1.5; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ---------------- Login page ---------------- */
.login-page {
    background:
        radial-gradient(circle at 20% 20%, rgba(249,115,22,.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(249,115,22,.10), transparent 40%),
        var(--black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #fff;
}
.login-box {
    background: #fff;
    color: var(--ink);
    max-width: 440px;
    width: 100%;
    padding: 48px 44px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.login-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}
.login-logo-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    display: block;
}
.login-box h1 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.02em;
}
.login-sub {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 28px;
    line-height: 1.5;
}
.login-box .btn { width: 100%; }
.login-foot {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

/* ---------------- Contacts ---------------- */
.contacts-toolbar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.contacts-search {
    flex: 1;
    min-width: 260px;
    padding: 13px 18px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: border-color .12s, box-shadow .12s;
}
.contacts-search:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
.contacts-filter {
    padding: 13px 14px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: #fff;
}
.contacts-count {
    font-size: 13px;
    color: var(--muted);
    margin-left: auto;
    font-weight: 500;
}

/* Tabel */
.contacts-table-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.contacts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.contacts-table thead th {
    background: var(--surface-2);
    text-align: left;
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.contacts-table tbody tr {
    transition: background .12s;
}
.contacts-table tbody tr:hover {
    background: var(--accent-soft);
}
.contacts-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.contacts-table tbody tr:last-child td { border-bottom: 0; }
.contacts-table .c-name {
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}
.contacts-table .c-role {
    color: var(--ink-2);
}
.contacts-table .c-email a,
.contacts-table .c-phone a {
    color: var(--accent-dark);
}
.contacts-table .c-email a:hover,
.contacts-table .c-phone a:hover {
    color: var(--accent);
    text-decoration: underline;
}
.contacts-table .c-dept {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .contacts-table thead { display: none; }
    .contacts-table, .contacts-table tbody, .contacts-table tr, .contacts-table td {
        display: block;
        width: 100%;
    }
    .contacts-table tr {
        padding: 14px 18px;
        border-bottom: 1px solid var(--border);
    }
    .contacts-table td {
        padding: 3px 0;
        border: 0;
    }
    .contacts-table .c-name { font-size: 16px; margin-bottom: 2px; }
    .contacts-table .c-role { color: var(--muted); font-size: 13px; margin-bottom: 6px; }
    .contacts-table .c-email::before { content: "✉ "; color: var(--muted); }
    .contacts-table .c-phone::before { content: "☎ "; color: var(--muted); }
    .contacts-table .c-dept::before  { content: "🏢 "; }
}

/* ---------------- Mini list (dashboard widgets) ---------------- */
.mini-list {
    list-style: none;
    padding: 0; margin: 0;
}
.mini-list li {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 2px 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.mini-list li:last-child { border-bottom: 0; }
.mini-list li:first-child { padding-top: 0; }
.mini-date {
    grid-row: span 2;
    font-weight: 700;
    font-size: 13px;
    color: var(--accent-dark);
    align-self: center;
    background: var(--accent-soft);
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    align-self: start;
    margin-top: 2px;
}
.mini-main { font-weight: 600; font-size: 14px; }
.mini-sub  { font-size: 12px; line-height: 1.4; }

/* ---------------- News preview (dashboard) ---------------- */
.news-preview {
    list-style: none; padding: 0; margin: 0;
}
.news-preview li {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}
.news-preview li.has-image {
    grid-template-columns: 140px 1fr;
}
.news-preview li:first-child { padding-top: 0; }
.news-preview li:last-child { border-bottom: 0; padding-bottom: 0; }
.news-preview .thumb {
    width: 140px; height: 100px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.news-preview .news-date {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}
.news-preview h3 {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}
.news-preview h3 a { color: var(--ink); }
.news-preview h3 a:hover { color: var(--accent-dark); text-decoration: none; }
.news-preview p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

@media (max-width: 560px) {
    .news-preview li.has-image {
        grid-template-columns: 1fr;
    }
    .news-preview .thumb { width: 100%; height: 180px; }
}

/* ---------------- Quick links ---------------- */
.quick-links {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 4px;
}
.quick-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: var(--ink);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: background .15s, border-color .15s;
}
.quick-links li a:hover {
    background: var(--surface-2);
    border-color: var(--border);
    text-decoration: none;
    color: var(--ink);
}

/* ---------------- News list (uudised.php) ---------------- */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.news-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s;
}
.news-item:hover { box-shadow: var(--shadow); }
.news-item .news-cover {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    display: block;
    background: var(--surface-2);
}
.news-item .news-body-wrap { padding: 32px 40px; }
.news-item > .news-body-wrap > header { margin-bottom: 14px; }
.news-item h2 {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
}
.news-meta {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}
.news-meta a { color: var(--muted); }
.news-meta a:hover { color: var(--accent-dark); }
.news-body { font-size: 16px; line-height: 1.65; }
.news-body p { margin: 0 0 14px; }
.news-body p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .news-item .news-body-wrap { padding: 24px 22px; }
    .news-item h2 { font-size: 22px; }
}

/* ---------------- Admin ---------------- */
.admin-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    align-items: flex-start;
}
@media (max-width: 900px) {
    .admin-grid { grid-template-columns: 1fr; }
}
.admin-news-list {
    list-style: none; padding: 0; margin: 0;
}
.admin-news-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.admin-news-list li:last-child { border-bottom: 0; }
.admin-news-list li:first-child { padding-top: 0; }
.admin-actions {
    display: flex; gap: 14px; align-items: center;
    font-size: 13px;
    white-space: nowrap;
}
.admin-actions a { font-weight: 600; }
.link-danger,
.link-primary {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    font-family: inherit;
}
.link-danger  { color: #b91c1c; }
.link-primary { color: var(--accent-dark); }
.link-danger:hover,
.link-primary:hover { text-decoration: underline; }

/* Sektsioonipealkiri (admin) */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.section-head h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.01em;
}
.image-preview {
    margin-top: 8px;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* ---------------- Documents (Eelarvejuhile, Töötajale) ---------------- */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}
.doc-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--ink);
    text-decoration: none;
    transition: border-color .15s, transform .1s, box-shadow .15s;
}
.doc-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--ink);
}
.doc-badge {
    display: inline-block;
    align-self: flex-start;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.doc-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.01em;
}
.doc-open {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-dark);
    margin-top: auto;
}

/* ---------------- Struktuur ---------------- */
.figma-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    margin-bottom: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.figma-frame {
    width: 100%;
    height: min(70vh, 720px);
    border: 0;
    display: block;
    border-radius: 6px;
}
.struct-search {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.struct-search h2 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 800;
}
.struct-results {
    margin-top: 16px;
    max-height: 400px;
    overflow-y: auto;
}
.struct-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.struct-row:last-child { border-bottom: 0; }

/* ---------------- Footer ---------------- */
.site-footer {
    background: var(--black);
    color: #9ca3af;
    font-size: 13px;
    padding: 22px 0;
    margin-top: 80px;
}
.site-footer .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-footer a { color: #9ca3af; }
.site-footer a:hover { color: var(--accent); }

/* ---------------- Highlights (Hetkel oluline) ---------------- */
.highlights {
    margin-bottom: 40px;
}
.highlights-head {
    margin-bottom: 14px;
}
.highlight-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.highlights-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
.highlights-grid.count-2 { grid-template-columns: repeat(2, 1fr); }
.highlights-grid.count-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
    .highlights-grid.count-2,
    .highlights-grid.count-3 { grid-template-columns: 1fr; }
}

.highlight-card {
    position: relative;
    background:
        linear-gradient(135deg, rgba(249,115,22,.08), rgba(249,115,22,.02)),
        var(--surface);
    border: 1px solid rgba(249,115,22,.25);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(249,115,22,.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.highlight-title {
    margin: 0;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--ink);
    line-height: 1.25;
}
.highlight-body {
    margin: 0;
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.55;
}
.highlight-cta {
    display: inline-block;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    padding-top: 6px;
}
.highlight-cta:hover { color: var(--accent); text-decoration: underline; }

/* ---------------- News CTA button + preview link ---------------- */
.news-cta { margin-top: 20px; }
.news-cta .btn {
    font-size: 14px;
    padding: 10px 18px;
}
.news-preview-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-dark);
}
.news-preview-link:hover { color: var(--accent); }

/* ---------------- Form row (2 cols) ---------------- */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 560px) {
    .form-row-2 { grid-template-columns: 1fr; }
}

/* ---------------- Utilities ---------------- */
.muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 32px; }
