:root {
    --mzk-turquoise: #00bdd7;
    --mzk-turquoise-dark: #009bb0;
    --mzk-gray: #504858;
    --mzk-gray-light: #dad9db;
    --mzk-blue: #4b96cd;
    --mzk-pink: #e64664;
    --white: #ffffff;
    --bg-muted: #f7f8f9;
    --shadow: 0 8px 24px rgba(80, 72, 88, 0.08);
    --radius: 12px;
    --font: "Segoe UI", Arial, sans-serif;
    --header-offset: 6rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--mzk-gray);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--mzk-turquoise-dark);
}

a:hover {
    color: var(--mzk-blue);
}

.container {
    width: min(1100px, calc(100% - 2rem));
    margin-inline: auto;
}

.narrow {
    width: min(760px, calc(100% - 2rem));
}

.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--mzk-turquoise);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(80, 72, 88, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand-label {
    margin: 0 0 0.15rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mzk-turquoise-dark);
    font-weight: 600;
}

.brand-link {
    text-decoration: none;
    color: inherit;
}

.brand-link h1 {
    text-decoration: none;
}

.brand-link:hover,
.brand-link:hover h1 {
    text-decoration: none;
}

.brand-link:hover h1 {
    color: var(--mzk-turquoise-dark);
}

.brand h1 {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.2;
    color: var(--mzk-gray);
    transition: color 0.2s;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.site-nav a:hover {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.site-nav__cta {
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    background: var(--mzk-turquoise);
    color: var(--white) !important;
    transition: background 0.2s;
}

.site-nav__cta:hover {
    background: var(--mzk-turquoise-dark);
    color: var(--white) !important;
}

.site-nav a[aria-current="page"] {
    color: var(--mzk-blue);
}

.site-nav__cta[aria-current="page"] {
    background: var(--mzk-turquoise-dark);
    color: var(--white) !important;
}

.hero {
    background: linear-gradient(135deg, rgba(0, 189, 215, 0.08), rgba(75, 150, 205, 0.06));
    border-bottom: 1px solid var(--mzk-gray-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
    align-items: center;
}

.hero-visual {
    margin: 0;
}

.hero-visual img,
.split-visual img,
.help-photo img {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.hero-visual img {
    aspect-ratio: 4 / 3;
}

.eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mzk-turquoise-dark);
}

.hero h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.15;
    color: var(--mzk-gray);
}

.lead {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.page-header {
    padding: 3rem 0 1rem;
    background: linear-gradient(135deg, rgba(0, 189, 215, 0.08), rgba(75, 150, 205, 0.06));
    border-bottom: 1px solid var(--mzk-gray-light);
}

.page-header-accent {
    background: linear-gradient(180deg, rgba(0, 189, 215, 0.08), rgba(0, 189, 215, 0.03));
}

.page-header h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.15;
    color: var(--mzk-gray);
}

.page-header .lead {
    margin-bottom: 0;
}

.page-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.section .page-cta {
    margin: 2rem 0 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.story-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: calc(var(--radius) + 2px);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(218, 217, 219, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(80, 72, 88, 0.12);
}

.story-card__cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-muted);
}

.story-card__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 189, 215, 0.92), rgba(75, 150, 205, 0.88));
}

.story-card__placeholder--2 {
    background: linear-gradient(135deg, rgba(75, 150, 205, 0.92), rgba(80, 72, 88, 0.82));
}

.story-card__placeholder--3 {
    background: linear-gradient(135deg, rgba(230, 70, 100, 0.9), rgba(0, 155, 176, 0.88));
}

.story-card__placeholder span {
    color: var(--white);
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.3;
    text-wrap: balance;
}

.story-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.15rem 1.15rem;
    flex: 1;
}

.story-details {
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.story-detail {
    display: grid;
    grid-template-columns: 4.25rem 1fr;
    gap: 0.5rem;
    align-items: start;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.4;
}

.story-detail dt {
    margin: 0;
    font-weight: 700;
    color: var(--mzk-turquoise-dark);
}

.story-detail dt::after {
    content: ":";
}

.story-card--2 .story-detail dt {
    color: var(--mzk-blue);
}

.story-card--3 .story-detail dt {
    color: var(--mzk-pink);
}

.story-detail dd {
    margin: 0;
    color: var(--mzk-gray);
}

.story-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 0.85rem;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    background: var(--mzk-turquoise);
    color: var(--white) !important;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.story-card--2 .story-download {
    background: var(--mzk-blue);
}

.story-card--3 .story-download {
    background: var(--mzk-pink);
}

.story-download:hover {
    color: var(--white) !important;
    transform: translateY(-1px);
    filter: brightness(0.95);
}

.form-hint {
    margin: 0.45rem 0 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(80, 72, 88, 0.8);
}

.empty-state {
    padding: 2rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.empty-state p {
    margin: 0 0 1.25rem;
}

.form-help {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.split-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: center;
}

.split-visual {
    margin: 0;
}

.split-visual img {
    aspect-ratio: 3 / 2;
}

.split-content h2 {
    margin-top: 0;
}

.outcome-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
}

.outcome-card {
    padding: 1.25rem 1rem;
    text-align: center;
    background: var(--bg-muted);
    border-radius: var(--radius);
    border-top: 4px solid var(--mzk-turquoise);
}

.outcome-card img {
    display: block;
    margin: 0 auto 0.75rem;
}

.outcome-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--mzk-turquoise-dark);
}

