:root{
    --signal:#E30018;
    --signal-hover:#BC0317;
    --ink:#000000;
    --bg:#ffffff;
    --soft:#f5f5f5;
    --line:#e6e6e6;
    --radius:22px;
    --shadow:0 18px 60px rgba(0,0,0,.08);
}

body{
    font-family:'DM Sans',sans-serif;
    color:var(--ink);
    background:#fff;
}

.topbar{
    border-bottom:1px solid var(--line);
    background:#fff;
    position:sticky;
    top:0;
    z-index:30;
}

.eyebrow,.section-kicker{
    font-size:.85rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--signal);
}

.brand-title{
    font-size:1.5rem;
    font-weight:800;
    line-height:1.1;
}

.hero-section{
    padding:72px 0 48px;
}

.hero-title{
    font-size:clamp(2rem,4vw,3.4rem);
    line-height:1.05;
    font-weight:800;
    margin:0 0 1.25rem;
}

.hero-copy{
    font-size:1.02rem;
    line-height:1.8;
    max-width:780px;
    margin-top:50px;
}

.hero-card,
.card-soft,
.footer-card,
.admin-shell{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.hero-card,
.card-soft,
.footer-card{
    padding:28px;
}

.admin-shell{
    padding:32px;
}

.feature-list{
    padding-left:1.2rem;
    margin:0;
}

.feature-list li{
    margin-bottom:.7rem;
}

.section-space{
    padding:56px 0;
}

.section-alt{
    background:#fafafa;
}

.btn{
    border-radius:999px;
    font-weight:700;
    padding:.85rem 1.2rem;
}

.btn-signal{
    background:var(--signal);
    color:#fff;
    border:none;
}

.btn-signal:hover,
.btn-signal:focus{
    background:var(--signal-hover);
    color:#fff;
}

.btn-default{
    background:#fff;
    color:var(--ink);
    border:1px solid #d7d7d7;
}

.btn-default:hover,
.btn-default:focus{
    background:#f3f3f3;
    color:var(--ink);
}

.badge-custom,
.info-chip{
    display:inline-flex;
    align-items:center;
    padding:.55rem .85rem;
    border-radius:999px;
    background:#fff0f2;
    color:var(--signal);
    font-weight:700;
    border:1px solid rgba(227,0,24,.15);
}

.menu-fallback-card{
    background:var(--signal);
    border-radius:var(--radius);
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    text-align:center;
}

.menu-fallback-card .inner{
    max-width:340px;
}

.menu-fallback-card h3,
.menu-fallback-card p{
    color:#fff;
}

.menu-fallback-card .btn{
    background:#fff;
    color:var(--signal);
    border:none;
}

.menu-fallback-card .btn:hover{
    background:#f2f2f2;
    color:var(--signal-hover);
}

.accordion-block .uk-accordion-title{
    font-weight:700;
    color:#000;
}

.accordion-block .uk-accordion-title:hover{
    color:var(--signal);
}

.archive-meta{
    color:var(--signal);
    font-weight:700;
}

.gallery-card{
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--line);
    aspect-ratio:1/1;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .25s ease;
}

.gallery-card:hover img{
    transform:scale(1.04);
}

.admin-note{
    font-size:.95rem;
    color:#666;
}

.admin-list{
    display:grid;
    gap:12px;
}

.admin-item{
    border:1px solid var(--line);
    border-radius:16px;
    padding:14px 16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.admin-grid{
    display:grid;
    gap:14px;
    grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
}

.admin-thumb-card{
    border:1px solid var(--line);
    border-radius:18px;
    padding:10px;
    background:#fff;
}

.admin-thumb-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
    border-radius:12px;
}

.dropzone{
    position:relative;
    border:2px dashed rgba(227,0,24,.35);
    background:#fff8f8;
    border-radius:20px;
    padding:24px;
    text-align:center;
    transition:.2s ease;
    cursor:pointer;
}

.dropzone.dragover{
    background:#ffe9ec;
    border-color:var(--signal);
    transform:translateY(-1px);
}

.dropzone input[type="file"]{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    cursor:pointer;
}

.dropzone-title{
    font-size:1.05rem;
    font-weight:800;
    margin-bottom:.35rem;
}

.dropzone-sub{
    color:#666;
    font-size:.95rem;
    margin-bottom:0;
}

.file-meta{
    margin-top:12px;
    font-size:.95rem;
    color:#444;
    min-height:24px;
}

.upload-progress-wrap{
    display:none;
    margin-top:14px;
}

.upload-progress-wrap.active{
    display:block;
}

.progress{
    height:12px;
    border-radius:999px;
    background:#f0f0f0;
    overflow:hidden;
}

.progress-bar{
    background:var(--signal);
    font-size:.75rem;
    font-weight:700;
}

.upload-status{
    margin-top:10px;
    font-size:.95rem;
    font-weight:700;
}

.site-footer{
    padding:0 0 56px;
}

.footer-card{
	margin-top:30px;
    background:#111 !important;
    color: #fff;
}

.footer-card h3{
    color: #fff !important;
}

.footer-card a{
    color:var(--signal);
    text-decoration:none;
}

.footer-card a:hover{
    color:var(--signal-hover);
}

.admin-header{
    margin-bottom:26px;
}

.admin-actions-top{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

@media (max-width: 991.98px){
    .hero-section{
        padding:42px 0 28px;
    }
    .section-space{
        padding:40px 0;
    }
    .hero-card,
    .card-soft,
    .footer-card,
    .admin-shell{
        padding:20px;
    }
    .menu-fallback-card{
        min-height:300px;
    }
    .topbar .btn{
	    border-radius:999px;
	    font-weight:300;
	    font-size: 12px;
	    padding:4px 6px 4px 6px;
	}
	.container {
		margin: auto 20px auto 20px;
		width:calc(100% - 20px);
	}
}

@media (max-width: 767.98px) {
    .topbar .container {
        justify-content: center !important;
        text-align: center;
    }

    .topbar .container > div:first-child {
        width: 100%;
        text-align: center;
    }

    .topbar .container > div:last-child {
        width: 100%;
        justify-content: center !important;
    }

    .brand-title,
    .eyebrow {
        text-align: center;
    }
}