:root {
    --ink: #122033;
    --ink-soft: #304157;
    --navy: #11273f;
    --navy-deep: #0b1929;
    --gold: #c7a366;
    --gold-light: #e5d0a6;
    --paper: #fbfaf7;
    --mist: #eef2f4;
    --line: #d7dee3;
    --white: #ffffff;
    --danger: #a7372e;
    --success: #28674a;
    --shadow: 0 18px 50px rgba(10, 25, 42, .12);
    --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

button,
input,
select,
textarea { font: inherit; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
    letter-spacing: -.035em;
    line-height: 1.12;
}

.shell {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 250, 247, .94);
    border-bottom: 1px solid rgba(18, 32, 51, .09);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand,
.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand strong,
.admin-brand strong {
    display: block;
    font-size: .97rem;
    letter-spacing: -.015em;
}

.brand small,
.admin-brand small {
    display: block;
    color: var(--ink-soft);
    font-size: .73rem;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .08em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #455364;
    font-size: .9rem;
    font-weight: 650;
}

.site-nav a:not(.admin-link) {
    transition: color .2s ease;
}

.site-nav a:not(.admin-link):hover { color: var(--navy); }

.admin-link {
    border: 1px solid rgba(18, 39, 63, .22);
    padding: 8px 13px;
    color: var(--navy);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy);
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 5%, rgba(199, 163, 102, .26), transparent 30rem),
        linear-gradient(122deg, var(--navy-deep) 0%, var(--navy) 63%, #1e4264 100%);
}

.hero-photo {
    background-color: var(--navy-deep);
    background-image:
        linear-gradient(90deg, rgba(8, 22, 37, .96) 0%, rgba(10, 28, 46, .84) 39%, rgba(10, 29, 47, .38) 74%, rgba(10, 28, 45, .44) 100%),
        url("../images/hero-vjestacenje-nezgoda.webp");
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .32;
    background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(295px, .8fr);
    align-items: center;
    gap: clamp(40px, 8vw, 130px);
    min-height: 570px;
    padding: 88px 0;
}

.eyebrow {
    margin-bottom: 13px;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow.light { color: var(--gold-light); }

.hero h1 {
    max-width: 730px;
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 5.6vw, 5.2rem);
    font-weight: 680;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 34px;
    color: rgba(255,255,255,.78);
    font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 17px;
    font-size: .88rem;
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(10, 25, 42, .15);
}

.button-light {
    color: var(--navy);
    background: var(--white);
}

.button-primary {
    color: var(--white);
    background: var(--navy);
}

.button-secondary {
    border-color: #bfc9d1;
    color: var(--navy);
    background: var(--white);
}

.button-danger {
    color: var(--danger);
    border-color: #e5bdb8;
    background: #fffafa;
}

.text-link {
    font-size: .88rem;
    font-weight: 750;
}

.light-link { color: var(--gold-light); }

.credential-card {
    position: relative;
    padding: 40px 37px 33px;
    border: 1px solid rgba(226, 210, 174, .43);
    color: var(--white);
    background: rgba(7, 20, 34, .31);
    box-shadow: 0 24px 60px rgba(1, 9, 18, .25);
    backdrop-filter: blur(4px);
}

.credential-seal {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin-bottom: 25px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    color: var(--gold-light);
}

.credential-seal span {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    line-height: 1;
}

.credential-seal small {
    font-size: .52rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.credential-label {
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.credential-card h2 {
    margin-bottom: 7px;
    font-size: 1.52rem;
}

.credential-card > p:not(.credential-label) {
    color: rgba(255,255,255,.68);
}

.credential-card dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 28px 0 0;
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.credential-card dt {
    margin-bottom: 4px;
    color: rgba(255,255,255,.55);
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.credential-card dd {
    margin: 0;
    font-size: .82rem;
    font-weight: 650;
}

.section { padding: 105px 0; }

.section-tinted { background: var(--mist); }

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    gap: clamp(44px, 9vw, 150px);
}

.split-grid h2,
.section-heading h2,
.contact-section h2 {
    max-width: 570px;
    margin-bottom: 0;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.body-copy { color: var(--ink-soft); font-size: 1.04rem; }
.body-copy p { margin-bottom: 18px; }

.fact-row {
    display: flex;
    gap: 47px;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.fact-row strong {
    display: block;
    color: var(--navy);
    font-size: 1.14rem;
}

.fact-row span {
    display: block;
    margin-top: 2px;
    color: #718090;
    font-size: .76rem;
}

.methodology-section {
    background: var(--white);
}

.methodology-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr);
    gap: clamp(44px, 8vw, 118px);
    align-items: center;
}

.methodology-photo {
    position: relative;
    min-height: 485px;
    margin: 0;
    overflow: hidden;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.methodology-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 485px;
    object-fit: cover;
}

.methodology-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 19, 32, .81), transparent 54%);
    pointer-events: none;
}