.outcome-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.section-intro {
    max-width: 640px;
    margin-bottom: 2rem;
}

.section-intro h2 {
    margin-bottom: 0.75rem;
}

.section-intro p {
    margin: 0;
}

.section {
    padding: 4rem 0;
}

.section-muted {
    background: var(--bg-muted);
}

.section-accent {
    background: linear-gradient(180deg, rgba(0, 189, 215, 0.05), var(--white));
}

.section h2 {
    margin: 0 0 1.25rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--mzk-gray);
}

.section h3 {
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
    color: var(--mzk-gray);
}

.section h3:first-child {
    margin-top: 0;
}

.section p {
    margin: 0 0 1rem;
}

.info-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--mzk-gray-light);
    border-radius: var(--radius);
    border-top: 4px solid var(--mzk-blue);
}

.info-box h3,
.help-card h3,
.step h3 {
    margin: 0 0 0.75rem;
    color: var(--mzk-turquoise-dark);
}

.info-box p {
    margin: 0;
}

.info-box p {
    margin: 0;
}

.info-box ul,
.help-card ul {
    margin: 0;
    padding-inline: 1.25rem;
    padding-left: 2rem;
    list-style-type: disc;
    list-style-position: outside;
}

.info-box li,
.help-card li {
    padding-left: 0.35rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.step-illust {
    display: block;
    margin: 0 auto 1rem;
}

.step p {
    margin: 0 0 0.75rem;
}

.step a {
    font-weight: 600;
    font-size: 0.95rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.help-grid--two {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 980px;
    margin-inline: auto;
}

.help-card {
    background: var(--white);
    padding: 0 0 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.help-illust {
    margin: 0 0 1.25rem;
    background: var(--bg-muted);
}

.help-illust img {
    display: block;
    width: 100%;
    aspect-ratio: 20 / 9;
    object-fit: cover;
}

.help-photo {
    margin: 0 0 1.25rem;
}

.help-photo img {
    aspect-ratio: 16 / 10;
}

.help-card h3 {
    margin-top: 0;
    padding-inline: 1.25rem;
}

.help-card ul {
    padding-inline: 1.25rem;
    padding-left: 2.75rem;
}

.help-card li + li {
    margin-top: 0.5rem;
}

.note {
    padding: 1rem 1.25rem;
    background: rgba(75, 150, 205, 0.1);
    border-left: 4px solid var(--mzk-blue);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary {
    background: var(--mzk-turquoise);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--mzk-turquoise-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--mzk-turquoise-dark);
    border: 2px solid var(--mzk-turquoise);
}

.btn-secondary:hover {
    background: rgba(0, 189, 215, 0.08);
    color: var(--mzk-turquoise-dark);
    transform: translateY(-1px);
}

.upload-form {
    margin-top: 2rem;
}

.upload-form fieldset {
    border: 1px solid var(--mzk-gray-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 0 0 1.5rem;
    background: var(--white);
}

.upload-form legend {
    padding: 0 0.5rem;
    font-weight: 700;
    color: var(--mzk-gray);
}

.form-row {
    margin-bottom: 1rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="file"],
.form-row textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--mzk-gray-light);
    border-radius: 8px;
    font: inherit;
    color: var(--mzk-gray);
    background: var(--white);
}

.form-row input:focus,
.form-row textarea:focus {
    outline: 2px solid rgba(0, 189, 215, 0.35);
    border-color: var(--mzk-turquoise);
}

.form-row-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-row-checkbox input {
    margin-top: 0.25rem;
}

.form-row-checkbox label {
    margin: 0;
    font-weight: 400;
}

.required {
    color: var(--mzk-pink);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(0, 189, 215, 0.12);
    border: 1px solid rgba(0, 189, 215, 0.35);
    color: var(--mzk-gray);
}

.alert-error {
    background: rgba(230, 70, 100, 0.1);
    border: 1px solid rgba(230, 70, 100, 0.35);
    color: var(--mzk-gray);
}

.site-footer {
    background: var(--mzk-gray);
    color: var(--white);
    padding: 3rem 0 2.5rem;
    border-top: 4px solid var(--mzk-turquoise);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.75rem;
}

.footer-partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.footer-partners-label {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.footer-logos-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: min(100%, 560px);
    margin-inline: auto;
}

.logo-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 1rem 0.875rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.logo-tile:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.logo-tile__img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.logo-tile__img--mzk {
    max-height: 56px;
}

.logo-tile__img--jmk {
    width: min(100%, 300px);
    height: auto;
    max-height: 52px;
}

.footer-text p {
    margin: 0 0 0.35rem;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-top: 0.5rem !important;
}

.admin-body .brand h1 {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

.admin-login {
    max-width: 420px;
    margin: 0 auto;
}

.admin-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-stat {
    padding: 1.25rem;
    text-align: center;
    background: var(--bg-muted);
    border-radius: var(--radius);
    border-top: 4px solid var(--mzk-turquoise);
}

.admin-stat strong {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    color: var(--mzk-gray);
}

.admin-stat span {
    font-size: 0.95rem;
}

.admin-panel + .admin-panel {
    margin-top: 2.5rem;
}

.admin-panel h2 {
    margin-bottom: 1rem;
}

.admin-empty {
    margin: 0;
    padding: 1rem 1.25rem;
    background: var(--bg-muted);
    border-radius: var(--radius);
}

.admin-list {
    display: grid;
    gap: 1rem;
}

.admin-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--mzk-gray-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.admin-item__preview {
    width: 112px;
    flex: 0 0 auto;
}

.admin-item__preview img {
    display: block;
    width: 112px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.admin-item--deleted {
    opacity: 0.88;
    background: #fafafa;
}

.admin-edit-preview {
    margin-bottom: 1rem;
}

.admin-edit-preview img {
    display: block;
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.admin-item h3 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
}

.admin-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    color: var(--mzk-turquoise-dark);
    font-weight: 600;
}

.admin-item-source,
.admin-item-note {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.admin-item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 8.75rem;
    align-self: start;
}

.admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.45rem;
    background: linear-gradient(180deg, #fbfbfc, var(--bg-muted));
    border-radius: 8px;
    border: 1px solid var(--mzk-gray-light);
}

.admin-toolbar--status {
    background: linear-gradient(180deg, rgba(0, 189, 215, 0.05), rgba(0, 189, 215, 0.1));
    border-color: rgba(0, 189, 215, 0.18);
}

.admin-toolbar form {
    margin: 0;
    display: contents;
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.5rem;
    padding: 0.65rem;
    background: var(--bg-muted);
    border: 1px solid var(--mzk-gray-light);
    border-radius: 8px;
}

.admin-body .btn-admin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.85rem;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}

.admin-body .btn-admin:hover {
    transform: translateY(-1px);
}

.admin-body .btn-admin--primary {
    background: var(--mzk-turquoise);
    color: var(--white);
    border-color: var(--mzk-turquoise-dark);
}

.admin-body .btn-admin--primary:hover {
    background: var(--mzk-turquoise-dark);
    color: var(--white);
}

.admin-body .btn-admin--neutral {
    background: var(--white);
    color: var(--mzk-gray);
    border-color: var(--mzk-gray-light);
}

.admin-body .btn-admin--neutral:hover {
    background: #f3f4f5;
    color: var(--mzk-gray);
    border-color: #c8c6ca;
}

.admin-body .btn-admin--warning {
    background: #fff4e8;
    color: #9a5b12;
    border-color: #efc98d;
}

.admin-body .btn-admin--warning:hover {
    background: #ffeacc;
    color: #7a470d;
}

.admin-body .btn-admin--danger {
    background: #fff0f3;
    color: #b12f49;
    border-color: #efb8c4;
}

.admin-body .btn-admin--danger:hover {
    background: #ffe0e7;
    color: #96263c;
}

.btn-danger {
    background: var(--mzk-pink);
    color: var(--white);
    border: none;
}

.btn-danger:hover {
    background: #c73552;
    color: var(--white);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-grid,
    .split-section,
    .steps,
    .help-grid,
    .outcome-cards,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 2.5rem 0;
    }

    .hero-visual {
        order: -1;
    }

    .section {
        padding: 3rem 0;
    }

    .footer-logos-row {
        grid-template-columns: 1fr;
    }

    .admin-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-summary,
    .admin-item {
        grid-template-columns: 1fr;
    }

    .admin-item__preview,
    .admin-item__preview img {
        width: 100%;
        height: auto;
        max-height: 180px;
    }

    .admin-item-actions {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: 0;
        width: 100%;
    }

    .admin-toolbar {
        justify-content: flex-start;
        flex: 1 1 auto;
    }
}