.methodology-photo figcaption {
    position: absolute;
    z-index: 1;
    right: 29px;
    bottom: 26px;
    left: 29px;
    color: var(--white);
}

.methodology-photo figcaption span,
.methodology-photo figcaption strong {
    display: block;
}

.methodology-photo figcaption span {
    margin-bottom: 7px;
    color: var(--gold-light);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.methodology-photo figcaption strong {
    max-width: 290px;
    font-size: 1.08rem;
    line-height: 1.35;
}

.methodology-copy h2 {
    max-width: 510px;
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.methodology-copy > p:not(.eyebrow) {
    max-width: 540px;
    margin-bottom: 31px;
    color: var(--ink-soft);
}

.method-list {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.method-list li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.method-list > li > span {
    color: var(--gold);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
}

.method-list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--navy);
    font-size: .92rem;
}

.method-list p {
    margin: 0;
    color: #687687;
    font-size: .84rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 43px;
}

.section-heading > p {
    max-width: 350px;
    margin: 0;
    color: #607082;
    font-size: .94rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.expertise-card {
    min-height: 254px;
    padding: 30px;
    border: 1px solid #d9e0e5;
    background: var(--white);
}

.card-index {
    display: block;
    margin-bottom: 52px;
    color: var(--gold);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.expertise-card h3 {
    margin-bottom: 12px;
    font-size: 1.28rem;
}

.expertise-card p {
    margin: 0;
    color: #607082;
    font-size: .9rem;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: flex;
    gap: 17px;
    padding-top: 21px;
    border-top: 2px solid var(--gold);
}

.process-list > li > span {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 1.5rem;
}

.process-list h3 { margin-bottom: 9px; font-size: 1.12rem; }
.process-list p { margin: 0; color: #687687; font-size: .9rem; }

.analysis-band {
    color: var(--white);
    background: var(--navy-deep);
}

.analysis-grid {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
    min-height: 515px;
}

.analysis-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 74px clamp(35px, 6vw, 96px) 74px 0;
}

.analysis-copy h2 {
    max-width: 480px;
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.5vw, 3.18rem);
}

.analysis-copy > p:not(.eyebrow) {
    max-width: 490px;
    margin-bottom: 29px;
    color: rgba(255,255,255,.72);
}

.analysis-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.analysis-points span {
    padding: 7px 10px;
    border: 1px solid rgba(229, 208, 166, .35);
    color: var(--gold-light);
    font-size: .73rem;
    font-weight: 700;
}

.analysis-photo {
    position: relative;
    min-height: 515px;
    margin: 0;
    overflow: hidden;
}

.analysis-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 515px;
    object-fit: cover;
}

.contact-section {
    color: var(--white);
    background: var(--navy-deep);
    padding: 86px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: clamp(40px, 8vw, 130px);
    align-items: center;
}

.contact-section > .shell > div > p:not(.eyebrow) {
    max-width: 570px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.69);
}

.contact-card {
    padding: 30px;
    border-left: 2px solid var(--gold);
    background: rgba(255,255,255,.05);
}

.contact-card strong,
.contact-card > span { display: block; }
.contact-card strong { font-size: 1.05rem; }
.contact-card > span { margin-top: 3px; color: var(--gold-light); font-size: .83rem; }
.contact-list { margin: 24px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.76); }
.contact-list li { margin: 7px 0; }
.contact-note { margin: 24px 0 0; color: rgba(255,255,255,.66); font-size: .9rem; }

.site-footer {
    padding: 25px 0;
    color: #718090;
    background: #091522;
    font-size: .76rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-inner strong { display: block; color: #d5dde4; }
.footer-inner span { display: block; margin-top: 3px; }

/* Administracija */
.admin-page { min-height: 100vh; background: #f3f6f8; }

.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 255px minmax(0, 1fr); }

.admin-sidebar {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 26px 16px 20px;
    color: #d8e0e7;
    background: var(--navy-deep);
}

.admin-brand { padding: 0 10px 28px; color: var(--white); }
.admin-brand .brand-mark { border-color: var(--gold); color: var(--gold-light); }
.admin-brand small { color: #aebbc7; }

.admin-nav { display: grid; gap: 4px; }

.admin-nav a {
    padding: 11px 12px;
    border-radius: 7px;
    color: #c1cbd4;
    font-size: .88rem;
    font-weight: 600;
}

.admin-nav a:hover,
.admin-nav a.is-active { color: var(--white); background: rgba(255,255,255,.1); }

.admin-user {
    margin-top: auto;
    padding: 18px 11px 4px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.admin-user span { display: block; color: #8fa0ae; font-size: .7rem; }
.admin-user strong { display: block; margin: 4px 0 12px; color: var(--white); font-size: .87rem; }
.admin-user button { padding: 0; border: 0; color: var(--gold-light); background: transparent; font-size: .79rem; cursor: pointer; }

.admin-content { min-width: 0; padding: 36px clamp(22px, 4vw, 58px) 48px; }

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 31px;
}

.admin-topbar h1 { margin: 0; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.25rem); }
.admin-topbar .eyebrow { margin-bottom: 4px; font-size: .64rem; }

.flash {
    margin-bottom: 21px;
    padding: 13px 15px;
    border-left: 4px solid var(--success);
    color: #245842;
    background: #ebf6ef;
    font-size: .9rem;
}

.flash.error { border-color: var(--danger); color: #873029; background: #fff0ef; }

.metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 22px;
}

.metric-card {
    padding: 20px;
    border: 1px solid #dde4e9;
    border-radius: 10px;
    background: var(--white);
}

.metric-card span { display: block; color: #687687; font-size: .76rem; }
.metric-card strong { display: block; margin-top: 7px; color: var(--navy); font-size: 1.4rem; letter-spacing: -.03em; }

.panel {
    border: 1px solid #dce4e9;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 6px 16px rgba(15, 36, 57, .04);
}

.filter-panel { margin-bottom: 18px; padding: 18px; }

.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(135px, 1fr));
    gap: 11px;
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 13px;
}

.form-control,
.filter-grid input,
.filter-grid select,
.entry-form input,
.entry-form select,
.entry-form textarea {
    width: 100%;
    min-height: 40px;
    border: 1px solid #cbd5dc;
    border-radius: 6px;
    padding: 8px 10px;
    color: var(--ink);
    background: var(--white);
    outline: none;
}

.filter-grid input { min-height: 37px; padding: 6px 8px; font-size: .78rem; }

.form-control:focus,
.filter-grid input:focus,
.entry-form input:focus,
.entry-form select:focus,
.entry-form textarea:focus { border-color: #6483a0; box-shadow: 0 0 0 3px rgba(85, 127, 162, .12); }

.table-panel { overflow-x: auto; }

.journal-table {
    width: 100%;
    min-width: 1420px;
    border-collapse: collapse;
    font-size: .81rem;
}

.journal-table th,
.journal-table td {
    padding: 11px 10px;
    border-bottom: 1px solid #e6ebee;
    vertical-align: top;
    text-align: left;
}

.journal-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: #4f6072;
    background: #f8fafb;
    font-size: .67rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.journal-table tbody tr:hover { background: #fbfcfd; }
.journal-table .number-cell { font-weight: 760; color: var(--navy); }
.journal-table .money-cell { white-space: nowrap; text-align: right; }
.journal-table .muted { color: #718090; }
.journal-table .actions-cell { white-space: nowrap; }
.journal-table .actions-cell a { color: #1b537e; font-weight: 700; }

.inline-delete {
    display: inline;
    margin-left: 8px;
}

.inline-delete button {
    padding: 0;
    border: 0;
    color: var(--danger);
    background: transparent;
    cursor: pointer;
    font-size: .81rem;
    font-weight: 700;
}

.empty-state { padding: 55px 24px; color: #69798a; text-align: center; }
.table-note { margin: 13px 0 0; color: #718090; font-size: .78rem; }

.entry-panel { max-width: 970px; padding: clamp(18px, 3vw, 32px); }

.entry-intro { margin-bottom: 24px; color: #627285; font-size: .91rem; }

.entry-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }

.entry-form .field-full { grid-column: 1 / -1; }

.entry-form label {
    display: block;
    margin-bottom: 6px;
    color: #415266;
    font-size: .79rem;
    font-weight: 760;
}

.entry-form label span { color: var(--danger); }
.entry-form textarea { min-height: 95px; resize: vertical; }

.entry-form .form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    grid-column: 1 / -1;
    padding-top: 5px;
}

.login-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 26px;
    background: radial-gradient(circle at top right, #355b7b, transparent 38rem), var(--navy-deep);
}

.login-card {
    width: min(100%, 430px);
    padding: 38px;
    border: 1px solid rgba(255,255,255,.16);
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.login-card .brand-mark { margin-bottom: 22px; }
.login-card h1 { margin-bottom: 9px; color: var(--navy); font-size: 1.9rem; }
.login-card > p { margin-bottom: 28px; color: #657486; font-size: .91rem; }
.login-card .field { margin-bottom: 16px; }
.login-card label { display: block; margin-bottom: 6px; color: #415266; font-size: .8rem; font-weight: 750; }
.login-card .button { width: 100%; margin-top: 7px; }
.login-help { margin: 20px 0 0; color: #718090; font-size: .77rem; text-align: center; }
.login-help a { color: #275b84; font-weight: 700; }

.setup-note { margin: 24px 0 0; color: #6c7b8b; font-size: .78rem; }

.print-page { color: #111; background: #fff; font-family: Arial, sans-serif; }
.print-toolbar { display: flex; justify-content: space-between; gap: 12px; width: min(1260px, calc(100% - 40px)); margin: 18px auto; }
.print-wrapper { width: min(1260px, calc(100% - 40px)); margin: 0 auto 32px; }
.print-heading { margin-bottom: 22px; }
.print-heading h1 { margin: 0 0 5px; font-size: 1.4rem; letter-spacing: 0; }
.print-heading p { margin: 0; color: #555; font-size: .85rem; }
.print-table { width: 100%; border-collapse: collapse; font-size: .7rem; }
.print-table th, .print-table td { padding: 6px; border: 1px solid #9da6ad; text-align: left; vertical-align: top; }
.print-table th { background: #edf0f2; font-size: .65rem; text-transform: uppercase; }

@media (max-width: 880px) {
    .hero-grid,
    .split-grid,
    .contact-grid,
    .methodology-grid,
    .analysis-grid { grid-template-columns: 1fr; }
    .hero-grid { min-height: auto; }
    .credential-card { max-width: 500px; }
    .methodology-copy { max-width: 640px; }
    .analysis-copy { padding: 70px 0 48px; }
    .analysis-photo,
    .analysis-photo img { min-height: 390px; }
    .section-heading { align-items: start; flex-direction: column; gap: 18px; }
    .expertise-grid,
    .process-list { grid-template-columns: 1fr; }
    .process-list { gap: 19px; }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { min-height: auto; padding: 16px; }
    .admin-brand { padding-bottom: 16px; }
    .admin-nav { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; overflow-x: auto; }
    .admin-nav a { min-width: 125px; text-align: center; }
    .admin-user { display: none; }
    .admin-content { padding-top: 26px; }
    .filter-grid { grid-template-columns: repeat(3, minmax(130px, 1fr)); }
}

@media (max-width: 640px) {
    .shell { width: min(100% - 32px, 1160px); }
    .nav-wrap { min-height: 71px; }
    .menu-toggle { display: block; }
    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 8px 16px 16px;
        border-bottom: 1px solid var(--line);
        background: var(--paper);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 12px 4px; }
    .site-nav .admin-link { margin-top: 6px; padding: 10px 12px; text-align: center; }
    .hero-grid { padding: 67px 0; }
    .hero-photo { background-position: 63% center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
    .credential-card { padding: 29px 24px; }
    .section { padding: 70px 0; }
    .methodology-photo,
    .methodology-photo img { min-height: 395px; }
    .methodology-photo figcaption { right: 22px; bottom: 21px; left: 22px; }
    .analysis-copy { padding: 62px 0 39px; }
    .analysis-photo,
    .analysis-photo img { min-height: 310px; }
    .fact-row { gap: 22px; flex-direction: column; }
    .expertise-card { min-height: auto; }
    .card-index { margin-bottom: 33px; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
    .metrics { grid-template-columns: 1fr; }
    .admin-topbar { align-items: flex-start; flex-direction: column; }
    .admin-topbar .button { width: 100%; }
    .filter-grid { grid-template-columns: 1fr 1fr; }
    .entry-form { grid-template-columns: 1fr; }
    .entry-form .field-full { grid-column: auto; }
    .login-card { padding: 30px 24px; }
    .print-toolbar { flex-direction: column; }
}

@media print {
    .print-toolbar { display: none; }
    .print-wrapper { width: 100%; margin: 0; }
    .print-table { font-size: 6.5pt; }
}
